Click here to Skip to main content
15,914,322 members
Home / Discussions / C#
   

C#

 
AnswerRe: How do I... Pin
leppie25-Feb-05 23:41
leppie25-Feb-05 23:41 
AnswerRe: How do I... Pin
sreejith ss nair26-Feb-05 1:30
sreejith ss nair26-Feb-05 1:30 
Generalpassing textbox values to an array Pin
la vie25-Feb-05 19:05
la vie25-Feb-05 19:05 
GeneralRe: passing textbox values to an array Pin
Radgar26-Feb-05 0:03
Radgar26-Feb-05 0:03 
GeneralRe: passing textbox values to an array Pin
la vie26-Feb-05 7:11
la vie26-Feb-05 7:11 
GeneralRe: passing textbox values to an array Pin
Radgar26-Feb-05 9:19
Radgar26-Feb-05 9:19 
GeneralRe: passing textbox values to an array Pin
la vie26-Feb-05 9:35
la vie26-Feb-05 9:35 
GeneralRe: passing textbox values to an array Pin
Radgar26-Feb-05 10:42
Radgar26-Feb-05 10:42 
If I understood right, you don't need ArrayLists here. I think the following solution will solve your problem. Let me know if it does.

<br />
DataSet myDataSet = new DataSet("myDataSet");<br />
DataTable myTable = new DataTable("Merchandise");<br />
myTable.Columns.Add("Param1");<br />
myTable.Columns.Add("Param2");<br />
<br />
DataRow myRow;<br />
myRow =	myTable.NewRow();<br />
myRow["Param1"] = "some value";<br />
myRow["Param2"] = "some other value";<br />
myTable.Rows.Add(myRow);<br />
myDataSet.Tables.Add(myTable);<br />
<br />
myTable.DefaultView.RowFilter = "Param1 <> ''";<br />
<br />
dataGrid1.SetDataBinding(myDataSet, "Merchandise");<br />


Radgar
"Imagination is more important than knowledge." - Albert Einstein
GeneralRe: passing textbox values to an array Pin
la vie26-Feb-05 14:58
la vie26-Feb-05 14:58 
GeneralRe: passing textbox values to an array Pin
Radgar26-Feb-05 16:13
Radgar26-Feb-05 16:13 
QuestionHow to get the value from keyboard? Pin
Johny Ng25-Feb-05 14:38
Johny Ng25-Feb-05 14:38 
AnswerRe: How to get the value from keyboard? Pin
S. Senthil Kumar25-Feb-05 15:07
S. Senthil Kumar25-Feb-05 15:07 
AnswerRe: How to get the value from keyboard? Pin
sardonicus26-Feb-05 12:37
sardonicus26-Feb-05 12:37 
Questionhow to convert a float array (float[]) to a byte array Pin
xuguoqing25-Feb-05 14:00
xuguoqing25-Feb-05 14:00 
AnswerRe: how to convert a float array (float[]) to a byte array Pin
S. Senthil Kumar25-Feb-05 15:02
S. Senthil Kumar25-Feb-05 15:02 
GeneralRetrieve code of method at runtime Pin
hahoyer25-Feb-05 11:53
hahoyer25-Feb-05 11:53 
GeneralRe: Retrieve code of method at runtime Pin
S. Senthil Kumar25-Feb-05 15:07
S. Senthil Kumar25-Feb-05 15:07 
GeneralRe: Retrieve code of method at runtime Pin
sreejith ss nair26-Feb-05 1:27
sreejith ss nair26-Feb-05 1:27 
GeneralRe: Retrieve code of method at runtime Pin
Dave Kreskowiak26-Feb-05 4:14
mveDave Kreskowiak26-Feb-05 4:14 
GeneralRe: Retrieve code of method at runtime Pin
sreejith ss nair26-Feb-05 20:08
sreejith ss nair26-Feb-05 20:08 
GeneralRe: Retrieve code of method at runtime Pin
hahoyer26-Feb-05 15:15
hahoyer26-Feb-05 15:15 
GeneralRe: Retrieve code of method at runtime Pin
S. Senthil Kumar26-Feb-05 19:41
S. Senthil Kumar26-Feb-05 19:41 
GeneralSome kind of file encryption thingy!! Pin
Anthony Mushrow25-Feb-05 11:49
professionalAnthony Mushrow25-Feb-05 11:49 
GeneralRe: Some kind of file encryption thingy!! Pin
Colin Angus Mackay25-Feb-05 11:51
Colin Angus Mackay25-Feb-05 11:51 
GeneralRe: Some kind of file encryption thingy!! Pin
Anthony Mushrow25-Feb-05 12:22
professionalAnthony Mushrow25-Feb-05 12:22 

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.