Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to retrieve data from multiple cells/multiple rows 1

Status
Not open for further replies.

PRPhx

MIS
Jul 4, 2005
747
US
I need to know how to get data out of mutiple cells in mutiple rows and populate a number of text boxes. I can get data from a single row, but not sure how to get data from multiple rows.

Here is what I have. I have a datagrid with (among other fields):

Application Name
Column Number
Column Description
Column name, etc

There can be (99% of the time are) more columns and column info. How do I get data out of multiple cells and fill multiple textboxes???

 
Code:
Dim DG1 as DataGrid=New Datagrid
Dim R as Int16
Dim C as Int16

R=1
C=2

Messagebox.Show (DG1(R,C))
I'm sure you already have the Datagrid, I only used this as an example.

To set a Cell Value, you just flipflop the syntax:

Code:
DG1(R,C)="Hello World"

I hope this helps.

Ron Repp

If gray hair is a sign of wisdom, then I'm a genius.
 
Thanks Ron. This is a good starting place. This application is going to be used in part as "disaster recovery". I work with an imaging system and if my main server were to fail it would be a bear to rebuild all the scanning applications without knowing field names, type,size, etc.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top