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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 2273 - 2318 of 3191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2273
Perfect. That did the trick and I think I understand why it worked too, which helps. Many thanks. Stuart...
krayten
Offline Send Email
Aug 2, 2007
5:08 pm
2274
Hi, The project I'm working on just now requires the user to fill in several forms to gather some strings of information, stored as variables,which is later...
krayten
Offline Send Email
Aug 2, 2007
5:17 pm
2275
Hi Stuart, if this whole thing happens on just 1 PC, I'd say this is a typical case where that information should be stored in the registry. You could of...
Thomas Gruber
computerhusky
Offline Send Email
Aug 3, 2007
7:26 am
2276
I agree with Thomas, The caveat of using the registry is place the values for the current user area HKCU area for all specific user info. Place all global ...
jposso21
Offline Send Email
Aug 3, 2007
11:04 pm
2283
I have wanted to write code to resize the form when the maximize button is pressed. Also, I want to process the close 'X' the same as a File->Exit menu item....
cedarlakebuzzards
cedarlakebuz...
Offline Send Email
Aug 26, 2007
11:24 am
2285
When a form is resized, a Form1_Resize event is sent. You can put this in your program: Sub Form1_Resize 'Change Form1 to the size you need 'do what you need ...
George Henne
ghenne
Offline Send Email
Aug 31, 2007
9:42 am
2288
I want to compose & send an email from within NSB-D. I tried Tim Markowski's example using ShellExecute. That composes the email in Eudora OK, but I want it...
Don Pomplun
k2bio
Offline Send Email
Sep 30, 2007
9:05 pm
2289
I'm trying to read incoming data from a serial port, process (display) it, then go back and wait for the next dataset. Why doesn't the following work? What's...
Don Pomplun
k2bio
Offline Send Email
Oct 10, 2007
12:42 am
2290
Does a FOR-NEXT Loop produce the same results? Bob From: nsbasic-desktop@yahoogroups.com [mailto:nsbasic-desktop@yahoogroups.com] On Behalf Of Don Pomplun ...
Bob Katayama
banffbears2006
Offline Send Email
Oct 10, 2007
12:50 am
2291
Yes; I changed the Do..Loop to a For I = 1 to 10 . . . Next. It never came back with even the first read before showing (twice) as "not responding". Don...
Don Pomplun
k2bio
Offline Send Email
Oct 10, 2007
1:44 am
2292
Try inserting a delay within the loop at the end to allow the read code to complete before the next read is executed. This may help you. For I=1 to 10 . .... ...
Bob Katayama
banffbears2006
Offline Send Email
Oct 10, 2007
2:25 am
2293
I just tried something along those same lines . . . I put a DoEvents in the for-next loop. Behavior is curious, at best. Apparently the Not Responding is a...
Don Pomplun
k2bio
Offline Send Email
Oct 10, 2007
4:04 am
2294
I don't see any reference to effecting the globality of variables. In fact, even though Option Explicit is inherently On, I find I can just use a variable in...
Don Pomplun
k2bio
Offline Send Email
Oct 10, 2007
6:21 am
2295
From the Help file: Script level variables are available to all procedures in the script; procedure level variables are available only in the procedure they ...
John Carter
johnecarter
Offline Send Email
Oct 10, 2007
2:20 pm
2296
Hi Don, in NSBasic (like many other Basic variants) variables are global if they're declared outside any Sub or Function, i.e. right at the beginning of your...
Thomas Gruber
computerhusky
Offline Send Email
Oct 11, 2007
3:30 pm
2297
Hi everyone, I'm new here and i have a newbie question: I need to use a API call to "SetWindowPos" in my Form_Load. I declared at top the API like: Declare...
camblx
Offline Send Email
Oct 14, 2007
9:00 am
2298
Thanx, that took care of the problems. Don...
Don Pomplun
k2bio
Offline Send Email
Oct 14, 2007
8:23 pm
2299
Can Select Case only used for "equality" ? Here's what I'm trying to do: Heading=123 Select Case Heading Case <90 Compass = "NE" Case <180 Compass = "SE" ...
Don Pomplun
k2bio
Offline Send Email
Oct 15, 2007
6:17 pm
2300
The help file only shows a single item match or a list: Case 99 Case 99, 100, 101, 102 Maybe an If - ElseIf structure would work instead? John...
John Carter
johnecarter
Offline Send Email
Oct 15, 2007
7:19 pm
2301
By definition, the CASE implies an equal test. Each case is equivalent to IF TRUE=(expression). With a little tweekin, you can create more complex select...
cedarlakebuzzards
cedarlakebuz...
Offline Send Email
Oct 19, 2007
6:17 am
2302
Hi, that's a nice trick! I'll try to remember that. Kind regards Thomas...
Thomas Gruber
computerhusky
Offline Send Email
Oct 19, 2007
8:52 pm
2305
NS BASIC Corporation Announces 2007 Programming Contest! Cash prizes in several categories! NS BASIC Corporation is pleased to announce our 2007 Programming ...
George Henne
ghenne
Offline Send Email
Oct 23, 2007
2:43 pm
2306
I'm having a hard time with the Listbox control. Does ListItem work? For example. FooLb.AddItem "Foo" dumbval = FooLb.ListIndex MsgBox FooLb.ListIndex Thanks...
rundall
Offline Send Email
Oct 25, 2007
7:35 pm
2307
I have used it a number of times. One problem is ListIndex is not initialized. You should set FooLB.ListIndex=0. I would also suggest using a Clear at the...
cedarlakebuzzards
cedarlakebuz...
Offline Send Email
Oct 29, 2007
11:12 am
2313
Am I correct that, unlike NSB/Palm, you can't preload these boxes at design-time? (I don't see the familiar (from NSB/P) preload capability)....
Don Pomplun
k2bio
Offline Send Email
Nov 10, 2007
5:29 am
2314
That is correct. The underlying Palm OS objects have space in them for this information, while the Windows versions do not....
George Henne
ghenne
Offline Send Email
Nov 12, 2007
2:44 pm
2315
Somewhere I read that I can only have 1 Form object open at a time, and the example of using 2 forms in a program has Form1.Hide before Form2.Show. Instead of...
Wayne Graham
wkgraham7
Offline Send Email
Nov 13, 2007
2:03 am
2316
You can probably do this in your own code (not the generated code). How about having your forms only use the top part of the window, while you add your own...
George Henne
ghenne
Offline Send Email
Nov 14, 2007
11:39 am
2317
I looked at that, and I'd like more screen area to work with. It occurred to me I could make multiple Frame objects and turn the Visible property on and off...
Wayne Graham
wkgraham7
Offline Send Email
Nov 14, 2007
9:21 pm
2318
I've played with the Tab control, and it works OK - but check out the licensing issues if you plan to redistribute your app....
George Henne
ghenne
Offline Send Email
Nov 15, 2007
11:43 am
Messages 2273 - 2318 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