L
Lennie
Hello..
I have a problem in a c# application.
I have a dataset that have a table cald tblcounter in this table I have 2
columns
Computer_name and datetime.
In the computer_name I want to store the clientnamn and in datetime I want
to store the date and time the clientnamn was enter in the table
This is the C# code I am using.
DataRow anyRow = tblcounter.NewRow();
anyRow["processor"] = perf_processor_time.NextValue();
anyRow["memory_fri"] = perf_memory_fri.NextValue();
// the code to add clientnamn and date,time
tblcounter.Rows.Add(anyRow);
I have a problem in a c# application.
I have a dataset that have a table cald tblcounter in this table I have 2
columns
Computer_name and datetime.
In the computer_name I want to store the clientnamn and in datetime I want
to store the date and time the clientnamn was enter in the table
This is the C# code I am using.
DataRow anyRow = tblcounter.NewRow();
anyRow["processor"] = perf_processor_time.NextValue();
anyRow["memory_fri"] = perf_memory_fri.NextValue();
// the code to add clientnamn and date,time
tblcounter.Rows.Add(anyRow);