Click here to Skip to main content
15,887,303 members
Home / Discussions / C#
   

C#

 
QuestionHow to ceate chart report using Crystalreport in C#? Pin
uranus122524-Sep-07 15:24
uranus122524-Sep-07 15:24 
QuestionOpenOffice Database programming with c# [modified] Pin
Dino2Dino24-Sep-07 13:54
Dino2Dino24-Sep-07 13:54 
AnswerRe: OpenOffice Database programming with c# Pin
Paul Conrad26-Sep-07 17:53
professionalPaul Conrad26-Sep-07 17:53 
QuestionProblem in deployment Pin
Shuaib wasif khan24-Sep-07 13:21
Shuaib wasif khan24-Sep-07 13:21 
AnswerRe: Problem in deployment Pin
Nouman Bhatti24-Sep-07 22:09
Nouman Bhatti24-Sep-07 22:09 
GeneralRe: Problem in deployment Pin
Shuaib wasif khan25-Sep-07 9:20
Shuaib wasif khan25-Sep-07 9:20 
Questionhaving problem in crystal report Pin
Shuaib wasif khan24-Sep-07 13:12
Shuaib wasif khan24-Sep-07 13:12 
QuestionUnhandled Exception Pin
T4AMD24-Sep-07 12:50
T4AMD24-Sep-07 12:50 
private void button1_Click(object sender, System.EventArgs e)
{
System.Data.OleDb.OleDbDataReader myReader;
string CustomerString;
oleDbConnection1.Open();
myReader=oleDbCommand1.ExecuteReader();//"I get the error here "System.InvalidOperationException:No data exists for the row/column"
//But I just rechecked the data inside the Access database file and data is there.
try
{
//Retrieves the first and last names from Customers and
//concatenates them into a single string
CustomerString=myReader[1].ToString() + " " +
myReader[2].ToString();
//adds the string to the ListBox
listBox1.Items.Add(CustomerString);
}
catch(Exception e1)
{
MessageBox.Show(e1.ToString());
}
myReader.Close();
oleDbConnection1.Close();

}
AnswerRe: Unhandled Exception Pin
Christian Graus24-Sep-07 13:02
protectorChristian Graus24-Sep-07 13:02 
QuestionRe: Unhandled Exception Pin
T4AMD24-Sep-07 13:07
T4AMD24-Sep-07 13:07 
AnswerRe: Unhandled Exception Pin
Christian Graus24-Sep-07 18:29
protectorChristian Graus24-Sep-07 18:29 
AnswerRe: Unhandled Exception Pin
Paul Conrad24-Sep-07 13:15
professionalPaul Conrad24-Sep-07 13:15 
GeneralRe: Unhandled Exception Pin
T4AMD24-Sep-07 13:31
T4AMD24-Sep-07 13:31 
GeneralRe: Unhandled Exception Pin
Paul Conrad24-Sep-07 13:32
professionalPaul Conrad24-Sep-07 13:32 
QuestionRe: Unhandled Exception Pin
T4AMD24-Sep-07 13:42
T4AMD24-Sep-07 13:42 
QuestionCrystal Report viewer Tree Pin
merwa24-Sep-07 11:53
merwa24-Sep-07 11:53 
AnswerRe: Crystal Report viewer Tree Pin
Shuaib wasif khan24-Sep-07 13:35
Shuaib wasif khan24-Sep-07 13:35 
GeneralRe: Crystal Report viewer Tree Pin
Shuaib wasif khan24-Sep-07 13:38
Shuaib wasif khan24-Sep-07 13:38 
QuestionCounter? Please? Pin
MasterSharp24-Sep-07 10:56
MasterSharp24-Sep-07 10:56 
AnswerRe: Counter? Pin
I Believe In GOD24-Sep-07 11:30
I Believe In GOD24-Sep-07 11:30 
GeneralRe: Counter? Pin
MasterSharp24-Sep-07 11:58
MasterSharp24-Sep-07 11:58 
GeneralRe: Counter? Pin
MasterSharp24-Sep-07 12:05
MasterSharp24-Sep-07 12:05 
QuestionUsing C# like remote desktop? Pin
InvalidTypecast24-Sep-07 10:41
InvalidTypecast24-Sep-07 10:41 
AnswerRe: Using C# like remote desktop? Pin
TJoe25-Sep-07 6:05
TJoe25-Sep-07 6:05 
GeneralRe: Using C# like remote desktop? Pin
InvalidTypecast25-Sep-07 8:49
InvalidTypecast25-Sep-07 8:49 

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.