Click here to Skip to main content
15,911,142 members
Home / Discussions / C#
   

C#

 
GeneralRe: Help needed for a project Pin
Gareth H19-Jan-08 9:57
Gareth H19-Jan-08 9:57 
GeneralRe: Help needed for a project Pin
Paul Conrad19-Jan-08 11:41
professionalPaul Conrad19-Jan-08 11:41 
GeneralRe: Help needed for a project Pin
kingletas19-Jan-08 15:28
kingletas19-Jan-08 15:28 
GeneralRe: Help needed for a project Pin
Gareth H20-Jan-08 0:22
Gareth H20-Jan-08 0:22 
GeneralRe: Help needed for a project Pin
Paul Conrad20-Jan-08 9:05
professionalPaul Conrad20-Jan-08 9:05 
Questionadding data from textbox in to a datagrid? Pin
nigel200019-Jan-08 5:39
nigel200019-Jan-08 5:39 
AnswerRe: adding data from textbox in to a datagrid? Pin
Paul Conrad19-Jan-08 7:20
professionalPaul Conrad19-Jan-08 7:20 
AnswerRe: adding data from textbox in to a datagrid? Pin
Muhammad Shahid Farooq19-Jan-08 7:55
professionalMuhammad Shahid Farooq19-Jan-08 7:55 
//Create a new instance of DataSet
DataSet objDataSet = new DataSet("TableName");

//Create a new DataRow in the DataSet
DataRow objDataRow = objDataSet.Tables["TableName"].NewRow();

//Assigning text values to their respective data columns
objDataRow["items"] = txtItems.Text;
objDataRow["cost"] = txtCost.Text;
objDataRow["date"] = txtDate.Text;

//Adding the row in the DataSet
objDataSet.Tables["TableName"].Rows.Add(objDataRow);
GeneralRe: adding data from textbox in to a datagrid? Pin
Paul Conrad19-Jan-08 11:42
professionalPaul Conrad19-Jan-08 11:42 
GeneralRe: adding data from textbox in to a datagrid? Pin
nigel200019-Jan-08 22:34
nigel200019-Jan-08 22:34 
QuestionDisplaying the output of one window form in another window form Pin
Ofori Boadu19-Jan-08 4:15
Ofori Boadu19-Jan-08 4:15 
GeneralRe: Displaying the output of one window form in another window form Pin
Paul Conrad19-Jan-08 7:21
professionalPaul Conrad19-Jan-08 7:21 
GeneralConcatting 2 fields in SQL from 2 tables Pin
Gareth H19-Jan-08 4:01
Gareth H19-Jan-08 4:01 
GeneralRe: Concatting 2 fields in SQL from 2 tables Pin
pmarfleet19-Jan-08 4:56
pmarfleet19-Jan-08 4:56 
GeneralRe: Concatting 2 fields in SQL from 2 tables Pin
Gareth H19-Jan-08 6:31
Gareth H19-Jan-08 6:31 
GeneralRe: Concatting 2 fields in SQL from 2 tables Pin
Gareth H19-Jan-08 6:38
Gareth H19-Jan-08 6:38 
GeneralRe: Concatting 2 fields in SQL from 2 tables Pin
pmarfleet19-Jan-08 9:11
pmarfleet19-Jan-08 9:11 
GeneralRe: Concatting 2 fields in SQL from 2 tables Pin
Gareth H19-Jan-08 9:59
Gareth H19-Jan-08 9:59 
GeneralRe: Concatting 2 fields in SQL from 2 tables Pin
pmarfleet19-Jan-08 10:08
pmarfleet19-Jan-08 10:08 
Questionhow to display percentage of compeletion of bacup sql server in my app ? Pin
hdv21219-Jan-08 3:45
hdv21219-Jan-08 3:45 
AnswerRe: how to display percentage of compeletion of bacup sql server in my app ? Pin
pmarfleet19-Jan-08 5:00
pmarfleet19-Jan-08 5:00 
GeneralRe: how to display percentage of compeletion of bacup sql server in my app ? Pin
hdv21219-Jan-08 5:22
hdv21219-Jan-08 5:22 
GeneralRe: how to display percentage of compeletion of bacup sql server in my app ? Pin
pmarfleet19-Jan-08 5:53
pmarfleet19-Jan-08 5:53 
AnswerRe: how to display percentage of compeletion of bacup sql server in my app ? Pin
Tamer Oz19-Jan-08 19:04
Tamer Oz19-Jan-08 19:04 
GeneralCSV file Import to SQL Server Database and Validation From C#.Net Pin
Nisha_Aadhi19-Jan-08 1:11
Nisha_Aadhi19-Jan-08 1:11 

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.