Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. johnnyplang

    Acad 2007 Mech. locks up when editing text

    My computer (and others around me) locks up if I double click on text to edit it (no error is given- just an hour glass). I can edit the text if I just click and select properties. One fix that we do is to block the drawing, delete the entire drawing and then insert the drawing back in then...
  2. johnnyplang

    how to stop multiples of the same application from running

    thanks guitar sorry about that
  3. johnnyplang

    how to stop multiples of the same application from running

    I have an application that opens in VB but when then action is triggered again another instance of the program opens instead of maximizing the first instance. I tried the below but that doesn't work. hwnd = FindWindow(vbNullString, "program X") If hwnd <> 0 Then AppActivate "program X"...
  4. johnnyplang

    how to stop multiples of the same application from running

    It is VBA. Its part of an operator interface software package. Normally we don't have to go to this level so again pardon my inexperience. There are no app.* that are listed. johnny
  5. johnnyplang

    how to stop multiples of the same application from running

    guitardave78, It faulted on the App.PrevInstance line. I am not sure what that does?
  6. johnnyplang

    how to stop multiples of the same application from running

    GD, What is App.PrevInstance? I get an error when it gets to that step. Sorry for being a rookie.
  7. johnnyplang

    how to stop multiples of the same application from running

    I have an application that opens in VB but when then action is triggered again another instance of the program opens instead of maximizing the first instance. I tried the below but that doesn't work. hwnd = FindWindow(vbNullString, "program X") If hwnd <> 0 Then AppActivate "program X"...
  8. johnnyplang

    how to check to see if file is open before opening

    oops forgot the first line hwnd = FindWindow(vbNullString, "program X") If hwnd <> 0 Then AppActivate "program X" Else Shell ("c:\Program X.exe") End If
  9. johnnyplang

    how to check to see if file is open before opening

    Everytime I press the active x control to run program.exe file a new window opens instead of placing the original window on top. The below statements don't work. If hwnd <> 0 Then AppActivate "program X" Else Shell ("c:\Program X.exe") End If

Part and Inventory Search

Back
Top