Hi all,
I'm just a beginner going crazy.
I have tried this on a flexgrid control and it worked but now I am trying to make it work on a datagrid control but it keeps giving me the error
Run time error ‘7005’
Rowset not available
I have a text box which I have inputed some text say “Fred”
Now when I click on the cmdDisplay command button I want it to be displayed on a particular cell on the datagrid say cell row1, column 0
It worked on the flexgrid with the fol coding :
Private Sub cmdSave_Click()
mfgName.Rows = 2
mfgName.Col = 0
mfgName.Row = 1
mfgName.Text = txtName.Text
End Sub
How do I make the above work on a datagrid ?
First there isn’t the property Rows in the datagrid
When I tried ignoring the above and writing only .col = 0 and .row = 1 it returns the error “Rowset not available”
Fred
I'm just a beginner going crazy.
I have tried this on a flexgrid control and it worked but now I am trying to make it work on a datagrid control but it keeps giving me the error
Run time error ‘7005’
Rowset not available
I have a text box which I have inputed some text say “Fred”
Now when I click on the cmdDisplay command button I want it to be displayed on a particular cell on the datagrid say cell row1, column 0
It worked on the flexgrid with the fol coding :
Private Sub cmdSave_Click()
mfgName.Rows = 2
mfgName.Col = 0
mfgName.Row = 1
mfgName.Text = txtName.Text
End Sub
How do I make the above work on a datagrid ?
First there isn’t the property Rows in the datagrid
When I tried ignoring the above and writing only .col = 0 and .row = 1 it returns the error “Rowset not available”
Fred