M
Mr. B
In my app, I get all the info/data that I want from an Access data base. In
one place I've the information displayed on a ListView.
I let a user click on any line and then an 'edit' button. This picks the info
from the line and displays the data in a DataGrid for editing. The
information displayed is 1 to 7 lines.
What I want to do is to change some text in a column ("description") that is
the same to all the info displayed in the DataGrid. I plan to have a TextBox
where the user makes the change and then clicks an update button. Later they
have to click another button (accept changes) to re-write the updated
information back to the Access data base).
My initial thought to do the update was to reload the data and instead of
using the data base "description" information, to substitute it with the
revised wording.
But maybe there is an easier way to simply just replace all the info in one
column with the updated text? If so, I'd appreciate some direction here.
LASTLY, in a ListView, how can you get a 'double' click to function? I would
like to allow a user to double click a line to bring up my edit shell (right
now it's a line click to highlight, then an edit button). I've tried:
Private Sub lvProjDisplay_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles lvProjDisplay.Click
.... code here...
End Sub
.... but this doesn't work. Anyone?
Thanks in advance!
Bruce
one place I've the information displayed on a ListView.
I let a user click on any line and then an 'edit' button. This picks the info
from the line and displays the data in a DataGrid for editing. The
information displayed is 1 to 7 lines.
What I want to do is to change some text in a column ("description") that is
the same to all the info displayed in the DataGrid. I plan to have a TextBox
where the user makes the change and then clicks an update button. Later they
have to click another button (accept changes) to re-write the updated
information back to the Access data base).
My initial thought to do the update was to reload the data and instead of
using the data base "description" information, to substitute it with the
revised wording.
But maybe there is an easier way to simply just replace all the info in one
column with the updated text? If so, I'd appreciate some direction here.
LASTLY, in a ListView, how can you get a 'double' click to function? I would
like to allow a user to double click a line to bring up my edit shell (right
now it's a line click to highlight, then an edit button). I've tried:
Private Sub lvProjDisplay_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles lvProjDisplay.Click
.... code here...
End Sub
.... but this doesn't work. Anyone?
Thanks in advance!
Bruce