Arg81
Well-known member
Question about Adding - RESOLVED
When I add a new record, I've set the ID field to be hidden as this may not be the actual value that is given from the AutoIncrement of the SQL Server.
However, I want the user to know which ID was given.
When my Submit Changes to DB is successful, a messagebox appears telling the user it was successfully updated to the back end.
How can I put it so that the messagebox also displays the correct ID field?
I tried something like;
MessageBox.Show("Update Successful! Filed As ID No. " & .........
That's as far as I got! I thought I could use something like ds1.tables.table1.currentrow.id.value
Any help much appriciated!
Regards,
Luke
When I add a new record, I've set the ID field to be hidden as this may not be the actual value that is given from the AutoIncrement of the SQL Server.
However, I want the user to know which ID was given.
When my Submit Changes to DB is successful, a messagebox appears telling the user it was successfully updated to the back end.
How can I put it so that the messagebox also displays the correct ID field?
I tried something like;
MessageBox.Show("Update Successful! Filed As ID No. " & .........
That's as far as I got! I thought I could use something like ds1.tables.table1.currentrow.id.value
Any help much appriciated!
Regards,
Luke
Last edited: