HtmlView and IncBin
BlitzMax Forums/BlitzMax Programming/HtmlView and IncBin
| ||
| How i can include a side with IncBin in to HtmlView? I cannot set an absolute path?
Strict
Local window:TGadget
Local htmlview:TGadget
window=CreateWindow("My Window",30,20,600,440,,15|WINDOW_ACCEPTFILES)
htmlview=CreateHTMLView(0,0,ClientWidth(window),ClientHeight(window),window)
SetGadgetLayout htmlview,1,1,1,1
Incbin "index.html"
HtmlViewGo htmlview,"incbin::index.html"
While WaitEvent()
Select EventID()
Case EVENT_WINDOWCLOSE
End
End Select
Wend
|