Click here to Skip to main content
15,909,030 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: What's difference between Visual Basic and VB.NET Pin
Abhinav S18-Apr-10 3:49
Abhinav S18-Apr-10 3:49 
AnswerRe: What's difference between Visual Basic and VB.NET Pin
Dave Doknjas18-Apr-10 10:09
Dave Doknjas18-Apr-10 10:09 
AnswerRe: What's difference between Visual Basic and VB.NET Pin
programmervb.netc++19-Apr-10 8:18
programmervb.netc++19-Apr-10 8:18 
GeneralRe: What's difference between Visual Basic and VB.NET Pin
tmalbon22-Apr-10 17:28
tmalbon22-Apr-10 17:28 
QuestionHow to create a web application of a VB Program. Pin
Razanust17-Apr-10 16:17
Razanust17-Apr-10 16:17 
AnswerRe: How to create a web application of a VB Program. Pin
Eddy Vluggen17-Apr-10 23:51
professionalEddy Vluggen17-Apr-10 23:51 
Questionrunning a winapp with parameters from AutoCad Pin
MacIntyre16-Apr-10 7:25
MacIntyre16-Apr-10 7:25 
AnswerRe: running a winapp with parameters from AutoCad Pin
Eddy Vluggen18-Apr-10 0:00
professionalEddy Vluggen18-Apr-10 0:00 
MacIntyre wrote:
Is there something I need to add to my code to recognize the 1234 in the args string in the my WinApp?

I don't have AutoCAD, so I can't verify my claims here.
path\test.exe 1234
That one doesn't seem to exist, as you stated, it tries to locate the file "text.exe 1234", which indeed doesn't exist. You could try to put the filename in quotes, like this;
"path\test.exe" 1234
That should be enough to make a distinction between the file (allowing AutoCAD to test for it's existence) and the parameter. It's not guaranteed to work; some programmers take the entire input-string and assume that it's a file that must exist.

MacIntyre wrote:
f I place a # in the path (path\test.exe#1234) the app runs but can not find the parameter 1234.

There the target exists, but I guess that "#1234" has become part of the filename and no longer counts as a parameter. You could check whether args[0] contains both the filename and the parameter - if it does then you could perhaps work around the limitation by splitting the filename on the "#"-character.

Good luck Smile | :)
I are Troll Suspicious | :suss:

QuestionSome help... Pin
Adam Wike16-Apr-10 4:10
Adam Wike16-Apr-10 4:10 
AnswerRe: Some help... Pin
Luc Pattyn16-Apr-10 4:24
sitebuilderLuc Pattyn16-Apr-10 4:24 
AnswerRe: Some help... Pin
Andy_L_J17-Apr-10 16:51
Andy_L_J17-Apr-10 16:51 
QuestionVB.NET 8 (2005) modules have a colon and number after them. Why? Pin
QuickBooksDev15-Apr-10 13:26
QuickBooksDev15-Apr-10 13:26 
AnswerRe: VB.NET 8 (2005) modules have a colon and number after them. Why? Pin
programmervb.netc++19-Apr-10 8:20
programmervb.netc++19-Apr-10 8:20 
QuestionA new introduction video Pin
moroandrea15-Apr-10 3:26
moroandrea15-Apr-10 3:26 
AnswerRe: A new introduction video Pin
Dave Kreskowiak15-Apr-10 6:44
mveDave Kreskowiak15-Apr-10 6:44 
AnswerRe: A new introduction video Pin
LloydA11115-Apr-10 14:44
LloydA11115-Apr-10 14:44 
Questiondisable users mailbox account from exchange server 2007 using vb.net Pin
myms.net15-Apr-10 2:48
myms.net15-Apr-10 2:48 
AnswerRe: disable users mailbox account from exchange server 2007 using vb.net Pin
Michel Godfroid15-Apr-10 7:36
Michel Godfroid15-Apr-10 7:36 
QuestionSELECT & COMPARE database column entries ! Pin
jeshra27915-Apr-10 1:06
jeshra27915-Apr-10 1:06 
AnswerRe: SELECT & COMPARE database column entries ! Pin
Simon_Whale15-Apr-10 1:10
Simon_Whale15-Apr-10 1:10 
AnswerRe: SELECT & COMPARE database column entries ! Pin
Michel Godfroid15-Apr-10 1:11
Michel Godfroid15-Apr-10 1:11 
AnswerRe: SELECT & COMPARE database column entries ! Pin
Kschuler15-Apr-10 7:51
Kschuler15-Apr-10 7:51 
QuestionAdvice: stored procedure parameters, lists of sqlparameters or using sqlparametercollections Pin
Simon_Whale15-Apr-10 0:19
Simon_Whale15-Apr-10 0:19 
AnswerRe: Advice: stored procedure parameters, lists of sqlparameters or using sqlparametercollections Pin
Dave Kreskowiak15-Apr-10 6:40
mveDave Kreskowiak15-Apr-10 6:40 
GeneralRe: Advice: stored procedure parameters, lists of sqlparameters or using sqlparametercollections Pin
Ray Cassick15-Apr-10 8:38
Ray Cassick15-Apr-10 8:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.