textbox
.NET (Core and Framework)
2
Posts
2
Posters
0
Views
1
Watching
-
hello 1) how do i create a textbox with the position x:20 and y:150 from code. 2) is there a function to read a specific row and a column from a table example: read column 4 from row 3 10x
As for the textBox, assign it a location as a point: this.TextBox.Location = new System.Drawing.Point(20, 150); As for reading a column and row, first I'd fill a dataSet with it. Once you've put it in a DataSet then: string text = dataSet.Tables[0].Rows[3][4].ToString(); //row first, then column RABB17 "Even in my Dreams I see the flashing of my cursor."