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!

vb6.0

Status
Not open for further replies.

SandeepPR

Programmer
Mar 25, 2015
1
IN
how to write a textbox data to datagrid using vb6.0 or
write one to hundred numbers into datagrid using vb6.0
 
You have to write to each cell individually unless you have the data in a database or delimited string (using Split function).
Decide which row and column you want to fill,
Set to the row you want. DataGrid.Row= RowNumber
then write the value. DataGrid.Columns(ColumnNumber)= Value you want in the cell
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top