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. CooterBrown

    Send Clicks to Embedded exe

    I have a presentation (I beleived compiled in Adobe Director - not done in house) and some users want to play this presentation during their trade shows in a loop. However, at the end of the presentation, a window appears with a button that is captioned "Click to Quit". I can loop the...
  2. CooterBrown

    Split and Merge pages of a PDF attachment in an Outlook VB Macro

    kjv1611 said: "Or, as I said, if you have Adobe Acrobat Standard (or above), you can also just use Document - Extract to take care of it. I have to handle several documents like this at least once per month. Sometimes more frequently, but at least once per month. Both methods have worked...
  3. CooterBrown

    Split and Merge pages of a PDF attachment in an Outlook VB Macro

    KJV... Sorry.. I don't remember getting your reply to my post. That is what I'm looking to do. I need to extract some pages from a PDF doc attached to an email and assemble the remaining pages to be shipped to an image system. A sender sometimes scans in multiple documents as one pdf file and...
  4. CooterBrown

    Outlook 2007 macro (.otm project) to add-in - VB6?

    Is it possible to create an add-in for Outlook 2007 using VB6.0 architechture? Don't have visual studio but I have a macro that I need to distribute to some users. I am unable to find a tutorial to get me started. Any guidance? Thanks!
  5. CooterBrown

    Split and Merge pages of a PDF attachment in an Outlook VB Macro

    Hello, I was tasked with pushing PDF attachments to our image system using a VB Macro from Outlook. Easy enough to do by itself but there is an additional requirement to direct certain pages of the attachment to one folio in the image system and other pages to a different folio. In the event...
  6. CooterBrown

    .net conversion

    Thank you! I know strongm is probably a vb genius. Although, probably not the friendliest person in the forum. : ? ) In any case, not all projects justify the costs of timely research and this is one of them. It is a very small and simple utility and I thought by doing some of the work...
  7. CooterBrown

    6.0 to .net conversion

    I did a .net conversion of my vb 6.0 code and I'm having problems. When I'm debugging my code, it frmAgentMain starts to load and is the active form and then all of a sudden, it goes to End Sub and dies. In 6.0, it hangs until an event is executed on frmAgent. What's different...
  8. CooterBrown

    .net conversion

    Thanks genius! Can anyone describe why the two languages act differently and how to correct?
  9. CooterBrown

    .net conversion

    I did a .net conversion of my vb 6.0 code and I'm having problems. When I'm debugging my code, it frmAgentMain starts to load and is the active form and then all of a sudden, it goes to End Sub and dies. In 6.0, it hangs until an event is executed on frmAgent. What's different...
  10. CooterBrown

    Retrieve User Name

    How would I retrieve the USERNAME or Network LogOn parameter?
  11. CooterBrown

    Moving PDF's

    So other than my sloppy math, this is the most efficient way to move a batch of PDF's from one directory to another? The process seems to be hanging up at the "mFile.Copy MoveTo, True" command. Could I do it as a batch process behind the scene somehow so as not to tie up the users PC?
  12. CooterBrown

    Moving PDF's

    I'm trying to move a group of PDF's from one folder/staging area to another folder for processing. There are going to be about 1000 400KB pdf's. What is the most efficient way to do this? Here is what I have tried but it is slow... ------------------------------------------------------------...
  13. CooterBrown

    Authorities on IFS

    The PDF's I'm creating on the IFS are being imaged and then deleted but the server that is importing them into imaging only has *R authorities on them. can I give the user *all Object authority to everything in that directory?
  14. CooterBrown

    Authorities on IFS

    I found the following snippet of code to send PDF's to the IFS using RPG IV. Can anyone tell me how to specify authorities for a specific user? Eval PDFSTMFNAM = '/' + %trim(IFSDIR) + '/' + IFSFOL + IFSSUB + IFSDOC + IFSDSC + IFSCO +...
  15. CooterBrown

    PDFs to IFS from Spool File

    what about the CRTAFPDTA command! How does it work?
  16. CooterBrown

    PDFs to IFS from Spool File

    We use InfoPrint Designer to design and map data to our overlays. I'm particularly talking about Billing or 1099s for this post. We would like to offer these documents on the web for download in PDF format. Currently, our cycle creates these documents, obviously 1 for every client in the case...
  17. CooterBrown

    Managing the IFS

    I was tasked with digging down in a 600+ gig root directory of the IFS building a table with all the subdirectories, objects within, and a few parameters like date created, date used, etc. When I get started, I'll probably have some programming questions if I do this with RPG (thinking about...
  18. CooterBrown

    Digging down in a root directory.

    I was tasked with digging down in a 600+ gig root directory and building a table with all the subdirectories, objects within, and a few parameters like date created, date used, etc. The programming I can handle but does anyone have any suggestions on how this table should be built? Has anyone...
  19. CooterBrown

    Supress code while command is being executed

    Thanks for all of the help...I finally nailed it thanks to rmikesmith & PHV! Too many Chr(34)'s in that string! Private Sub TransferFile() Dim WShShell As Object Set WShShell = CreateObject("Wscript.Shell") WShShell.Run Chr(34) & "C:\Program Files\IBM\Client Access\cwbtf.exe " & Chr(34)...
  20. CooterBrown

    Supress code while command is being executed

    Thanks but I still can't get this command to work! gstrAppPath = "C:\Directory" WShShell.Run """C:\Program Files\IBM\Client Access\cwbtf.exe " & gstrAppPath & "\TestQryOut2.tto""", 1, True

Part and Inventory Search

Back
Top