If this is a bug => needs to be fixed
If this is a feature => needs to be in documentation to avoid confusion
Working:
Code: Select all
OpenWindow(0, 100, 100, 700, 500, "Hello", #PB_Window_SystemMenu | #PB_Window_Invisible)
WebViewProxy("http://proxy.mycompany.com", 3128)
WebViewGadget(0, 0, 0, 700, 500)
SetGadgetText(0, "https://www.google.com")
; Show the window once the webview has been fully loaded
HideWindow(0, #False)
Repeat
Event = WaitWindowEvent()
Until Event = #PB_Event_CloseWindowCode: Select all
Procedure setProxy()
WebViewProxy("http://proxy.mycompany.com", 3128)
EndProcedure
OpenWindow(0, 100, 100, 700, 500, "Hello", #PB_Window_SystemMenu | #PB_Window_Invisible)
WebViewGadget(0, 0, 0, 700, 500)
SetGadgetText(0, "https://www.google.com")
; Show the window once the webview has been fully loaded
HideWindow(0, #False)
Repeat
Event = WaitWindowEvent()
Until Event = #PB_Event_CloseWindowTest hint: Add
Code: Select all
127.0.0.1 www.google.com
