Click here to Skip to main content
15,899,474 members
Home / Discussions / C#
   

C#

 
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 
AnswerRe: open a save as dialog box Pin
Vasudevan Deepak Kumar14-Nov-07 5:17
Vasudevan Deepak Kumar14-Nov-07 5:17 
QuestionCall static method of a known Type Pin
Stevo Z14-Nov-07 4:35
Stevo Z14-Nov-07 4:35 
AnswerRe: Call static method of a known Type Pin
Mr. Candyman14-Nov-07 4:53
Mr. Candyman14-Nov-07 4:53 
GeneralRe: Call static method of a known Type Pin
Stevo Z14-Nov-07 4:56
Stevo Z14-Nov-07 4:56 
GeneralRe: Call static method of a known Type Pin
Mr. Candyman14-Nov-07 5:38
Mr. Candyman14-Nov-07 5:38 
GeneralRe: Call static method of a known Type Pin
Stevo Z14-Nov-07 5:51
Stevo Z14-Nov-07 5:51 
GeneralRe: Call static method of a known Type Pin
Mr. Candyman14-Nov-07 6:00
Mr. Candyman14-Nov-07 6:00 
GeneralRe: Call static method of a known Type Pin
Stevo Z14-Nov-07 6:10
Stevo Z14-Nov-07 6:10 
AnswerThe cleaner method Pin
Ennis Ray Lynch, Jr.14-Nov-07 9:26
Ennis Ray Lynch, Jr.14-Nov-07 9:26 
QuestionBit Testing and operator unchecked() Pin
Jeffrey Walton14-Nov-07 4:35
Jeffrey Walton14-Nov-07 4:35 
AnswerRe: Bit Testing and operator unchecked() Pin
Luc Pattyn14-Nov-07 5:08
sitebuilderLuc Pattyn14-Nov-07 5:08 
GeneralRe: Bit Testing and operator unchecked() Pin
Jeffrey Walton14-Nov-07 5:41
Jeffrey Walton14-Nov-07 5:41 
GeneralRe: Bit Testing and operator unchecked() Pin
Luc Pattyn14-Nov-07 5:52
sitebuilderLuc Pattyn14-Nov-07 5:52 
GeneralRe: Bit Testing and operator unchecked() Pin
Judah Gabriel Himango14-Nov-07 5:54
sponsorJudah Gabriel Himango14-Nov-07 5:54 
GeneralRe: Bit Testing and operator unchecked() Pin
Jeffrey Walton14-Nov-07 6:09
Jeffrey Walton14-Nov-07 6:09 

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.