User Profile

Collapse

Profile Sidebar

Collapse
dshaw65563
dshaw65563
Last Activity: Sep 18 '06, 05:16 PM
Joined: Sep 17 '06
Location: michigan
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • dshaw65563
    replied to Registry Keys
    Just give your save settings a null value.
    SaveSetting "MyProg", "Settings", "FormHeight ", ""
    See more | Go to post

    Leave a comment:


  • dshaw65563
    replied to Exe_Problem
    If App.PrevInstanc e = True Then MsgBox "This program is already running.", vbInformation, "Already Running": Call alreadyloaded: Exit Sub
    See more | Go to post

    Leave a comment:


  • dshaw65563
    replied to Progress bar
    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....
    See more | Go to post

    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...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...