Actually, you're not doing anything wrong at all. This is how SQLite works: if the database specified in the Open command doesn't exist, SQLite creates it....
... Thank you Styskul I knew this would be a revelation, it seems a weird way to work, to me. I am sure I can move forward an inch now. If this posted twice I...
I want to develop a simple timer function with millisecond (or at least 10ms) accuarcy on my Windows Mobile device (i-mate K-JAM). I want to be able to use the...
Yes, this is correct - the device IDE does not do this check. There are quite a few additional things that we can do on the desktop IDE where memory and CPU...
What are you using in the AddObject command to create the PictureBox? If you are using AddObject "PictureBox",... it will select the MS picturebox in older...
No, 7.0.1 will not make any difference. You can override the generated code by putting Label1.FontSize = 6.75 in your Form_Load routine. We will investigate...
Hi, i use NSBasic CE 7.x and NSBasic Desktop 2.x With NSBCE SQLite3 was introduced. I visited the homepage of newobjects and found the PC-Version (DLL) of...
Hi all, New to NSB from Borland CBuilder. How do I write items to a simple text file on the PDA and retrieve them at program start-up? There is nothing in the...
This is a good place to start: http://www.nsbasic.com/ce/info/technotes/TN03m.htm. Use Input, Output or Append to manipulate text files. As for reading the...
Brian, This may be helpful as an example of inputing a text file in a _Load event: AddObject "filesystem" AddObject "file" Dim s, ss, inString ' (used as...
Got it. gridCtrl1.Col = 0 gridCtrl1.Sort = 2 Descending is OK, and fortuenately it what I need. I put headiing in the first row, and that sets sorted to the...
FREE Domain Name with 100 MB Web Space @ USD 10/year Special Packages Package - 1 ESPROV Special Hosting Package 100 MB Web Space, 5 GB Data Transfer, 5 POP3...
I am a little confused by the Output Object. TN3k gives a sample program. If reduced to simply... output.scalemode=3 output drawcircle 150,150,25 sleep 5000 I...
Hi Enonod, Try putting Updatescreen before your sleep statement. I created a new formless project with just this code: output.scalemode=3 output.drawcircle...
Hello Robert I typed exactly what you wrote and got exactly what I presume you got so the updatescreen solved part one. Thanks for that. However, after the...
Hello Enonod, Are you sure you created a "Formless" project? When I put the code in a "Standard" project I get the same thing as you. The Output screen will...
Thank you Robert I believe you have answered the problem. No I did not select any particular type of project, not quite understanding the difference, apart...
Enonod, You are welcome. Output is a sort of "default" form. Can't think of any documentation to recommend. For me I've learned such things partly by trial &...
I think I found a difference between MSCE's picturebox and the previous NSB's one: I cannot intercept the event MouseDown when I click on the picturebox. Am I...
I use an Imate Jasjar and nsbasic 7.0 I can not find the way to install phone control to my ppc.Every time i try to run phone example i receive the error...
Can you help with this please? I used a global variable to obtain records from sqlite and it worked. The variable type returned was 'IVarDictionary' to which I...
Hi guys... I've found an example for VB6 to set/get the registry but didn't see one around for NSbasic. Anyone have something that does the equivalent in...