Information from one pgm to another
-
That depends on how much information and what type you want to send. If its a small amount, then you could send it as a command line argument. If it's more, then you can either use a seperate file or an advanced technique like .NET Remoting.
Dave Kreskowiak Microsoft MVP - Visual Basic
-
That depends on how much information and what type you want to send. If its a small amount, then you could send it as a command line argument. If it's more, then you can either use a seperate file or an advanced technique like .NET Remoting.
Dave Kreskowiak Microsoft MVP - Visual Basic
-
It is just 2 fields, date and time. I never used a command line. Do you have any example ? By the way, they are in string format. Heino
Remember that at the end of the day your VB.Net program is a exe file. So you can pass arguments to it like other exe file. You can search on Google for handling command line arguments. About the data type of the arguments, it is a good idea to always consider them as strings and typecast them in the receiving code.
Shreekar
-
It is just 2 fields, date and time. I never used a command line. Do you have any example ? By the way, they are in string format. Heino