Alas! When I run the app (debug mode), the grid comes up "empty". It shows that there are 31 records (count in column 1), but there is no data showing up. I have built, rebuilt, changed the grid, built, rebuilt again. I reset the datasource (removed the BBS, save, reset the BBS, saved again). I am running out of ideas about why this may be happening.
Is there a "trick" to getting an undeleted control working again?
Thanks,Bill
One problem you might have is that once the object gets deleted visual studio removes the handles statement and if you Ctrl Z it it does not re-apply the event handlers,
ie private sub somethingclicked(sender as object, e as event arg) handles something.clicked
after deleted becomes somethingclicked(sender as object, e as event arg)
after Ctrl Z the handler is still misssing so your code never executes, same thing if you cut and paste an object.
this