Run this code, you can't use scrollbar in the WebViewGadget. Remove the FrameGadget en run this code and you can use scrollbar in the WebviewGadget.
Can you confirm it's a bug ?
Code: Select all
OpenWindow(0, 100, 100, 400, 400, "Hello", #PB_Window_SystemMenu)
FrameGadget(0,15,15,370,200,"Bug with Frame gadget")
WebViewGadget(1, 30, 40, 345, 100) ;TODO Remove this line after test with it
SetGadgetText(1, "file://" + #PB_Compiler_Home + "examples/sources/Data/WebView/webview.html")
Repeat
Event = WaitWindowEvent()
Until Event = #PB_Event_CloseWindow
// Moved From "Bugs - Windows" to "Coding Questions" (Kiffi)