Posts by Vinicius B • 39 points
2 posts
-
0
votes1
answer58
viewsA: id PRIMARY KEY, AUTO_INCREMENT starting from 1
Even deleting the table data if I’m not mistaken it reset auto increment, I think this should help: ALTER TABLE NmTabela AUTO_INCREMENT = 0
-
3
votes2
answers2141
viewsA: USERFORM: What is the difference between Initialize and Activate routines?
Initalize occurs only once throughout the form execution so you can use, for example, to add items in a combo box, that is, to put codes that only need to be executed once before the form appears to…