Click here to Skip to main content
15,909,091 members
Home / Discussions / C#
   

C#

 
GeneralRe: problems with process.start methode Pin
Wendelius12-Aug-08 12:02
mentorWendelius12-Aug-08 12:02 
GeneralRe: problems with process.start methode Pin
stephan_00712-Aug-08 12:06
stephan_00712-Aug-08 12:06 
GeneralRe: problems with process.start methode Pin
Wendelius12-Aug-08 12:19
mentorWendelius12-Aug-08 12:19 
QuestionRe: problems with process.start methode Pin
Mark Salsbery12-Aug-08 12:51
Mark Salsbery12-Aug-08 12:51 
JokeRe: problems with process.start methode Pin
blackjack215012-Aug-08 20:18
blackjack215012-Aug-08 20:18 
GeneralRe: problems with process.start methode Pin
stephan_00712-Aug-08 23:59
stephan_00712-Aug-08 23:59 
QuestionRe: problems with process.start methode Pin
Mark Salsbery13-Aug-08 5:58
Mark Salsbery13-Aug-08 5:58 
GeneralRe: problems with process.start methode Pin
Wendelius13-Aug-08 11:06
mentorWendelius13-Aug-08 11:06 
You could test one thing just in case:
- define both parameters as string and assign them
- put the string to clipboard
- paste the text to command prompt and execute it

If the pdf is opening, it's clear that the command is valid.

For example:
string filename = "\"C:\\Program Files\\Adobe\\Reader 8.0\\Reader\\AcroRd32.exe\"";
string arguments = "\"C:\\sourcedir\\somefile.pdf\"";
Clipboard.Clear();
Clipboard.SetText(filename + " " + arguments);
System.Diagnostics.Process.Start(filename, arguments);
//paste to command prompt and execute


Mika
QuestionHow can we understand what in clipboard is ? Pin
Mohammad Dayyan12-Aug-08 10:32
Mohammad Dayyan12-Aug-08 10:32 
AnswerRe: How can we understand what in clipboard is ? Pin
Wendelius12-Aug-08 10:43
mentorWendelius12-Aug-08 10:43 
QuestionHow can I do all columns ' items selectable in ListView ? [modified] Pin
Mohammad Dayyan12-Aug-08 10:12
Mohammad Dayyan12-Aug-08 10:12 
AnswerRe: How can I do all columns ' items selectable in ListView ? Pin
Manas Bhardwaj12-Aug-08 10:20
professionalManas Bhardwaj12-Aug-08 10:20 
GeneralRe: How can I do all columns ' items selectable in ListView ? Pin
Mohammad Dayyan12-Aug-08 10:23
Mohammad Dayyan12-Aug-08 10:23 
AnswerRe: How can I do all columns ' items selectable in ListView ? Pin
Wendelius12-Aug-08 10:46
mentorWendelius12-Aug-08 10:46 
GeneralRe: How can I do all columns ' items selectable in ListView ? Pin
Mohammad Dayyan12-Aug-08 11:05
Mohammad Dayyan12-Aug-08 11:05 
GeneralRe: How can I do all columns ' items selectable in ListView ? Pin
Wendelius12-Aug-08 11:13
mentorWendelius12-Aug-08 11:13 
GeneralRe: How can I do all columns ' items selectable in ListView ? Pin
Mohammad Dayyan12-Aug-08 11:17
Mohammad Dayyan12-Aug-08 11:17 
GeneralRe: How can I do all columns ' items selectable in ListView ? Pin
Wendelius12-Aug-08 11:20
mentorWendelius12-Aug-08 11:20 
GeneralRe: How can I do all columns ' items selectable in ListView ? Pin
Mohammad Dayyan13-Aug-08 4:18
Mohammad Dayyan13-Aug-08 4:18 
GeneralRe: How can I do all columns ' items selectable in ListView ? Pin
Wendelius13-Aug-08 6:41
mentorWendelius13-Aug-08 6:41 
GeneralRe: How can I do all columns ' items selectable in ListView ? Pin
Mohammad Dayyan13-Aug-08 8:55
Mohammad Dayyan13-Aug-08 8:55 
GeneralRe: How can I do all columns ' items selectable in ListView ? Pin
Wendelius13-Aug-08 9:01
mentorWendelius13-Aug-08 9:01 
Questionclass object properties Pin
netJP12L12-Aug-08 8:59
netJP12L12-Aug-08 8:59 
AnswerRe: class object properties Pin
Wendelius12-Aug-08 9:09
mentorWendelius12-Aug-08 9:09 
GeneralRe: class object properties Pin
netJP12L12-Aug-08 9:29
netJP12L12-Aug-08 9:29 

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.