Search the web
Sign In
New User? Sign Up
nsbasic-desktop · Forum for NS Basic/Desktop users
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2811 - 2843 of 3191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2811
I am using: NSBasic.win32.Registry I cannot find any code samples and am unsure how to proceed...
D. Bruce
mooredavidbruce
Offline Send Email
Jan 2, 2009
6:43 pm
2813
Here's a short sample that should help you get started: AddObject "NSBasic.win32.Registry","reg" reg.key=&H1 'HKEY_CURRENT_USER ...
George Henne
ghenne
Offline Send Email
Jan 6, 2009
6:11 pm
2815
I have a problem where the "NSCEPictureBox.NSCEPictureBoxCtrl.1" picturebox works OK on some computers, but not on others. The original "picturebox" works on...
Elliott
sailvalis
Offline Send Email
Jan 9, 2009
9:35 pm
2816
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...
Elliott
sailvalis
Offline Send Email
Jan 9, 2009
9:48 pm
2817
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...
Elliott
sailvalis
Offline Send Email
Jan 9, 2009
10:16 pm
2818
The best we can probably do, for now, is document this....
George Henne
ghenne
Offline Send Email
Jan 10, 2009
4:03 pm
2819
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...
michael_newett
Offline Send Email
Jan 15, 2009
7:21 pm
2820
You could try setting a property in an On Error block....
George Henne
ghenne
Offline Send Email
Jan 15, 2009
7:24 pm
2821
Cheers George...
michael_newett
Offline Send Email
Jan 15, 2009
10:03 pm
2822
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...
algehe
Offline Send Email
Jan 27, 2009
3:40 am
2823
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...
Styskul
Offline Send Email
Jan 27, 2009
4:29 am
2824
"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...
Tim Markoski
tmarkoski1122
Offline Send Email
Jan 27, 2009
12:26 pm
2825
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...
algehe
Offline Send Email
Jan 27, 2009
2:32 pm
2826
You are starting the loop with an index of 0. Try starting at 1....
Tim Markoski
tmarkoski1122
Offline Send Email
Jan 27, 2009
2:38 pm
2827
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 ...
algehe
Offline Send Email
Jan 27, 2009
2:57 pm
2829
Thanks Tim, Works great! Alan...
algehe
Offline Send Email
Jan 28, 2009
12:49 am
2830
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...
algehe
Offline Send Email
Feb 3, 2009
12:34 am
2831
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...
Tim Markoski
tmarkoski1122
Offline Send Email
Feb 4, 2009
1:51 am
2832
... ...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 ",...
cedarlakebuzzards
cedarlakebuz...
Offline Send Email
Feb 4, 2009
7:41 am
2833
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....
Tim Markoski
tmarkoski1122
Offline Send Email
Feb 4, 2009
3:14 pm
2834
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...
algehe
Offline Send Email
Feb 4, 2009
7:53 pm
2835
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...
Styskul
Offline Send Email
Feb 4, 2009
8:21 pm
2836
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...
algehe
Offline Send Email
Feb 4, 2009
9:16 pm
2837
... 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...
cedarlakebuzzards
cedarlakebuz...
Offline Send Email
Feb 6, 2009
9:46 am
2838
... This statement is incorrect. Properly declared variables have no issues in a SQL statement. SQL is standardized protocol and SQLite is simply the Open...
Tim Markoski
tmarkoski1122
Offline Send Email
Feb 6, 2009
11:01 am
2839
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...
Styskul
Offline Send Email
Feb 6, 2009
5:06 pm
2840
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...
Tim Markoski
tmarkoski1122
Offline Send Email
Feb 6, 2009
6:17 pm
2841
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...
Tim Markoski
tmarkoski1122
Offline Send Email
Feb 6, 2009
6:28 pm
2842
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...
Styskul
Offline Send Email
Feb 6, 2009
6:30 pm
2843
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...
Styskul
Offline Send Email
Feb 6, 2009
7:22 pm
Messages 2811 - 2843 of 3191   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help