TipsOnLips.net

Your .net tips and tricks source

About the author

Author Name is someone.
E-mail me Send mail

Recent comments

Authors

Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2010


Open a system folder in C#

This is how to open a system folder in C#: 

string myDocspath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);

string windir = Environment.GetEnvironmentVariable("WINDIR");

System.Diagnostics.Process process = new System.Diagnostics.Process();

process.StartInfo.FileName = windir + @"\explorer.exe";

process.StartInfo.Arguments = myDocspath;

process.Start();

 

Source: http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/ce864f19-25c1-4601-a1ff-6019c703ccdb


Categories: C#
Posted by developer on Tuesday, September 30, 2008 8:16 AM
Permalink | Comments (8) | Post RSSRSS comment feed

Photo Sizes

1) Photo Sizes

2) Photo Printing Resolution

3) Paper Print Sizes


Posted by developer on Saturday, September 27, 2008 6:16 AM
Permalink | Comments (9) | Post RSSRSS comment feed

Looking for Smart Clients (CAB) Quick Starts / Examples

Quick Starts / Examples 

  1.   Microsoft Quick Starts.
  2.   Code Project (Download Quick Starts).
  3.   Hands-On tutoials from Code Project.

 

 Smart Clients Articles:

  1. Design of Workspaces MSDN
  2. Building Custom Workspaces MSDN
  3. New Guidance And Tools For Building Integrated Desktop Applications
  4. Deploy and Update Your Smart Client Projects Using a Central Server
  5. Displaying a Dialog Box in SCSF
  6. Centering A WindowWorkspace When Modal
  7. Rich Newman Blog
  8. Optimizing A Large Scale Software + Services Application

 


Categories: C# | Smart Clients
Posted by developer on Friday, September 19, 2008 11:45 AM
Permalink | Comments (1) | Post RSSRSS comment feed