Search found 15 matches

by paco
Tuesday 5th September 2023 8:35pm
Forum: Web
Topic: WebView / NewView
Replies: 2
Views: 10155

Re: WebView / NewView

Sorry, I should have said that it's about the gb.qt5.webview, there the event is called "NewView"
by paco
Monday 4th September 2023 12:26pm
Forum: Web
Topic: WebView / NewView
Replies: 2
Views: 10155

WebView / NewView

Hi,

how can I handle a NewView-event? I tried to attach the NewView-property to a new WebView, but NewView is always NULL ...

Code: Select all

Public Sub wbv_NewView()
Debug IsNull(wbv.NewView) ' TRUE!
End
Thanks!
by paco
Tuesday 20th June 2023 7:08pm
Forum: Beginners
Topic: UnHtml$()
Replies: 4
Views: 1249

Re: UnHtml$()

Thanks! FromHTML() is not documented under String-Functions in https://gambas.sourceforge.net/en/main.html#
by paco
Wednesday 14th June 2023 8:06pm
Forum: Beginners
Topic: UnHtml$()
Replies: 4
Views: 1249

UnHtml$()

Hi, is there a reverse function to the Html$()-function? Thanks!
by paco
Sunday 14th May 2023 7:29pm
Forum: Beginners
Topic: FormInForm and Eventhandling
Replies: 1
Views: 859

FormInForm and Eventhandling

Hi, I'd like to get userdefined events from an embedded form in its parent form like this: ' Form1 (parent) Public Sub Form_Open() Form2.Load(Me) End Public Sub Form2_AnyEvent(sData As String) Debug sData End ' Form2 (embedded) Event AnyEvent(Data As String) Public Sub _new() Dim bResult As Boolean ...
by paco
Friday 14th April 2023 4:46pm
Forum: The Gambas IDE
Topic: Search & Replace disabled
Replies: 1
Views: 3341

Search & Replace disabled

Hi, using Gambas 3.18.1, when I open the Search-&-Replace-box (Ctrl-F), both textboxes are disabled, I can't enter some text to search or replace (editing the code is generally possible). What's wrong? Tanks!
by paco
Sunday 10th July 2022 10:33pm
Forum: Beginners
Topic: start method in class
Replies: 17
Views: 4082

Re: start method in class

Ok that works. But it's nothing else than an Event-Handler in a module - very confusing.
My simple starting question was, how to use a class as starting-class - Gambas offers this option in it's project-tree. Is there a way?
by paco
Sunday 10th July 2022 10:11pm
Forum: Beginners
Topic: start method in class
Replies: 17
Views: 4082

Re: start method in class

yes vuott, but I think it's the interpreter that fires the Application_Error in the starting class
by paco
Sunday 10th July 2022 8:27pm
Forum: Beginners
Topic: start method in class
Replies: 17
Views: 4082

Re: start method in class

neither _init() nor _new()
by paco
Sunday 10th July 2022 7:38pm
Forum: Beginners
Topic: start method in class
Replies: 17
Views: 4082

Re: start method in class

Must be a class to use the Application_Error event