@Freak:
Could you please give me the version for PB 3.94? I'm writing a tool which needs it - and PB 4 is not ready yet to be the compiler for that tool.
No programming language is perfect. There is not even a single best language.
There are only languages well suited or perhaps poorly suited for particular purposes. Herbert Mayer
I still have the 3.94 version too is somebody needs it.
I wish people would use some common sense and keep 3.94 versions of their libs, etc around and not just delete them and post 4.0 versions. Especially with PB where each new release breaks existing code, this is even more crucial.
Procedure LoadHTM(FileName$)
FileName$=OpenFileRequester("Select a file","","Html|*.htm,*.html",0)
If OpenFile(0,FileName$)
If WebGadget_Open(#WebGadget, 0)
Repeat
string.s=ReadString(0)
WebGadget_Write(string.s+Chr(10))
Until Eof(0)
WebGadget_Close()
EndIf
EndIf
EndProcedure
It always makes a white webpage, even the code is there!
I get a "Structure not found: IID" when I try to use the include above with PB 3.94. Flype (anyone), are you able to use the include file that is linked above in 3.94?
Also, thanks for including the 'WebGadgetJS.pb' file with the 'WebGadgetExtras.pb' file. I hope to use both of them.
No programming language is perfect. There is not even a single best language.
There are only languages well suited or perhaps poorly suited for particular purposes. Herbert Mayer
I'm still getting the same error. I do not see a structure for IID, in fact, WebGadgetsExtras.pb does not look like it has been altered at all. Can you confirm the archive listed has the added structure?