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 to share photos of your group with the world? 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 860 - 891 of 3191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
860
hi guys, how can I fix the number of decimal points for a number. For example: x="123.1000" y=CSNG(x) MsgBox ROUND(y,4) The above returns 123.1 How would I...
michael_newett
Offline Send Email
Nov 1, 2005
12:16 pm
861
If you want control over how a number prints, you need to print it as a string value. The FormatNumber() function can be used to take a number and format it as...
George Henne
ghenne
Offline Send Email
Nov 1, 2005
12:25 pm
862
FORMATNUMBER(123.1, 4)...
Tim Markoski
tmarkoski1122
Offline Send Email
Nov 1, 2005
12:31 pm
863
Thanks...
michael_newett
Offline Send Email
Nov 1, 2005
2:06 pm
864
Hi guys - I'm having problems with the following subroutine. I get the error "Expected 'Next'". Any ideas where I'm going wrong. Sub GetNumberOfDuctSections ...
michael_newett
Offline Send Email
Nov 2, 2005
11:54 am
865
Why are you doing all this stuff in EXECUTE calls?...
George Henne
ghenne
Offline Send Email
Nov 2, 2005
12:01 pm
866
You should be using nested IF THEN statements....
Tim Markoski
tmarkoski1122
Offline Send Email
Nov 2, 2005
12:04 pm
867
I have 15 rows of textboxes with 7 textboxes on each row. I want to simulate this: Sub GetNumberOfDuctSections n=0 If IsNumeric(Volume1_TextBox.Text)=True And...
michael_newett
Offline Send Email
Nov 2, 2005
12:18 pm
868
Look at the code in message 816 http://groups.yahoo.com/group/nsbasic-desktop/message/816 You can greatly reduce the amount of code you have. Create an array...
Tim Markoski
tmarkoski1122
Offline Send Email
Nov 2, 2005
12:51 pm
869
Save the code below as "ArrayTest.txt" This example creates 7 different dynamic arrays and shows how to validate within an array. I modified the input field...
Tim Markoski
tmarkoski1122
Offline Send Email
Nov 2, 2005
2:59 pm
870
Thanks Tim. ... validate within an array. ... function show in message 816 ... field validation ... (34) ... (34) ... Volume(j) & ".text)" ... Length(j) &...
michael_newett
Offline Send Email
Nov 2, 2005
6:46 pm
871
There are thousands of developers using NS Basic all over the world. Last time I checked, we had users in over 70 countries. The newest country on the list?...
George Henne
ghenne
Offline Send Email
Nov 4, 2005
11:47 am
873
Save the code below as ScreenMetrics.txt This example shows how to center any form regardless of screen resolution and supress the flash of an empty Output...
Tim Markoski
tmarkoski1122
Offline Send Email
Nov 5, 2005
4:22 pm
874
Is there any way that I can play a movie clip (AVI) in NSBSIC ? Regards Mike...
michael_newett
Offline Send Email
Nov 5, 2005
7:30 pm
875
Nice technique! It's really amazing how many things can be done with scripting. ... \cimv2")...
George Henne
ghenne
Offline Send Email
Nov 6, 2005
12:18 pm
876
I did this once, but I can't find the sample I made anymore. It was pretty easy to do though. Do a search on ActiveX and avi - you'll find a number of controls...
George Henne
ghenne
Offline Send Email
Nov 6, 2005
12:26 pm
877
Our Frappr map is off to a good start. If you haven't done so yet, take a second to add yourself to the map. <http://www.frappr.com/nsbasic>...
George Henne
ghenne
Offline Send Email
Nov 7, 2005
10:56 am
878
I've been digging around and this appears to be the most commonly used example for VB or VBScript. Any one got any ideas how to get it working on NS? Declare...
michael_newett
Offline Send Email
Nov 8, 2005
3:26 pm
879
You can't use Declare Function in NS Basic. This is a hook to a WIndows API function. What are you trying to do? Do you want to simply play an AVI file in the...
Tim Markoski
tmarkoski1122
Offline Send Email
Nov 8, 2005
3:40 pm
880
The latter - I'll keep digging. ... you ... SHELLEXECUTE. ... Alias "mciSendStringA" ... ByVal ... video1", ... was ... controls ... Windows...
michael_newett
Offline Send Email
Nov 8, 2005
4:06 pm
881
I can get screen metrix to work if I dont alter anything! If I deviate from the example slightly I cannot get Screen Metrix to work - It will not center the...
michael_newett
Offline Send Email
Nov 9, 2005
1:59 pm
882
Michael- The IE Method that was posted certainly works but has alot more memory overhead and takes longer. You're also making a beginners mistake. Remember...
Tim Markoski
tmarkoski1122
Offline Send Email
Nov 9, 2005
6:04 pm
883
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the nsbasic-desktop group. File :...
nsbasic-desktop@yahoo...
Send Email
Nov 9, 2005
6:50 pm
884
For those who have an interest- I've updated the NSBCompress.zip file in the files section of the forum. The updated NSBCompress.exe file will now validate the...
Tim Markoski
tmarkoski1122
Offline Send Email
Nov 9, 2005
6:59 pm
885
I'm trying to license this object. Where am i going wrong guys ? This bit works. AddObject "MOVIEPLAYER.MoviePlayerCtrl.1", "MoviePlayer1", 100, 100, 200, 200 ...
michael_newett
Offline Send Email
Nov 9, 2005
7:07 pm
886
The license is probably just a property of the MoviePlayerCtrl object and not a separate object....
Tim Markoski
tmarkoski1122
Offline Send Email
Nov 9, 2005
8:42 pm
887
I've got it! It was me being stupid and not putting in the correct licensekey. ... object ... 100,...
michael_newett
Offline Send Email
Nov 9, 2005
8:58 pm
888
Thanks Tim ... memory overhead and takes longer. ... two commands of any NS Basic Desktop code. ... flashes the user doesn't see it. ... Form_Load procedure...
michael_newett
Offline Send Email
Nov 9, 2005
10:38 pm
889
I'm trying your screen metrics method in a 2 form application. I've noticed that if I alter the position of the output window once the program is running, and...
michael_newett
Offline Send Email
Nov 10, 2005
12:30 am
891
Save the code below as ScreenMetrics.txt and load it. You can then run through the command buttons and see how to do it. Output.left=20000 Output.top=20000 ...
Tim Markoski
tmarkoski1122
Offline Send Email
Nov 10, 2005
7:39 am
Messages 860 - 891 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