[nsbasic-ce] Size of NSB CE files

2009-11-28 Thread jingjok67
Hi George, We have developed a complex app in NSB, and found that the limit of the size of the application file is 2MB, which we are approaching now. (Splitting the app is not an option) When files get bigger than 1.5 MB things slow down and some devices crash with out of memory errors,

[nsbasic-ce] NSB CE experience list

2009-09-15 Thread jingjok67
Hi to all NSB CE developers, We have successfully completed a fairly big project using NSB CE and I would like to share our experience with the community so that NSB CE can be imroved further and some other developers can avoid some of the pitfalls. Generally NSB CE works surprisingly well and

[nsbasic-ce] NSB 8 runtime,

2009-09-07 Thread jingjok67
Hi --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups nsb-ce group. To post to this group, send email to nsb-ce@googlegroups.com To unsubscribe from this group, send email to nsb-ce+unsubscr...@googlegroups.com For

[nsbasic-ce] NSB 8 runtime

2009-09-07 Thread jingjok67
Hi, We need to separate the app from the runtime as we use our own installer for one project. I find NSB 8 a bit confusing here, how can I install only the runtime (i.e. as we did in NSB CE 7) ? Or even better would be a list of files I need to copy and register if I want to install

[nsbasic-ce] Tab key

2009-09-03 Thread jingjok67
Hello, quick question, how do I enable the user to use the tab key to move the focus from textbox to textbox in NSB V8 ? In a simple project with a few textboxes the tab key just selects the text in the textbox. In addition, what do the TabDown, TabUp, TabLeft, TabRight properties of the

[nsbasic-ce] PictureBox problem

2009-09-02 Thread jingjok67
Hi, I have a strange problem with the PictureBox control in NSB CE 7, the size of the font on the PicturBox is different on different devices. When creating a new project with a PictureBox added to a form and then adding the following code : ShowOKButton True Sub main picturebox1.FontName

[nsbasic-ce] Re: PictureBox problem

2009-09-02 Thread jingjok67
Hello George, The Touch Viva has the same 320 x 240 screen resolution screen as the iPaq 2210 You can see the specification here : http://www.htc.com/www/product/touchviva/specification.html So both have the same screen resolution, why is the font different ? In eVB by the way the font is the

[nsbasic-ce] Re: Obfuscate NS Basic CE program ?

2009-03-17 Thread jingjok67
Hello George, That was exactly what I needed, thanks ! Regards --- In nsbasic...@yahoogroups.com, George Henne g...@... wrote: Yes, there is. In Project Properties, use the Encrypt option. Then only someone with your serial number will be able to open the program. If you save your

[nsbasic-ce] Obfuscate NS Basic CE program ?

2009-03-15 Thread jingjok67
Hello, We are now about to deploy a commercial NSB application, of course I do not want any clever user to open the NSB file with a copy of NS Basic and copy the code or modify it. Is there any way to obfuscate / encrypt the NSB file so that noone can open the code ? Thanks...

[nsbasic-ce] Re: Closing application with a BYE command on Windows Mobile 6.1.4 Professional

2009-02-28 Thread jingjok67
Cunningham Brown Trout Systems LLC On Feb 27, 2009, at 2:12 AM, jingjok67 jingjo...@... wrote: Hi James, Yes, I can confirm this, I have had the same issues when I tried running NSB programs (newest version of runtime which seems to be 4.2.0 ?) on WM 6.1.4, I had tried with the MS

[nsbasic-ce] Re: Closing application with a BYE command on Windows Mobile 6.1.4 Professional

2009-02-26 Thread jingjok67
Hi James, Yes, I can confirm this, I have had the same issues when I tried running NSB programs (newest version of runtime which seems to be 4.2.0 ?) on WM 6.1.4, I had tried with the MS emulator. Are you using the emulator as well or a real device ? Strange enough the WM 6.1.0 emulator does not

[nsbasic-ce] Frame border

2009-02-23 Thread jingjok67
Hi, I am using frames to move forms and to show / hide groups of controls. Is there any way to get rid of the border of the frame ? I tried frame.BorderStyle = 0 as in eVB but the border does not disappear. BackColor only affects the caption. Can I use the SetWindowLong API for this ?

[nsbasic-ce] Re: twips scale mode

2009-02-23 Thread jingjok67
Hi George, Ok, that's fine, it's just a on-time effort to convert the coordinates. Thanks --- In nsbasic...@yahoogroups.com, George Henne g...@... wrote: NS Basic does use pixels instead of twips for most functions. The eVB2NSB converter divides all positions by 15 to do the conversion.

[nsbasic-ce] screen refresh of command button

2009-02-21 Thread jingjok67
Hello, when disabling and then enabling a command button the screen does not refresh to show the enabled caption of the button on my PPC. Can someone confirm this with other devices ? Any way to refresh the button ? To try this please create a new NSB standard project, put a new long

[nsbasic-ce] Re: vbNullPtr

2009-02-02 Thread jingjok67
--- In nsbasic...@yahoogroups.com, jingjok67 jingjok67@ wrote: Hi, No, that does not work either. It seems nothing (I tried in eVB, too) except vbNullPtr works. Looks like anything else is still a variant and vbNullPtr is converted by eVB into something special. It looks like

[nsbasic-ce] Re: vbNullPtr

2009-01-28 Thread jingjok67
, vbNullPtrDef) or try Dim MyLong MyLong = CLong(0) Call RZipInitWrapper(57236465, MyLong) I do not know if this will work or not as I do not have a DLL to test it on. Regards Joe --- In nsbasic...@yahoogroups.com, jingjok67 jingjok67@ wrote: Hi, No, that does not work

[nsbasic-ce] Re: vbNullPtr and Compression Library

2009-01-20 Thread jingjok67
Hi, No, that does not work either. It seems nothing (I tried in eVB, too) except vbNullPtr works. Looks like anything else is still a variant and vbNullPtr is converted by eVB into something special. It looks like the function I am trying to call is badly written and does not accept 0 instead of

[nsbasic-ce] Re: vbNullPtr

2009-01-13 Thread jingjok67
Hello George, That is strange, if I try the line Msgbox typename(vbNullPtr) vbNullPtr in eVB and run the code I get an error that variable vbNullPtr is not defined. But then when I use the vbNullPtr in a declared function call, it works ! I have triple-checked and did not make a writing