Click here to Skip to main content
15,892,517 members
Home / Discussions / C#
   

C#

 
AnswerRe: Is this code Horror ? Pin
Luc Pattyn11-Apr-10 0:28
sitebuilderLuc Pattyn11-Apr-10 0:28 
GeneralRe: Is this code Horror ? Pin
Mohammad Dayyan11-Apr-10 0:30
Mohammad Dayyan11-Apr-10 0:30 
GeneralRe: Is this code Horror ? Pin
Luc Pattyn11-Apr-10 0:43
sitebuilderLuc Pattyn11-Apr-10 0:43 
GeneralRe: Is this code Horror ? Pin
Mohammad Dayyan11-Apr-10 0:49
Mohammad Dayyan11-Apr-10 0:49 
GeneralRe: Is this code Horror ? Pin
Luc Pattyn11-Apr-10 0:53
sitebuilderLuc Pattyn11-Apr-10 0:53 
GeneralRe: Is this code Horror ? Pin
tangname11-Apr-10 1:27
tangname11-Apr-10 1:27 
QuestionHow to call "Desktop Property" screen in C# Pin
pcphuc10-Apr-10 22:56
pcphuc10-Apr-10 22:56 
AnswerRe: How to call "Desktop Property" screen in C# Pin
Ravi Bhavnani10-Apr-10 23:05
professionalRavi Bhavnani10-Apr-10 23:05 
This should do it:
Process p = new Process();
p.StartInfo.FileName = @"C:\WINDOWS\system32\rundll32.exe";
p.StartInfo.Arguments = "shell32.dll,Control_RunDLL desk.cpl,,3";
p.Start();
Of course you should compute the WinSys32 path instead of assuming the string shown in the code fragment.  For other RUNDLL32 parameters, see this[^] link.

/ravi
My new year resolution: 2048 x 1536
Home | Articles | My .NET bits | Freeware

ravib(at)ravib(dot)com

GeneralRe: How to call "Desktop Property" screen in C# Pin
pcphuc10-Apr-10 23:09
pcphuc10-Apr-10 23:09 
AnswerRe: How to call "Desktop Property" screen in C# Pin
Abhinav S10-Apr-10 23:09
Abhinav S10-Apr-10 23:09 
AnswerRe: How to call "Desktop Property" screen in C# Pin
Luc Pattyn10-Apr-10 23:11
sitebuilderLuc Pattyn10-Apr-10 23:11 
QuestionC# Help Pin
jojoba201110-Apr-10 18:04
jojoba201110-Apr-10 18:04 
AnswerRe: C# Help Pin
PIEBALDconsult10-Apr-10 18:12
mvePIEBALDconsult10-Apr-10 18:12 
QuestionRe: C# Help Pin
jojoba201110-Apr-10 18:21
jojoba201110-Apr-10 18:21 
AnswerRe: C# Help Pin
PIEBALDconsult10-Apr-10 19:07
mvePIEBALDconsult10-Apr-10 19:07 
AnswerRe: C# Help Pin
Jens Meyer10-Apr-10 19:18
Jens Meyer10-Apr-10 19:18 
AnswerRe: C# Help Pin
Eddy Vluggen10-Apr-10 22:37
professionalEddy Vluggen10-Apr-10 22:37 
GeneralRe: C# Help Pin
PIEBALDconsult11-Apr-10 4:29
mvePIEBALDconsult11-Apr-10 4:29 
GeneralRe: C# Help Pin
Eddy Vluggen11-Apr-10 5:00
professionalEddy Vluggen11-Apr-10 5:00 
AnswerRe: C# Help Pin
Ravi Bhavnani10-Apr-10 23:09
professionalRavi Bhavnani10-Apr-10 23:09 
QuestionWMI Win32_Product speed.... Pin
Jacob Dixon10-Apr-10 16:36
Jacob Dixon10-Apr-10 16:36 
AnswerRe: WMI Win32_Product speed.... Pin
Dan Mos10-Apr-10 20:09
Dan Mos10-Apr-10 20:09 
AnswerRe: WMI Win32_Product speed.... Pin
Eddy Vluggen10-Apr-10 22:29
professionalEddy Vluggen10-Apr-10 22:29 
GeneralRe: WMI Win32_Product speed.... Pin
Jacob Dixon11-Apr-10 5:05
Jacob Dixon11-Apr-10 5:05 
GeneralRe: WMI Win32_Product speed.... Pin
Eddy Vluggen11-Apr-10 5:15
professionalEddy Vluggen11-Apr-10 5:15 

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.