Hello,
I have firstform set to Form1 in my project properties. I have this event assigned in Form1:
Form1.onshow=function(){
NSB.MsgBox("OnShow was fired");
}
Can anyone explain why this event won't fire?
Thanks!
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (1) |
In the Chrome Debugger console, type
Form1.onshow
Does the function display?
George Henne
NS BASIC Corporation
http://www.nsbasic.com
>Hello,
>
>
>
>I have firstform set to Form1 in my project properties. I have this
>event assigned in Form1:
>
>
>
>Form1.onshow=function(){
>
> NSB.MsgBox("OnShow was fired");
>
>
>}
>
>
>Can anyone explain why this event won't fire?
>
>
>
>Thanks!
>
>
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (1) |
I found the problem: I had added a new form, and renumbered the new one as Form1 (and the new one as Form2).