Click here to Skip to main content
15,912,400 members
Home / Discussions / C#
   

C#

 
GeneralRe: How 2 Run exe from Network ? Pin
led mike14-Nov-07 10:40
led mike14-Nov-07 10:40 
GeneralRe: How 2 Run exe from Network ? Pin
Dave Kreskowiak14-Nov-07 10:56
mveDave Kreskowiak14-Nov-07 10:56 
GeneralRe: How 2 Run exe from Network ? Pin
led mike14-Nov-07 11:07
led mike14-Nov-07 11:07 
QuestionProblems at creating a WordDocument (Unwanted formation) Pin
Dirk Mahlcke14-Nov-07 7:22
Dirk Mahlcke14-Nov-07 7:22 
QuestionHow to paint UserControl or Form directly on host HDC ? Pin
gordon2414-Nov-07 6:08
gordon2414-Nov-07 6:08 
AnswerRe: How to paint UserControl or Form directly on host HDC ? Pin
Skippums14-Nov-07 11:58
Skippums14-Nov-07 11:58 
Questionhow to read from idx file Pin
SABhatti14-Nov-07 5:32
SABhatti14-Nov-07 5:32 
AnswerRe: how to read from idx file Pin
led mike14-Nov-07 7:54
led mike14-Nov-07 7:54 
GeneralRe: how to read from idx file Pin
SABhatti14-Nov-07 8:23
SABhatti14-Nov-07 8:23 
GeneralRe: how to read from idx file Pin
led mike14-Nov-07 8:36
led mike14-Nov-07 8:36 
GeneralRe: how to read from idx file Pin
SABhatti14-Nov-07 8:53
SABhatti14-Nov-07 8:53 
GeneralRe: how to read from idx file Pin
led mike14-Nov-07 10:37
led mike14-Nov-07 10:37 
GeneralRe: how to read from idx file Pin
Dave Kreskowiak14-Nov-07 10:58
mveDave Kreskowiak14-Nov-07 10:58 
GeneralRe: how to read from idx file Pin
SABhatti14-Nov-07 11:12
SABhatti14-Nov-07 11:12 
GeneralRe: how to read from idx file Pin
SABhatti14-Nov-07 11:11
SABhatti14-Nov-07 11:11 
QuestionWord Object Model Pin
MarkMokris14-Nov-07 5:23
MarkMokris14-Nov-07 5:23 
AnswerRe: Word Object Model Pin
Slacker00714-Nov-07 5:45
professionalSlacker00714-Nov-07 5:45 
GeneralRe: Word Object Model Pin
Giorgi Dalakishvili14-Nov-07 8:39
mentorGiorgi Dalakishvili14-Nov-07 8:39 
Questiondatagridview - realtime changes Pin
arkiboys14-Nov-07 5:17
arkiboys14-Nov-07 5:17 
AnswerRe: datagridview - realtime changes Pin
il_masacratore14-Nov-07 6:55
il_masacratore14-Nov-07 6:55 
AnswerRe: datagridview - realtime changes Pin
jchalfant14-Nov-07 7:04
jchalfant14-Nov-07 7:04 
Questionopen a save as dialog box Pin
caradri14-Nov-07 5:05
caradri14-Nov-07 5:05 
AnswerRe: open a save as dialog box Pin
Justin Perez14-Nov-07 5:13
Justin Perez14-Nov-07 5:13 
SaveFileDialog dlg = new SaveFileDialog();

if (DialogResult.OK == dlg.ShowDialog())
{
  MessageBox.Show(dlg.FileName);
}


That will display a basic
SaveFileDialog<code> and when the user saves the file, it will display the full path to the file. You shoulld be able to figure out how to change all the different bells and whistles from there. <br />
<br />
<div class="ForumSig">"If an Indian asked a programming question in the forest, would it still be urgent?" - John Simmons / outlaw programmer <br />
<br />
I get all the news I need from the weather report - Paul Simon (from "The Only Living Boy in New York")</div>

GeneralRe: open a save as dialog box Pin
Vasudevan Deepak Kumar14-Nov-07 5:18
Vasudevan Deepak Kumar14-Nov-07 5:18 
GeneralRe: open a save as dialog box Pin
Justin Perez14-Nov-07 5:59
Justin Perez14-Nov-07 5:59 

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.