But I think it's time to leave Scite out of /Oxygen, (It can go on the WebSite as a separate download) and focus on Oxide, which supports compilation in all modes, drag-and-drop editing and execution. It need syntax highlighting and multi-doc support, and for me to stop using Notepad as my main editor
You are very welcome to continue developing AsciiEdit, if you like. I have learned a lot already from studying your code, since my knowledge of both Windows-API and Scintilla is very limited.
case WM_DROPFILES
=================
'
f = GetDropFiles(wparam)
DragFinish(wparam)
f=rtrim f
...
function GetDropFiles(sys hDropParam) As string
===============================================
string sDropFiles, sFiles
sys i,e
e=DragQueryFile(hDropParam, -1, null, 0)-1
'
for i = 0 To e
le=DragQueryFile(hDropParam, i, null, 1)
sfile=space le
DragQueryFile(hDropParam, i, StrPtr sFile, le+1)
If Ucase(mid(sFile, -4)) = ".LNK"
else
sDropFiles+= sFile + chr(13,10)
end if
next i
return sDropFiles
end function
You will find the source (moved) to ProjectsA/Toolsso i will download again ...