"I create a package using package and DEployment wizard as my application uses some excel files i tried to add them at the point when the package and...
i checked that .. the excel file is in the same folder as the exe file Venkata Ramana Gundi wrote:If its a reference error then probably the xl file is not...
hi i'm writing a vb app and i was wondering if someone could give me some help on startup parameters. i want to be able to run it from the run menu like -...
kf6uzn
kf6uzn@...
Sep 3, 2002 9:38 pm
7531
When you start your program using the Run Dialog box, include whatever 'switches', 'commands', or 'arguments' you wish to devise for your program to use. For...
if the user enters more than one parameter are they all dumped into strCommand or do they have strCommand2 etc. -thanks ... From: Synergy-Pro To:...
kf6uzn
kf6uzn@...
Sep 4, 2002 4:41 am
7533
yes.. all are dumped into the same string. We have to check with instr function to see whether ur required parameters exist in the command line or not. for ex:...
Reddy Suresh
rsuresh@...
Sep 4, 2002 5:01 am
7534
Whatever comes after your program's name is dumped. If you want several parameters, you'll have to search out 'known' parameters or parse it for variables....
All parameters are dropped in a single string obtained from the Command() function. MyProg.exe -a -b -c:test The Command() will return the following string: -a...
Ilanio Castro
ilanio@...
Sep 4, 2002 4:41 pm
7536
Hi.. John.. i have a good code... i think you have to check it ... hope.. it can answer your question.. ! (See attached file: coolbsmp.zip) Regards. Yunan ...
Yunan@...
Sep 5, 2002 10:21 am
7537
hi guys i'm sorry but i accidentally deleted the emails about the ie toolbar. do you think that one of you could forward them to me? thanks. you can email them...
kf6uzn
kf6uzn@...
Sep 7, 2002 12:40 am
7538
when i want to install my app on another computer, i get this massege that the ADO can't find the db. i change it in code, but it keeps checking the original...
Yuval
yuvalmy@...
Sep 9, 2002 6:57 am
7539
Can you send the code that you are using, this will help inknowing where you may be going wrong ... when i want to install my app on another computer, i get...
hi group, does any one knows how to send a sms thr' vb.( not thr' the free sites like icq) Bye Nitin...
Nitin
nitinx@...
Sep 11, 2002 9:54 am
7541
Hello, I need the ASCII value of the character which is previous to the position of cursor. e.g. if the text is "Hello World" and my cursor is after the...
I'm not sure what it is you want. If the procedure you have in mind means catching the events - mouseClick - of another application from your application,...
Hi Everybody... Greetings... I would like to know from you guys if there are any new projects that need manpower as I would like to participate in the same.......
RavikumarTA
ravikumarta@...
Sep 16, 2002 12:07 pm
7544
Hi , Does anyone know how to connect to hp-ux and also Baan from vb ? Bye Nitin __________________________________________________ Do you Yahoo!? Yahoo! News -...
Here are some links that will help you: http://www.fawcette
com/dotnetmag/2001_12/magazine/columns/rlhotka/default_pf.asp http://cooltown.hp.com/dev/index.asp ...
Hello, I'm looking for the examples of following API calls in Visual Basic. Please help me if you have the code. FoldString MultiByteToWideChar LCMapString ...
http://www.allapi.net ... From: David Welford-Costelloe To: andreavb@yahoogroups.com Sent: Thursday, September 19, 2002 6:22 PM Subject: Re: [andreavb] API...
Dennis Mayores
dlmayores@...
Sep 19, 2002 10:24 am
7549
Hi, I hope you ppl will help. Can you tell me the way (VB or VBA code) of autonumbering your column, when you enter Null value through input box. I am using...
Shiraz, You can get the max(serial_number) from the table and add 1 to it when the user doesn't enter any value for the serial number. in the code section u...
Sorry, max function is not their in VBA. Select and max are both SQL functions and I dont know how to integrate them in VBA. Can you tell me how??? Hey VB...
The MAX Function certainly is a viable solution. SELECT MAX(serial_num) FROM tblTable This does work, and if it is not working, send your code. ... From:...
Shiraz, You can create another recordset with the select statement and get that value into the variable. and use the variable. You can do all this in the ...