Click here to Skip to main content
15,918,742 members
Home / Discussions / C#
   

C#

 
GeneralRe: Java -> C# Programming Problem , plz help ! Pin
wgarnett22-Mar-09 6:31
wgarnett22-Mar-09 6:31 
GeneralRe: Java -> C# Programming Problem , plz help ! Pin
0x3c022-Mar-09 6:48
0x3c022-Mar-09 6:48 
GeneralRe: Java -> C# Programming Problem , plz help ! Pin
wgarnett22-Mar-09 7:08
wgarnett22-Mar-09 7:08 
GeneralRe: Java -> C# Programming Problem , plz help ! Pin
0x3c022-Mar-09 8:33
0x3c022-Mar-09 8:33 
GeneralRe: Java -> C# Programming Problem , plz help ! Pin
wgarnett22-Mar-09 15:12
wgarnett22-Mar-09 15:12 
GeneralRe: Java -> C# Programming Problem , plz help ! Pin
0x3c022-Mar-09 21:03
0x3c022-Mar-09 21:03 
GeneralRe: Java -> C# Programming Problem , plz help ! Pin
wgarnett22-Mar-09 21:14
wgarnett22-Mar-09 21:14 
GeneralRe: Java -> C# Programming Problem , plz help ! Pin
0x3c023-Mar-09 5:41
0x3c023-Mar-09 5:41 
GeneralRe: Java -> C# Programming Problem , plz help ! Pin
wgarnett23-Mar-09 6:22
wgarnett23-Mar-09 6:22 
QuestionDrawing graphics in a new thread causes flicker Pin
_Martin_22-Mar-09 2:39
_Martin_22-Mar-09 2:39 
AnswerRe: Drawing graphics in a new thread causes flicker Pin
0x3c022-Mar-09 2:56
0x3c022-Mar-09 2:56 
QuestionHow do I get the Objects of the Solution Explorer(or General the Files of the Project) in an Visual Studio Integration Package Pin
Dromar22-Mar-09 2:10
Dromar22-Mar-09 2:10 
AnswerRe: How do I get the Objects of the Solution Explorer(or General the Files of the Project) in an Visual Studio Integration Package Pin
tech60322-Mar-09 3:59
tech60322-Mar-09 3:59 
AnswerRe: How do I get the Objects of the Solution Explorer(or General the Files of the Project) in an Visual Studio Integration Package Pin
Yusuf22-Mar-09 5:19
Yusuf22-Mar-09 5:19 
QuestionHow to Sort Dataset ? Pin
E_Gold21-Mar-09 22:33
E_Gold21-Mar-09 22:33 
AnswerRe: How to Sort Dataset ? Pin
Abhishek Sur22-Mar-09 0:04
professionalAbhishek Sur22-Mar-09 0:04 
GeneralRe: How to Sort Dataset ? Pin
E_Gold22-Mar-09 1:03
E_Gold22-Mar-09 1:03 
GeneralRe: How to Sort Dataset ? Pin
Henry Minute22-Mar-09 2:23
Henry Minute22-Mar-09 2:23 
Questionhow to split this text file Pin
rizchi21-Mar-09 21:29
rizchi21-Mar-09 21:29 
AnswerRe: how to split this text file Pin
Nagy Vilmos21-Mar-09 21:37
professionalNagy Vilmos21-Mar-09 21:37 
AnswerRe: how to split this text file Pin
Xmen Real 21-Mar-09 23:47
professional Xmen Real 21-Mar-09 23:47 
AnswerRe: how to split this text file Pin
#realJSOP22-Mar-09 0:08
professional#realJSOP22-Mar-09 0:08 
GeneralRe: how to split this text file Pin
rizchi22-Mar-09 12:19
rizchi22-Mar-09 12:19 
thanks for your reply. I've tried to do that method, but i got problem in parse the string. The string has a blank space delimiters. But, when i use this code, the string can't be splitted. Thanks for your help

string line = "";
string[] fields = null;
string errorInfo = String.Empty;
this.openFileDialog1.ShowDialog();
if (!(this.openFileDialog1.FileName == null))
this.textBox3.Text = this.openFileDialog1.FileName;
string txt = this.textBox3.Text;
DataTable tbl = new DataTable("InputFile");
try
{
using (StreamReader sr = new StreamReader(txt))
{
// first line has headers
if ((line = sr.ReadLine()) != null)
{
fields = line.Split(new char[] { '\x20', '\x20' }, StringSplitOptions.RemoveEmptyEntries);
foreach (string s in fields)
{
tbl.Columns.Add(s);
}
}
else
{
// it's empty, that's an error
throw new ApplicationException("The data provided is not in a valid format.");
}
// fill the rest of the table; positional
while ((line = sr.ReadLine()) != null)
{
DataRow row = tbl.NewRow();
fields = line.Split(new char[] { '\x20', '\x20' }, StringSplitOptions.RemoveEmptyEntries);

int i = 0;
foreach (string s in fields)
{
row[i] = s;
i++;
}
tbl.Rows.Add(row);

}
}
}
catch (Exception)
{
throw new ApplicationException("There was an error attempting to read the data. Please verify the data provided is in a valid format, is tab-delimited text, and includes only ONE header line.");
}
//return tbl;
this.dataGridView1.DataSource = tbl;
AnswerRe: how to split this text file Pin
Fayu23-Mar-09 4:41
Fayu23-Mar-09 4:41 
Question[Message Deleted] Pin
rizchi21-Mar-09 21:25
rizchi21-Mar-09 21:25 

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.