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 TouchToneTommy 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: *

  • Users: wooonelly
  • Content: Threads
  • Order by date
  1. wooonelly

    VB6 .exe trying to install a different program

    I have an .exe program that was created in VB6. When I try to run the .exe, it tries to install ExpertCAD, a drafting program. There should be no reason ExpertCAD needs to run for this program. Does anyone know what I need to do to fix this? The other weird thing is that ExpertCAD is...
  2. wooonelly

    Multi program code

    Here is what I need, please be patient: PowerMILL(drafting program), is open a point is selected, when F1 is pushed a window comes up giving the coordinates of the point, I would like this window copied(alt+print screen) and pasted into a word document by this code so the user doesn't have to...
  3. wooonelly

    Database lockout

    There is a form used where I work that four or five people use to create quotes. They can all access and create new quotes at the same time most of the time. One user had the form open for a while and no one else could use the form after some time(not sure how long he had it open). I closed...
  4. wooonelly

    Distiller problem

    I have an excel sheet setup with macros. There is a save button that when pushed should save the current page by printing it to distiller 5.0, creating a .pdf in a certain location. This was working fine until a couple weeks ago where now it errors out. It gives a memory error and doesn't...
  5. wooonelly

    access/update problem?

    I use an access form, off our server, and when I am in a text box and push the enter key, the cursor moves to the next text box, not down a line like it did in the past. The weird thing is that another user uses the exact same form off the server and it works fine on his box. I thought it had...
  6. wooonelly

    help printing by stalling the running of the code

    I have code that looks like this at the end: ActiveDocument.PrintOut ActiveDocument.Close False Kill OutputFile Application.Quit False The problem is that it runs too fast and it closes everything before the printout starts. Is there a way to run the activedocument.printout...
  7. wooonelly

    inserting a "("

    I have a macro in word and I would like to insert a "(" at the end of the active document then go back to the beginning and run the macro as I have it right now. Can someone help with this? I am obviously a n00b so any help is appreciated.
  8. wooonelly

    Print newly created document automatically

    I have a macro that modifies an open document and creates a new document. The new document does not open. Is there a way to just have the newly created document print right away? It does not need to be opened or saved, just printed. Here is the code: Sub YoYo() Dim MyFile As Variant Dim...
  9. wooonelly

    help creating a macro

    I have a document that looks like this: % O0001 ( DIAMETER = 4. ) ( CORNER RADIUS = .125 ) ( STOCK ALLOWANCE = .03 ) G91 G28 Z0 H0 G49 T1 M6 G90 M3 S2500 G5 P1 G61.1 G0 X8.6251 Y-2.1484 G43 Z-1.4 H1 M50 Z-1.9 G1 Z-1.93 F150. Y8.0004 Z-1.9831 X2.5551 Z-2.0149........say 10 more PAGES of this...
  10. wooonelly

    Converting Excel macro to word macro

    Here is my code: Private Sub CommandButton1_Click() filopn1 = Application.GetOpenFilename("Text Files (*.prg), *.prg*") If filopn1 = "" Then MsgBox "Please select a file" Exit Sub End If If UCase(Right(filopn1, 3)) <> "PRG" Then MsgBox "This app only good for text files" Exit Sub End If...

Part and Inventory Search

Back
Top