Here's an article about On Error. There's a lot to the topic... <http://www.microsoft.com/technet/scriptcenter/resources/scriptshop/ shop1205.mspx> Another...
Option Explicit AddObject "newObjects.sqlite3.dbutf8","db" Dim RecordList Dim CurrentRecord Dim n I am not sure what you mean by "value." I have another...
I assume this is what you need to know: Option Explicit Dim RecordList Dim CurrentRecord Dim rec I am not sure what you mean by "Value" George, it is a string....
Hi All, I need to produce and print pre-formated reports from within a Desktop app. I am using an Sqlite3 database. Does anyone have any ideas? Thanks in...
George, The SQLite Muli User sample is from the "Files" in this group (link to the left) posted by Michael Newett. I may be absent for a couple of days because...
George, The SQLite Muli User sample is from the "Files" in this group (link to the left) posted by Michael Newett. I may be absent for a couple of days because...
Hi there, A few months ago I bought my copy of NS/Basic Desktop 4.0.1. I like the product and plan to write my first "real" app with it. Until now I have used...
Thanks for your comments! Keyboard Navigation: This is on our list of things to improve. Application Properties: Thanks for pointing this out. It's fairly easy...
Look at bit more at the Multi User sample. Here is one instance where it sets current record: Sub SearchForMatch Cmd="SELECT * FROM NameDB WHERE Entry1 = """ &...
George, After checking your suggestion and reinserting some additional code and still got the same result. The original code I wrote worked and opened another...
Hello: I have been trying to understand this control with no luck. I have read Tech note 13 a bunch of times to no avail. I want to load photos but not from a...
Have a look at the Picture property - it lets you load an image from a file. If you want to the picture to size automatically, have a look at the Stretch...
Hello, Can anybody tell me what's wrong with this statement? AddObject "NSCEPictureBox.NSCEPictureBoxCtrl.1", "MyPic", 20, 20, 100, 50, Form1 I get the...
Stretch: Sets or returns a value indicating whether the PictureBox will stretch (or shrink) the display of the image to the size of the PictureBox. This will...
The statement itself looks OK - could the problem be caused by something elsewhere in your program? For example, you are making the picturebox a child of...
Is there a limit to string literals in NSBasic Desktop and/or CE? I know there is a limit in Palm. If so is it about the same size as the Palm limit?...
Can anyone show me how to get the current location of the main form (Form1)? I can reposition it by writing to Form1.Top and Form1.Left, but when the window is...
Yes it is the first line! So, where should I put it? Also can this control be by itself? Sorry for the dumb questions but they will be more dumber if I don't...
Never mind. I added a command button, put my code in there and voila! I got the result I want it, I even tried both stretch and autosize. I will be using...
Hi all Need some guidance please If have a database table with Null values in certain rows and when I try to assign the Null value to a text box I get the...
Hello Aidan, Have a look at the technotes, the SQLite reference describes it in detail. You can check if a field in a record contains NULL by testing if...
Thanks Thomas Tried the following Sub Categorydisprecord(n) If n<1 Or n>records.count Then Exit Sub Categoriestxtbx1.Text = records(n)(1) If records(n)(2) Is...