TBURL32 control has no default style
When adding TBURL32 control, it is not visible
Hi Eros,
similarly to UpDown, TBUrl32 control does not appear on the screen unless you specify %WS_VISIBLE Or %WS_CHILD.
So this will make invisibile control:
Control Add TBURL32 hDlg, %vViewport, "ThinBASIC;www.thinbasic.com", 5, 5, 60, 20
And this "correct" one:
Control Add TBURL32 hDlg, %vViewport, "ThinBASIC;www.thinbasic.com", 5, 5, 60, 20, %WS_VISIBLE Or %WS_CHILD
Petr