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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Tapeworm

  1. Tapeworm

    the Optional parameter

    Dear Michael, telling the truth, this is a top secret snippet from my code which will soon enable myself to remote control the American master puppet ...ehhh... president I mean. No, don't call the NSA, it's just an interpretation of a snippet out of an Addison-Wesley book. But the remarking...
  2. Tapeworm

    the Optional parameter

    Why is here the Output here 4 and ot 5 ? Is it one of the many VB Bugs or my code ? Private Sub Command1_Click() Dim i As Integer i = 4 Call inc(i, ,3) MsgBox i '---> Output 4 , why ? End Sub Private Sub inc(c As Integer, Optional b As Integer, _ Optional d As Integer) If...
  3. Tapeworm

    new ord document out of VB6

    I know how to make a new document in word out of my VB App. My Problem is that my code always starts Word new, despite it is open. How can I determine wether word is already open or not (and only then open it new) and how can I add a new document to this already open Word ? My Code: Set...
  4. Tapeworm

    new word document

    I know how to make a new document in word out of my VB App. My Problem is that my code always starts Word new, despite it is open. How can I determine wether word is already open or not (and only then open it new) and how can I add a new document to this already open Word ? My Code: Set...
  5. Tapeworm

    painting and working

    Thanx, the DoEvents - function was what I was looking for...
  6. Tapeworm

    painting and working

    I have a picture box in which i start some animations (lines, text, circles...). I have a start and stop button, but if I click it the animation always runs til its end. My Question: How can I run an animation without blocking the actions in my form ?
  7. Tapeworm

    Close a background form

    How can I save A Form with all its properties in a variable. I must close all forms in the background after I loaded a different one witout knowing the background - forms name. I tried it with a global variable (for the last opened form) dimmed as form but the allocation  ( [variable] = me /...
  8. Tapeworm

    Save A Form

    Ho can I save A Form with all its properties in a variable. I must close a form in the background after I loaded a different one. I tried it with a variable dimmed as form but the allocation ( [variable] = me / activceform ) doesn't work ...

Part and Inventory Search

Back
Top