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 2765 - 2797 of 3191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2765
I have a .exe file that is unprotected. It is called by ShellExecute. Is it possible to encode and decode a .exe file? or Is it possible to code a program to...
kshetarpal
Offline Send Email
Oct 2, 2008
8:00 am
2766
I would like to able to encrypt and decrypt a .exe file on the fly in a program. I have the following code from a vb project for encrypting files using ActiveX...
kshetarpal
Offline Send Email
Oct 2, 2008
12:04 pm
2767
I have 4 variables each with a numeric value. How do I write a code that finds the highest number? The VbScript equivalent code does not work: highdata =...
kshetarpal
Offline Send Email
Oct 5, 2008
4:58 pm
2768
... Just write a little subroutine to find the max value in a set or array. Lance...
LanceGary
Offline Send Email
Oct 6, 2008
9:37 am
2769
Function GetSortedArray(varArray) Dim intCount Dim intNumber Dim varTempData For intCount = UBound(varArray) - 1 To 0 Step -1 For intNumber = 0 To intCount If...
Tim Markoski
tmarkoski1122
Offline Send Email
Oct 6, 2008
8:42 pm
2770
If you are only comparing four variables you could do it with four compare statements. This routine assumes comparing positive numbers. You need to adjust the...
tomnew2003
Offline Send Email
Oct 7, 2008
6:53 am
2771
The following solution worked for me: highnum = 0 For i = 1 To 4 If data(i) > highdata Then highdata = data(i) highnum = i End If Next ... code...
kshetarpal
Offline Send Email
Oct 7, 2008
7:27 am
2772
I'm not sure what you mean here. Exe files cannot be reverse compiled to get the original NS Basic/ Desktop code....
George Henne
ghenne
Offline Send Email
Oct 7, 2008
7:51 pm
2773
It should work. Install and register (regsvr32 edcrypt30.ocx ) the control, then get ObjectID. See Tech Note 2, section 4.2 for some help in this Once this is...
George Henne
ghenne
Offline Send Email
Oct 7, 2008
7:56 pm
2774
This .exe file is not NS BASic but an ebook. ... ShellExecute. ... password...
kshetarpal
Offline Send Email
Oct 9, 2008
9:26 am
2775
I have a database that needs to do the following: 1. Record information Last name, First name, date & other fields 2. Information can be recorded with each of...
kshetarpal
Offline Send Email
Oct 13, 2008
12:31 pm
2776
Without actually seeing your NSBasic code, I can only speculate what is going on. ... In the where clause for the delete, is the date included? ... Add the...
cedarlakebuzzards
cedarlakebuz...
Offline Send Email
Oct 14, 2008
9:55 am
2777
NS Basic will be hosting a booth at the SmartPhone Show next week. It's on Tuesday and Wednesday (Oct 21 and 22), in London, England. ...
George Henne
ghenne
Offline Send Email
Oct 14, 2008
10:49 am
2778
You cannot have more than one record with the same data in the Primary Key field, so you can only have one Doe, one Smith etc in the table. With regards to the...
John Hill
bodyjohn2003
Offline Send Email
Oct 14, 2008
9:13 pm
2779
Your Primary Key should be a rowID in the Database, not done on something that can have multiple entries, I think in your table if you dont specify a PK sqlite...
Jay Young
jayoungaf
Offline Send Email
Oct 15, 2008
7:05 am
2780
I would like to run a sub when Xing out of program. I tried putting call statement in Form1_Unload, but does not execute. Thanks, Windows XP...
dwoodruff8
Offline Send Email
Oct 22, 2008
3:32 pm
2781
Try putting it in Sub Output_Close. It gets triggered when the main output window gets closed....
George Henne
ghenne
Offline Send Email
Oct 23, 2008
9:46 am
2782
... I tried this and it works well. I added this to some of my current projects so "X"ing out is the same as a FILE->EXIT. i.e. SUB OUTPUT_CLOSE exit_click...
cedarlakebuzzards
cedarlakebuz...
Offline Send Email
Oct 31, 2008
6:11 am
2783
Hey Doc, give me some feedback would ya. How long ya been using this? Pros? Cons? Any OCX/ActiveX comps you've successfully used with it? Speed? Project size...
Garrett_2001
Offline Send Email
Nov 2, 2008
2:50 am
2786
... me. ... You might find some of the information you want on the NS Basic site. Perhaps looking at the programming contest winners might be useful: ...
LanceGary
Offline Send Email
Nov 6, 2008
11:28 pm
2787
... site. ... I surely did check out all the info there already. :-) Thanks. But I know Doc and figured he'd give it to me straight friend to friend. ;-) ...
Garrett_2001
Offline Send Email
Nov 8, 2008
11:39 pm
2788
I was wondering if I can write the following statement(correct syntax needed) Dim cmd cmd="DELETE FROM AnxDB WHERE date2 = """ & date2.Text & """" And lastname...
kshetarpal
Offline Send Email
Nov 25, 2008
1:21 pm
2790
I am using Desktop to open and read a Palm database. When it opens I get Error 40 String truncated. I get the same message with Palm Database Converter. Any...
algehe
Offline Send Email
Nov 30, 2008
5:12 pm
2791
I would have to have a copy of the original database to be able to analyze the string that causes the failure. Or you could get a (free) copy of XIV32 which...
John Carter
johnecarter
Offline Send Email
Dec 2, 2008
2:29 am
2792
Thanks for the reply John, Sorry I was tardy in answering you, but I was traveling for a couple of days and then came home to pull a semi-all nighter with this...
algehe
Offline Send Email
Dec 3, 2008
12:00 am
2793
Did someone say beer? :-) I believe the GetValueField calls should have a second parameter. For integers, it is 2. GetValueField stores the value as a binary...
George Henne
ghenne
Offline Send Email
Dec 3, 2008
1:12 am
2794
I think the key is the format of GetValueField. From the PalmDB.dll help file: object.GetValueField(Offset, Length) Offset: Offset in bytes from the beginning...
John Carter
johnecarter
Offline Send Email
Dec 3, 2008
11:26 pm
2795
OK. I am obviously not a professional programmer, but I can usually think my through things. As evidence: I have been a loyal customer of NS Basic for at least...
algehe
Offline Send Email
Dec 5, 2008
12:08 am
2796
Your line 40 is ... You must use the format shown in TechNote 34: .GetStringField(Offset, length) The parentheses [()], the place in the database [Offset], and...
John Carter
johnecarter
Offline Send Email
Dec 7, 2008
5:45 pm
2797
Is it possible to Change the Border size on a form? Thanks, Amit...
kshetarpal
Offline Send Email
Dec 10, 2008
7:15 pm
Messages 2765 - 2797 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