Sep 26, 2003 #1 hanosm Technical User Jul 25, 2003 52 GB This is probably a really dumb question, but.... If i define a variable and then assign a value to it, e.g. Dim ThisDay As Integer ThisDay = DatePart("d", Now))) Is the value assigned to ThisDay saved when the DB is closed, or is it lost?
This is probably a really dumb question, but.... If i define a variable and then assign a value to it, e.g. Dim ThisDay As Integer ThisDay = DatePart("d", Now))) Is the value assigned to ThisDay saved when the DB is closed, or is it lost?
Sep 26, 2003 #2 RoyVidar Instructor Jun 16, 2000 6,606 NO I'm afraid it's lost. You can however save it, either to a table, ini-files or whatever if you wan't to. In a lot of my projects, I keep a tblDivInfo to capture a lot of such values, like what position some comboboxes had last time, checkbox values etc. Roy-Vidar Upvote 0 Downvote
I'm afraid it's lost. You can however save it, either to a table, ini-files or whatever if you wan't to. In a lot of my projects, I keep a tblDivInfo to capture a lot of such values, like what position some comboboxes had last time, checkbox values etc. Roy-Vidar