Charles..
what you think that i must do with this subroutines created with EBasic and build dll from them?
How i can call them from oxygen, i have tried in a scintilla way but not work...
any idea?
ebcode in dll...
DEF runwb as INT
DEF wb as window
SUB BrowserWindow(wb:window,x:int,y:int,w:int,h:int,wcap:string,parent:int,mainwb:pointer)
If w=0 then w=480 : If h=0 then h=640
wcap="Test Browse"
parent =0
OPENWINDOW wb,x,y,w,h,@SIZE|@NOAUTODRAW|@MINBOX|@MAXBOX,parent,wcap,&mainwb
If ATTACHBROWSER(wb,"http://www.google.com") = -1
MESSAGEBOX wb, "Couldn't create browser control","Error"
EndIf
ENDSUB
SUB WaitWB
runwb = 1
WAITUNTIL runwb=0
CLOSEWINDOW wb
End SUB
SUB mainwb
Select @MESSAGE
Case @IDCLOSEWINDOW
run = 0
EndSelect
Return
ENDSUB