Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters...
I think your problem is with the Goto CreateMyFile1 as vb think the process is still processing an error in Errorhandler1. You should use a Resume or Resume Nest instead of Goto CreateMyFile1 as Zeb...
I noticed the behavior before using a new control. I first though that control was buggy when I moved it around. Then after investigation I found that it was...
How many times to you loop really ? The only reason i see it may be doing this is that i is passed by reference to SWFFunctions.SetFlows and SetFlows increment your value of i and return the new...
Yeah, use INSTR to find the the position of a string within another string. You may also need to check for the end token cause you don't want your server to work on incomplete string. (and the...
I think the best solution to your problem is to define a start and end token for each strings sent to your server.
This way, your server will be able to deal with more then one string received in...
Well for encryption, if I remember correctly, you can have some sort of os level encryption system for your files, so any software / access to files is done as usual. I also think that you can do...
If your data are so critical and secret, I would recommend to use some kind of disk encryption before anything else so that someone who get access to your files won't be able to read the real stuff...
You can drop your OCXs directly in the .exe folder, like if you want to have a vb autorun on a CD, all required ocx need to be in the same folder as the .exe.
If I remember correctly, pop3 have a HEAD command wich return only the header of an email, and if I understand correctly, email clients like outlook store thoses info somewhere in order to know which...
I've been trying to code this without success. Here is what I want to do exactly :
I want a function that return the handle or name of the top most (modal) window of my application (not necessarily...
A simple solution would be to use a RichTextBox control (from microsoft) instead of a textbox. And then call the GetLineFromChar funciton of the control to get the current line.
I don't know if it's any related, but when I have alot of stuff open (use alot of memory) all tooltip in the vb5 IDE also appear in the task bar as running programs :)