Click here to Skip to main content
15,891,473 members
Home / Discussions / C#
   

C#

 
QuestionIterate GAC Assemblies Pin
paas20-Feb-07 7:08
paas20-Feb-07 7:08 
QuestionVirus Scaning of Files Pin
Muhammad Nauman Yousuf20-Feb-07 6:47
Muhammad Nauman Yousuf20-Feb-07 6:47 
QuestionSave File Dialog with uneditable directory path Pin
aei_totten20-Feb-07 6:18
aei_totten20-Feb-07 6:18 
AnswerRe: Save File Dialog with uneditable directory path Pin
Dave Kreskowiak20-Feb-07 6:46
mveDave Kreskowiak20-Feb-07 6:46 
QuestionProblem with context menu Pin
Muhammad Nauman Yousuf20-Feb-07 6:16
Muhammad Nauman Yousuf20-Feb-07 6:16 
AnswerRe: Problem with context menu Pin
Dave Kreskowiak20-Feb-07 7:12
mveDave Kreskowiak20-Feb-07 7:12 
GeneralRe: Problem with context menu Pin
Muhammad Nauman Yousuf20-Feb-07 20:36
Muhammad Nauman Yousuf20-Feb-07 20:36 
GeneralRe: Problem with context menu Pin
Dave Kreskowiak21-Feb-07 4:28
mveDave Kreskowiak21-Feb-07 4:28 
M. Nauman Yousuf wrote:
Now when I select multiple files, it opens up multiple console windows displaying path of each file in each console window.


Of course it does! That's how Explorer works when multiple items are selected. Explorer will launch the command line you gave it in the Registry with each and every file you selected, seperatly. Like this:
myapp.exe filename1.txt
myapp.exe filename2.txt
myapp.exe filename3.txt
myapp.exe filename4.txt

It will NOT do this:
myapp.exe filename1.txt filename2.txt filename3.txt filename4.txt

It's up to you to write your application to look for previous instances and pass any data back to the initial instance. Google for "C# Single Instance app" for examples. There's even a few articles about it right here on CodeProject.


Dave Kreskowiak
Microsoft MVP - Visual Basic


QuestionC# equivalent for ShowDropDown? Pin
kozu20-Feb-07 5:57
kozu20-Feb-07 5:57 
AnswerRe: C# equivalent for ShowDropDown? Pin
Martin#20-Feb-07 6:04
Martin#20-Feb-07 6:04 
GeneralRe: C# equivalent for ShowDropDown? Pin
kozu20-Feb-07 6:43
kozu20-Feb-07 6:43 
GeneralRe: C# equivalent for ShowDropDown? Pin
Martin#20-Feb-07 7:49
Martin#20-Feb-07 7:49 
GeneralRe: C# equivalent for ShowDropDown? Pin
kozu20-Feb-07 8:27
kozu20-Feb-07 8:27 
GeneralRe: C# equivalent for ShowDropDown? Pin
Martin#20-Feb-07 8:50
Martin#20-Feb-07 8:50 
GeneralRe: C# equivalent for ShowDropDown? Pin
kozu20-Feb-07 9:55
kozu20-Feb-07 9:55 
GeneralRe: C# equivalent for ShowDropDown? Pin
Martin#20-Feb-07 20:58
Martin#20-Feb-07 20:58 
QuestionVariable problem Pin
truly_pringled20-Feb-07 5:35
truly_pringled20-Feb-07 5:35 
AnswerRe: Variable problem Pin
kubben20-Feb-07 5:49
kubben20-Feb-07 5:49 
QuestionMultiple Monitors Pin
ricmil4220-Feb-07 5:10
ricmil4220-Feb-07 5:10 
AnswerRe: Multiple Monitors Pin
Martin#20-Feb-07 5:12
Martin#20-Feb-07 5:12 
GeneralRe: Multiple Monitors Pin
Jakub Mller20-Feb-07 5:35
Jakub Mller20-Feb-07 5:35 
AnswerRe: Multiple Monitors Pin
ricmil4220-Feb-07 6:14
ricmil4220-Feb-07 6:14 
Questionmobile Pin
B.A20-Feb-07 4:48
B.A20-Feb-07 4:48 
QuestionContext menu Pin
CodeItWell20-Feb-07 4:18
CodeItWell20-Feb-07 4:18 
AnswerRe: Context menu Pin
Martin#20-Feb-07 4:34
Martin#20-Feb-07 4:34 

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.