-
I have this project, a data entry program and maintenance. Now here it goes...
I have a MEMBERS browser which contains a listview (in report view) wherein all the members names and other general info are listed. How can I delete or edit a member? I can't find a way of doing them. I had this idea of including their respective record numbers on the listview, but it shows, and it's not supposed to (i know this is a cheat stuff). Any ideas guys? This one is very urgent.
-
maybe you can hide the column with the ID, and when they choose to delete, get that field and execute the delete SQL, refresh your listview and live happily ever after?
Tom
-
How do I hide that particular column? There's no hide property for the listview columns.
-
Oh yeah! I guess you can't hide the column... you can set the width to zero (the user can resize the column to see it) or not include the column but keep an array based on the index of the listview record ID.... it sounds like you may be looking for the DBGrid instead of the listview to automatically do updates, deletes, edits all without code (but no pretty pictures)
HTH
Tom