Re: [nsbasic-ce] Re: Grid click

2009-07-29 Thread George Henne
2_Form", 0, 0, Output.Width, Output.Height >> > Form2_Form.Visible = False >> > Form2_Form.BackColor = 12632256 >> > AddObject "PictureBox", "Form2", 0, 0, 0, 0, Form2_Form >> > Form2.BorderStyle = 0 >> >

[nsbasic-ce] Re: Grid click

2009-07-28 Thread EMERSON VIER
Then > > Execute("On Error Resume Next:"&theSub) 'attempt to execute it > > Else > > On Error Resume Next > > Set s = GetRef(theSub) > > If err.Number <> 0 Then Exit Sub 'it does not exist > > On

Re: [nsbasic-ce] Re: Grid click

2009-07-28 Thread George Henne
>--- In nsbasic...@yahoogroups.com, "Bob Katayama" wrote: >> >> Save the nsb file as a txt file and you can see the generated code once you >> open the txt file in a text reader. >> >> >> >> Bob >> >> >> >> From: nsba

[nsbasic-ce] Re: Grid click

2009-07-27 Thread EMERSON VIER
= GetRef(theSub) If err.Number <> 0 Then Exit Sub 'it does not exist On Error GoTo 0 Execute (theSub) 'execute it End If End Sub '*** End Generated Code *** --- In nsbasic...@yahoogroups.com, "Bob Katayama" wrote: > > Save the nsb file

RE: [nsbasic-ce] Re: Grid click

2009-07-26 Thread Bob Katayama
: [nsbasic-ce] Re: Grid click Sorry but I do not understand your reply EMERSON VIER --- In nsbasic...@yahoogroups.com <mailto:nsbasic-ce%40yahoogroups.com> , George Henne wrote: > > Have a look to how the generated code does this. Create a form with a > grid on it, save it as

[nsbasic-ce] Re: Grid click

2009-07-26 Thread EMERSON VIER
On Jul 19, 2009, at 2:06 PM, EMERSON VIER > wrote: > > > > > > > The problem, is grid_click only work on default form > > Emerson Vier > > > > From: rmrsoft > > Sent: domingo, 19 de julho de 2009 09:58 > > To: nsbasic...@yahoogroups.com >

Re: [nsbasic-ce] Re: Grid click

2009-07-19 Thread George Henne
> From: rmrsoft > Sent: domingo, 19 de julho de 2009 09:58 > To: nsbasic...@yahoogroups.com > Subject: [nsbasic-ce] Re: Grid click > > I don't have much experience of multiple forms, but if you want > multiple grids I find it easier to put them both on the same Form > a

RE: [nsbasic-ce] Re: Grid click

2009-07-19 Thread EMERSON VIER
The problem, is grid_click only work on default form Emerson Vier -Original Message- From: rmrsoft Sent: domingo, 19 de julho de 2009 09:58 To: nsbasic...@yahoogroups.com Subject: [nsbasic-ce] Re: Grid click I don't have much experience of multiple forms, but if you want mul

RE: [nsbasic-ce] Re: Grid click

2009-07-19 Thread EMERSON VIER
The problem, is grid_click only work on default form Emerson Vier -Original Message- From: rmrsoft Sent: domingo, 19 de julho de 2009 09:58 To: nsbasic...@yahoogroups.com Subject: [nsbasic-ce] Re: Grid click I don't have much experience of multiple forms, but if you want mul

[nsbasic-ce] Re: Grid click

2009-07-19 Thread rmrsoft
I don't have much experience of multiple forms, but if you want multiple grids I find it easier to put them both on the same Form and then use the MOVE command to decide which one is 'live' So you get: AddObject "grid","grid",9000,0,240,150 AddObject "grid","grid1",9000,0,240,150 Then to use

[nsbasic-ce] Re: Grid click

2009-07-18 Thread EMERSON VIER
I use the "AddObject" Sub Form1_Load() On Error resume next AddObject "grid","grid",0,0,240,150 If err Then MsgBox "Grid control not installed. Please check the ReadMe file's section on ""Install Device Components"" for more information.",,"Grid" Bye End If On Error Goto 0 grid.col

Re: [nsbasic-ce] Re: Grid click

2009-07-18 Thread George Henne
How are you creating the grid? Are you using AddObject in your code, or is it being created as part of your form? >I try again and events "click" only work on Default Form, if I try this >on other Form not work, I not get any error messages > >EMERSON VIER > >--- In nsbasic...@yahoogroups.com, "Ge

[nsbasic-ce] Re: Grid click

2009-07-14 Thread EMERSON VIER
George, You have news about this? Regards, Emerson Vier --- In nsbasic...@yahoogroups.com, "EMERSON VIER" wrote: > > I try again and events "click" only work on Default Form, if I try this on > other Form not work, I not get any error messages > > EMERSON VIER > > --- In nsbasic...@yahoogro

[nsbasic-ce] Re: Grid click

2009-07-11 Thread EMERSON VIER
I try again and events "click" only work on Default Form, if I try this on other Form not work, I not get any error messages EMERSON VIER --- In nsbasic...@yahoogroups.com, "George Henne" wrote: > > There is not enough info here to give much help. > > Have you added a grid object named "grid"