Click here to Skip to main content
15,913,570 members
Home / Discussions / C#
   

C#

 
GeneralRe: NO ONE KNOW THAT ??? what is the value ANY ONE REPLY ME PLZ Pin
benjymous29-Sep-04 2:27
benjymous29-Sep-04 2:27 
GeneralRe: NO ONE KNOW THAT ??? what is the value ANY ONE REPLY ME PLZ Pin
Nick Parker29-Sep-04 4:06
protectorNick Parker29-Sep-04 4:06 
GeneralRegistry and Eventlog!!! Pin
Member 140072028-Sep-04 21:38
Member 140072028-Sep-04 21:38 
GeneralRe: Registry and Eventlog!!! Pin
Rein Hillmann28-Sep-04 21:47
Rein Hillmann28-Sep-04 21:47 
GeneralI realy need help Pin
Sakkijha28-Sep-04 21:18
Sakkijha28-Sep-04 21:18 
GeneralRe: I realy need help Pin
Rein Hillmann28-Sep-04 21:27
Rein Hillmann28-Sep-04 21:27 
GeneralRe: I realy need help Pin
Sakkijha28-Sep-04 21:44
Sakkijha28-Sep-04 21:44 
GeneralRe: I realy need help Pin
Rein Hillmann28-Sep-04 22:00
Rein Hillmann28-Sep-04 22:00 
Having quickly looked at the code.. I changed the following:

1) You don't want to clone the dataset since you won't be updating the one that is linked to the control.

Change the line
this.DS= addRCDataSet.Clone();
to
this.DS= addRCDataSet;

2) I modified the whole button1_click() method to:

private void button1_Click(object sender, System.EventArgs e)
{
object[] values = new object[1];
values[0] = textBox1.Text;
DS.Tables["test"].Rows.Add(values);
}

This just seemed a lot simpler to me - your earlier method was giving me problems.
GeneralRe: I realy need help Pin
Stefan Troschuetz28-Sep-04 21:30
Stefan Troschuetz28-Sep-04 21:30 
GeneralRe: I realy need help Pin
Sakkijha28-Sep-04 21:51
Sakkijha28-Sep-04 21:51 
GeneralChanging standard look of scroll bars Pin
Vladimir Knezevic28-Sep-04 21:08
Vladimir Knezevic28-Sep-04 21:08 
GeneralRe: Changing standard look of scroll bars Pin
RichiLloyd5-Oct-04 0:43
RichiLloyd5-Oct-04 0:43 
Generala FUNCTION 2 CALCULATE SECONDS since time struck 12 Pin
compu2rbloo28-Sep-04 18:50
compu2rbloo28-Sep-04 18:50 
GeneralRe: a FUNCTION 2 CALCULATE SECONDS since time struck 12 Pin
Rein Hillmann28-Sep-04 21:15
Rein Hillmann28-Sep-04 21:15 
GeneralRe: a FUNCTION 2 CALCULATE SECONDS since time struck 12 Pin
Stefan Troschuetz28-Sep-04 21:21
Stefan Troschuetz28-Sep-04 21:21 
GeneralRe: a FUNCTION 2 CALCULATE SECONDS since time struck 12 Pin
compu2rbloo29-Sep-04 18:55
compu2rbloo29-Sep-04 18:55 
GeneralRe: a FUNCTION 2 CALCULATE SECONDS since time struck 12 Pin
Gavin Jeffrey29-Sep-04 20:32
Gavin Jeffrey29-Sep-04 20:32 
Generalpdf text manipulation Pin
Naga Sudha28-Sep-04 18:43
Naga Sudha28-Sep-04 18:43 
GeneralRe: pdf text manipulation Pin
Heath Stewart29-Sep-04 6:01
protectorHeath Stewart29-Sep-04 6:01 
GeneralRe: pdf text manipulation Pin
Jon G29-Sep-04 6:12
Jon G29-Sep-04 6:12 
GeneralE-Commerce Pin
The_Soul_Of_Rock28-Sep-04 17:29
The_Soul_Of_Rock28-Sep-04 17:29 
GeneralRe: E-Commerce Pin
Werdna29-Sep-04 2:47
Werdna29-Sep-04 2:47 
GeneralEdit excel text box using C# Pin
manishoz28-Sep-04 14:40
manishoz28-Sep-04 14:40 
Generaliterating through xml created from a spreadsheet Pin
wend28-Sep-04 12:51
wend28-Sep-04 12:51 
GeneralRe: iterating through xml created from a spreadsheet Pin
Heath Stewart28-Sep-04 13:11
protectorHeath Stewart28-Sep-04 13: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.