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...
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...
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 =...
Function GetSortedArray(varArray) Dim intCount Dim intNumber Dim varTempData For intCount = UBound(varArray) - 1 To 0 Step -1 For intNumber = 0 To intCount If...
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...
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...
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...
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...
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...
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...
... 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...
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...
... 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: ...
... 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. ;-) ...
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...
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...
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...
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...
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...
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...
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...
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...