S
sennopati
Hello there...
I generate text box by dragging datasources definition into my form.
Till now i don't have idea how to protect user editing data after call
Fill function to fill dataset object??
Here are the statement:
Dim iRow As Integer
iRow = DaEntity.Fill(DsEntity1)
If iRow = 0 Then
Mst_entityBindingSource.AddNew()
Else
'----> i want to add statement that user cannot modified data
after fill dataset
'
SomeTextBox.Focus()
End If
Note : User can edit data after click Edit button or Menu
thx..
I generate text box by dragging datasources definition into my form.
Till now i don't have idea how to protect user editing data after call
Fill function to fill dataset object??
Here are the statement:
Dim iRow As Integer
iRow = DaEntity.Fill(DsEntity1)
If iRow = 0 Then
Mst_entityBindingSource.AddNew()
Else
'----> i want to add statement that user cannot modified data
after fill dataset
'
SomeTextBox.Focus()
End If
Note : User can edit data after click Edit button or Menu
thx..