Just give your save settings a null value.
SaveSetting "MyProg", "Settings", "FormHeight ", ""
User Profile
Collapse
-
If App.PrevInstanc e = True Then MsgBox "This program is already running.", vbInformation, "Already Running": Call alreadyloaded: Exit SubLeave a comment:
-
It seems that you are wanting to use the progress bar as a counter instead of what it is designed for. The progress bar will let you know when the selected process will finish. It does this graphicaly.
The progress bar will show you that a loop has started and when it is completed.
Set your progress bar min to 1 and max to 26000 or what ever the total loop count is. It will complete after you have searched your last document....Leave a comment:
-
Note there are always many ways to do something in VB code. I use the following to show active command buttons and labels.
1-Make sure that your button style is set to graphical for all buttons.
2-Make one form mousemove sub to restore all buttons to original colors.
3-Use the command button mousemove to change the color
Public sub cmdA_MouseMove( )
call clearback
cmdA.backcolor= vbgreen...Leave a comment:
No activity results to display
Show More
Leave a comment: