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

    PDF Extraction

    Where would I find the commands needed to use when the library is accessible.
  2. Computer8822

    PDF Extraction

    I'm using excel and have a lot of reports that are created to pdf files. I was wondering if there was a way to extract certain information from this pdf with VBA.
  3. Computer8822

    Idle timer

    Is there anyway to count the time in idle? And if it reaches a certain amount of time show a msgbox or alert box? I would need it to count once logged in and reset evertime a key is pressed.
  4. Computer8822

    Notepad or Word

    How can you do it through a macro. I was going to load Word, appactivate it, and sendkeys to it.
  5. Computer8822

    Notepad or Word

    How can I get Extra to launch notepad or ms word?
  6. Computer8822

    Can Casl Macro Call an Extra Macro?

    I wrote a great macro in Casl Macro (InfoConnect), but I need it to access another session. The session uses Extra. Instead of writing all 800 or so lines in extra, is there any way I can have Casl Macro call an Extra macro to finish off the tasks?
  7. Computer8822

    activatesession

    Would I put: ses1.Screen.GetString(1,1,12) Where does it store the string? Can I do someting like: strWords = ses1.Screen.GetString(1,1,12) Or do I have to use PutString right after I use GetString? Would this work? ses1.Screen.GetString(1,1,12) ses2.Screen.PutString(2,9)
  8. Computer8822

    activatesession

    Sub Main () Dim ses1 As Object, ses2 As Object, Sys As Object Set Sys = CreateObject("EXTRA.System") Set ses1 = GetObject("c:\directory\file.nam") Set ses2 = GetObject("c:\directory\otherfile.nam") Sys.ses1.GetString(1,1,12) End Sub I...
  9. Computer8822

    activatesession

    Nothing seems to be working. Can an Infoconnect/Casl Macro screen exchange information with an Extra screen through any type of macro?
  10. Computer8822

    activatesession

    Is there anyway to call a session by its name? Kind of like an appactivate on a child window? Is this possible?
  11. Computer8822

    Future Date

    I have this long drawn out code for getting a future date. Several people say something like date() + 15 would work. Is this true? I haven't been able to get it to work.
  12. Computer8822

    activatesession

    I can use this to activate the other session... activatesession sessno("ABBS") but how to I get the macro to print in that session or putstring? Or can I make activatesession sessno("ABBS") some sort of object and do one of those... Session.Screen.Putstring string or Session.Screen.Print...
  13. Computer8822

    activatesession

    How can I activate another session and send/get text to/from it? Or can you tell me if there is a similar post with the answer to it?
  14. Computer8822

    Print

    Is there a way? I can set the focus bewteen two screens with "Sessno", but cannot print once I get the focus. It just goes back to the session that is holding the macro.
  15. Computer8822

    Append

    What is the name of the file? I saw one used by Hummingbird, but not one I can use. Is it an xws file?
  16. Computer8822

    Append

    It there any way to do it through a macro?
  17. Computer8822

    Append

    How can I highlight text on a screen and have it append to an open Word document?
  18. Computer8822

    Print

    How can I use the 'Print' and/or 'Winstring' cammand in another session's window?
  19. Computer8822

    Display Date In an Input Box

    Hello, I have a casl macro program that will ask for several options through popup input boxes. One of them asks for the date. I was wondering if there was a way to diplay the date within this popup box so the user will pretty much just have to hit enter? The date will display as mmddyyyy.
  20. Computer8822

    Casl Macro Help

    I was wondering if there was a way to get the current date and add a couple months to it?

Part and Inventory Search

Back
Top