Click here to Skip to main content
15,924,367 members
Home / Discussions / C#
   

C#

 
AnswerRe: Problems with Reading Data from Serial Port (from .NET 2.0 framework) Pin
PS@Codeproj6-Mar-07 19:33
PS@Codeproj6-Mar-07 19:33 
AnswerRe: Problems with Reading Data from Serial Port (from .NET 2.0 framework) Pin
pbraun7-Mar-07 3:12
pbraun7-Mar-07 3:12 
Questionhaving user thread update listViewItem.BackColor Pin
yccheok6-Mar-07 13:46
yccheok6-Mar-07 13:46 
Questionhow to increase the height of the Row in ListView? Pin
Khoramdin6-Mar-07 13:04
Khoramdin6-Mar-07 13:04 
AnswerRe: how to increase the height of the Row in ListView? Pin
Ravi Bhavnani6-Mar-07 17:11
professionalRavi Bhavnani6-Mar-07 17:11 
Questionaccessing a file on Local network Pin
wildpankaj6-Mar-07 12:37
wildpankaj6-Mar-07 12:37 
AnswerRe: accessing a file on Local network Pin
Ravi Bhavnani6-Mar-07 17:17
professionalRavi Bhavnani6-Mar-07 17:17 
AnswerRe: accessing a file on Local network Pin
Keshav V. Kamat6-Mar-07 17:25
Keshav V. Kamat6-Mar-07 17:25 
He Pankaj,

you can use the open file dialog as always. If you are able to access any computer from that machine, then this procedure will work

OpenFileDialog ofn = new OpenFileDialog();
ofn.Filter = "XML Files (*.xml)|*.xml";
ofn.Title = "Type File";

This opens a file dialog, where you get to choose the file of your choice. This file dialogue is for xml files. LikeWise you can set which files you want to choose. be careful of the extension though.

continue it with

if (ofn.ShowDialog() == DialogResult.Cancel)
goto Quit;

"Quit" defines a label, used in case, the user chooses cancel buttion of the open file dialog.

i hope this helps. Smile | :)


Keshav Kamat
India
AnswerRe: accessing a file on Local network Pin
Keshav V. Kamat6-Mar-07 17:32
Keshav V. Kamat6-Mar-07 17:32 
Questionsystem.diagnostics.process help Pin
JMichael24686-Mar-07 11:57
JMichael24686-Mar-07 11:57 
AnswerRe: system.diagnostics.process help Pin
Dave Kreskowiak6-Mar-07 17:18
mveDave Kreskowiak6-Mar-07 17:18 
GeneralRe: system.diagnostics.process help Pin
JMichael24687-Mar-07 2:55
JMichael24687-Mar-07 2:55 
GeneralRe: system.diagnostics.process help Pin
Dave Kreskowiak7-Mar-07 12:44
mveDave Kreskowiak7-Mar-07 12:44 
GeneralRe: system.diagnostics.process help Pin
JMichael24688-Mar-07 3:48
JMichael24688-Mar-07 3:48 
AnswerRe: system.diagnostics.process help Pin
Ravi Bhavnani6-Mar-07 17:20
professionalRavi Bhavnani6-Mar-07 17:20 
GeneralRe: system.diagnostics.process help Pin
JMichael24687-Mar-07 4:10
JMichael24687-Mar-07 4:10 
QuestionImage in DataGridView Pin
Nooie6-Mar-07 11:21
Nooie6-Mar-07 11:21 
QuestionRetrieving Pin
hadad6-Mar-07 11:20
hadad6-Mar-07 11:20 
AnswerRe: Retrieving Pin
Guffa6-Mar-07 13:35
Guffa6-Mar-07 13:35 
Questiondraw finest dot on the screen..... Pin
samreengr86-Mar-07 11:09
samreengr86-Mar-07 11:09 
AnswerPixels are the finest dots Pin
Ennis Ray Lynch, Jr.6-Mar-07 12:54
Ennis Ray Lynch, Jr.6-Mar-07 12:54 
GeneralRe: Pixels are the finest dots Pin
samreengr87-Mar-07 23:58
samreengr87-Mar-07 23:58 
GeneralRe: Pixels are the finest dots Pin
Ennis Ray Lynch, Jr.8-Mar-07 12:59
Ennis Ray Lynch, Jr.8-Mar-07 12:59 
QuestionMemory Management, and NET 2.0 upgrading Pin
sjdevo3gsr6-Mar-07 10:48
sjdevo3gsr6-Mar-07 10:48 
AnswerRe: Memory Management, and NET 2.0 upgrading Pin
Ennis Ray Lynch, Jr.6-Mar-07 12:58
Ennis Ray Lynch, Jr.6-Mar-07 12:58 

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.