Click here to Skip to main content
15,881,803 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionStarting program with a command line parameter Pin
KreativeKai10-May-12 4:53
professionalKreativeKai10-May-12 4:53 
AnswerRe: Starting program with a command line parameter Pin
Dave Kreskowiak10-May-12 9:20
mveDave Kreskowiak10-May-12 9:20 
GeneralRe: Starting program with a command line parameter Pin
KreativeKai10-May-12 9:29
professionalKreativeKai10-May-12 9:29 
GeneralRe: Starting program with a command line parameter Pin
Dave Kreskowiak10-May-12 12:53
mveDave Kreskowiak10-May-12 12:53 
GeneralRe: Starting program with a command line parameter Pin
KreativeKai11-May-12 1:29
professionalKreativeKai11-May-12 1:29 
GeneralRe: Starting program with a command line parameter Pin
Dave Kreskowiak11-May-12 1:38
mveDave Kreskowiak11-May-12 1:38 
GeneralRe: Starting program with a command line parameter Pin
KreativeKai11-May-12 1:57
professionalKreativeKai11-May-12 1:57 
AnswerRe: Starting program with a command line parameter Pin
Sasha Laurel15-May-12 13:40
Sasha Laurel15-May-12 13:40 
I am not sure if this helps you, but I did find a way to accept parameters when launching a clickonce application. I activated the app by creating a new process using the uri to to the *.application file appending my arguments in the query string.

I am using VB10, I don't know if it will be the same for you if you are using something different.

From My Project -> Publish (tab) -> Options (button) -> Manifests
"Block application from being activated via a URL" should be UNchecked
"Allow URL parameters to be passed to application" should be checked

After you publish like that you can launch the other app by url including a query string (http://MyDomain.com/MyFolder/MyApp.application?MyParamValueA=1&MyParamValueB=2):

When the application is launched this way the query string arguments will not appear with the regular command line arguments, but instead need to be pulled from .Net like this (make sure you add null checks):

VB
System.AppDomain.CurrentDomain.SetupInformation.ActivationArguments.ActivationData(0)

AnswerRe: Starting program with a command line parameter Pin
pcusr806-Jun-12 3:57
pcusr806-Jun-12 3:57 
QuestionDRAG & DROP LABELS SWAP Pin
User 871522210-May-12 0:57
professionalUser 871522210-May-12 0:57 
AnswerRe: DRAG & DROP LABELS SWAP Pin
Dave Kreskowiak10-May-12 2:21
mveDave Kreskowiak10-May-12 2:21 
AnswerRe: DRAG & DROP LABELS SWAP Pin
User 871522210-May-12 23:11
professionalUser 871522210-May-12 23:11 
QuestionGet currency conversion from website Pin
wouterv819-May-12 13:33
wouterv819-May-12 13:33 
AnswerRe: Get currency conversion from website Pin
Dave Kreskowiak9-May-12 18:44
mveDave Kreskowiak9-May-12 18:44 
QuestionThis row already belongs to this table error Pin
rusydan.khir9-May-12 7:03
rusydan.khir9-May-12 7:03 
AnswerRe: This row already belongs to this table error Pin
Dave Kreskowiak9-May-12 10:23
mveDave Kreskowiak9-May-12 10:23 
GeneralRe: This row already belongs to this table error Pin
rusydan.khir9-May-12 18:27
rusydan.khir9-May-12 18:27 
GeneralRe: This row already belongs to this table error Pin
Dave Kreskowiak9-May-12 18:46
mveDave Kreskowiak9-May-12 18:46 
GeneralRe: This row already belongs to this table error Pin
rusydan.khir9-May-12 18:49
rusydan.khir9-May-12 18:49 
GeneralRe: This row already belongs to this table error Pin
rusydan.khir9-May-12 19:01
rusydan.khir9-May-12 19:01 
Questionstrange behavior on adding controls to a form Pin
Ahmad_kelany8-May-12 22:22
Ahmad_kelany8-May-12 22:22 
AnswerRe: strange behavior on adding controls to a form Pin
Dave Kreskowiak9-May-12 10:20
mveDave Kreskowiak9-May-12 10:20 
QuestionHow can I get a sender object of a control handle in VB.net? Pin
Member 37460768-May-12 13:27
Member 37460768-May-12 13:27 
AnswerRe: How can I get a sender object of a control handle in VB.net? Pin
Midnight Ahri8-May-12 15:16
Midnight Ahri8-May-12 15:16 
GeneralRe: How can I get a sender object of a control handle in VB.net? Pin
Member 37460769-May-12 6:55
Member 37460769-May-12 6:55 

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.