Click here to Skip to main content
15,898,371 members

Comments by khan2010 (Top 7 by date)

khan2010 14-Sep-13 12:15pm View    
But sir i dont have any database, i just wanted to add whatever data is in text boxes into datagrid.
khan2010 14-Sep-13 10:40am View    
Thanks for reply
But In my scenario.. there is no any database.
Just want to add Records in grid from text boxes.
khan2010 14-Sep-13 9:20am View    
With DataGrid1
.AllowAddNew = False
.AllowDelete = False
.AllowUpdate = False

Dim col As Column

Set col = DataGrid1.Columns.Add(0)
col.Value = Text1(0).Text
col.Caption = "Article"

End With
khan2010 13-Feb-13 16:51pm View    
I tried.. it's not giving me desired result.
khan2010 13-Feb-13 16:12pm View    
actually Records set is not my problem ,
my problem is how to in my scenario how to get desired data using posted query.