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 2288 - 2324 of 3191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
2319
Hi Dont know if this helps but I have an application the the user selects from the first window either Defects, Inspections Reports etc. The selection shows...
John Hill
bodyjohn2003
Offline Send Email
Nov 15, 2007
12:26 pm
2320
Hi Again The other thing that I have done is disable the Windows Close X button. This means that the user can only close a window by using the close button I...
John Hill
bodyjohn2003
Offline Send Email
Nov 15, 2007
12:37 pm
2321
Hello everyone! I am new to NS Basic, even though I have been a registered NS Basic for PalmOS user since Version 3. I just never really got around to ...
Christopher Erickson
data_plumber1
Offline Send Email
Nov 15, 2007
7:52 pm
2322
Answers in line. ... without ... If you have the API declarations, then you can probably use NSBasic Desktop. Look at the Declare2 project in the Samples...
John Carter
johnecarter
Offline Send Email
Nov 15, 2007
9:37 pm
2323
I've been ending my program by just clicking the window's close (X) button. But now I want to execute some form unload code, so I added a QUIT button that...
Don Pomplun
k2bio
Offline Send Email
Nov 16, 2007
5:07 am
2324
. . . (one) answer seems to be to call output_close after doing the form_unload. This simulates clicking the X, and allows a graceful BYE...
Don Pomplun
k2bio
Offline Send Email
Nov 16, 2007
6:13 am
Messages 2288 - 2324 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