I have a problem where the "NSCEPictureBox.NSCEPictureBoxCtrl.1" picturebox works OK on some computers, but not on others. The original "picturebox" works on...
More details: I just switched the screen resolution to very low on the laptop (the one that wasn't displaying the new picturebox), and the picturebox started...
Figured it out: The new Picturebox doesn't work when the display is in 16-bit color depth mode. It works fine in 32-bit mode. Is this a known issue, and is...
Hi, hoping someone can help me out here. I'm using the AddObject command to add Form Controls on the fly. Is there a way of telling if a Control has already...
I created a Desktop application that reads a Palm Database. The code below loads two listboxes. One listbox is the name which is the database key, the other...
I'm not quite sure I follow what you're trying to do, but I think it might be because you've only provided snippets of your code? Is LoadRecord supposed to be...
"Subscript Out of Range" indicates that the index value you are using isn't present in the object using it. Your For Next loop is the problem. The loop ends...
Thanks for the help. Sorry I did not provide enough info. When this program opens it runs a Sub_Main routine that uses a Palm.dll to open palm databases. The...
I see! I see! I like the idea! I'll give it a shot when I get home tonight. Thanks, Alan ... being ... For ... that ... starts ... records ... fine. ... the ...
I have searched this group and the CE group and have been to the SQLite website hoping to find some sample code, but cannot find the answer to this question: I...
You need to construct a proper SQL statement to insert the record data. Learning NSBasic is NOT the same as learning SQL. You'll need to study SQL in order to...
... ...snip... What is the purpose of the invisible text boxes? The whole issue of quote marks can drive programmers bonkers. In your ... would be generate ",...
It's much easier to use the ASCII Character codes in order to construct long SQL strings. Trying to keep track of all those quotes is an exercise in futility....
Thank you, Ed I an glad you posted good code so if anyone else has difficulty understanding this issue they will have an answer. After gathering info at the...
I'm not quite sure what you mean by "instead of a variable name", but basically, SQLite just wants a valid SQL statement. if your combination of variables and...
Thanks, I understand now. I didn't realize Value1 was an SQL statement, I just thought it was a way of renaming a variable. Obviously if I was a professional...
... I have been reading this string of postings and I think I figured out what is going on. There is confusion between how NSBasic and SQLite interract. I...
... This statement is incorrect. Properly declared variables have no issues in a SQL statement. SQL is standardized protocol and SQLite is simply the Open...
If you truly want to use variables within your SQL, here's a starting point: http://www.sqlite.org/cvstrac/wiki?p=DynamicLanguageInterfaceToSqlite The article...
I think it's obvious that very few people here have ever actually used SQL. All these issues arise when people put the cart before the horse. SQL is a...
Pay particular attention to the For Next Loop You'll see proper SQL statement concatenation that uses both string data and variables. This particular code uses...
I've been using SQL for 15 years now. The problem with most of this discussion has been in phrasing. I think your last summary should hopefully clear things...
Okay, with a little time to think I realized my last message probably was not phrased the most tactfully. First off, Tim, I want to say that in general I am...