Click here to Skip to main content
15,885,757 members
Home / Discussions / C#
   

C#

 
GeneralRe: openFileDialog win form Pin
arkiboys28-Jul-08 1:58
arkiboys28-Jul-08 1:58 
GeneralRe: openFileDialog win form Pin
sumit703428-Jul-08 2:20
sumit703428-Jul-08 2:20 
GeneralRe: openFileDialog win form Pin
Thomas Stockwell28-Jul-08 1:35
professionalThomas Stockwell28-Jul-08 1:35 
QuestionHow to draw a status bar panel ? Pin
reallyneedhelp28-Jul-08 0:48
reallyneedhelp28-Jul-08 0:48 
AnswerRe: How to draw a status bar panel ? Pin
Harvey Saayman28-Jul-08 0:55
Harvey Saayman28-Jul-08 0:55 
AnswerRe: How to draw a status bar panel ? Pin
Thomas Stockwell28-Jul-08 1:36
professionalThomas Stockwell28-Jul-08 1:36 
QuestionPrinter service using c#.net Pin
balu1234528-Jul-08 0:19
balu1234528-Jul-08 0:19 
AnswerRe: Printer service using c#.net Pin
teejayem28-Jul-08 2:54
teejayem28-Jul-08 2:54 
You can use the PrinterSettings[^] property to check the printer name that the user selected.

PrintDialog pd = new PrintDialog();

if (pd.ShowDialog() == DialogResult.OK)
{
    if (pd.PrinterSettings.PrinterName == @"\\unc-path\myPrinter\")
    {
        pd.PrinterSettings.PrinterName == @"\\new-unc-path\newPrinter";
    }
}


Don't be overcome by evil, but overcome evil with good

Questioncreating page in the same window Pin
ktamanna28-Jul-08 0:13
ktamanna28-Jul-08 0:13 
AnswerRe: creating page in the same window Pin
Harvey Saayman28-Jul-08 1:01
Harvey Saayman28-Jul-08 1:01 
GeneralRe: creating page in the same window Pin
ktamanna30-Jul-08 18:24
ktamanna30-Jul-08 18:24 
AnswerRe: creating page in the same window Pin
nelsonpaixao28-Jul-08 13:29
nelsonpaixao28-Jul-08 13:29 
QuestionDateTime issue in PDA application Pin
neer127-Jul-08 23:47
neer127-Jul-08 23:47 
AnswerRe: DateTime issue in PDA application Pin
DaveyM6928-Jul-08 0:33
professionalDaveyM6928-Jul-08 0:33 
QuestionLanguage encoding problem Pin
Muammar©27-Jul-08 23:12
Muammar©27-Jul-08 23:12 
AnswerRe: Language encoding problem Pin
Frank Horn27-Jul-08 23:53
Frank Horn27-Jul-08 23:53 
GeneralRe: Language encoding problem Pin
Muammar©28-Jul-08 0:02
Muammar©28-Jul-08 0:02 
GeneralRe: Language encoding problem Pin
Frank Horn28-Jul-08 0:50
Frank Horn28-Jul-08 0:50 
GeneralRe: Language encoding problem Pin
Muammar©28-Jul-08 1:32
Muammar©28-Jul-08 1:32 
QuestionAccessing a directory on server drive Pin
punkymt127-Jul-08 21:34
punkymt127-Jul-08 21:34 
AnswerRe: Accessing a directory on server drive Pin
Muhammad Gouda27-Jul-08 21:39
Muhammad Gouda27-Jul-08 21:39 
GeneralRe: Accessing a directory on server drive Pin
punkymt127-Jul-08 21:46
punkymt127-Jul-08 21:46 
AnswerRe: Accessing a directory on server drive Pin
Harvey Saayman27-Jul-08 21:47
Harvey Saayman27-Jul-08 21:47 
AnswerRe: Accessing a directory on server drive Pin
stancrm27-Jul-08 21:48
stancrm27-Jul-08 21:48 
GeneralRe: Accessing a directory on server drive Pin
punkymt127-Jul-08 22:31
punkymt127-Jul-08 22:31 

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.