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 dencom 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 tps14334

  1. tps14334

    Trigger VBScript from ASP webpage

    Alot of trial and error with hunting around for code snippites online lead to this solution: <script> function App_Launch() { if (!document.all) { alert ("Available only with Internet Explorer."); return; } var ws = new...
  2. tps14334

    Renaming uploaded files

    Something here maybe of help: http://classicasp.aspfaq.com/files/directories-fso/can-i-rename-a-file-using-filesystemobject.html
  3. tps14334

    Trigger VBScript from ASP webpage

    I am trying to figure where I am going wrong here. I am looking to have a webpage trigger the code below which tunnels from my web server to my application to then kick off a batch file which calls up a program and begins automation of various functions. Dim WshShell, oExec Set WshShell =...
  4. tps14334

    Extra connectivity to a SQL or MySQL database

    Does anyone have any examples or documentation on getting extra to connect to a SQL or MySQL database, including how to add, update, and move through the records?
  5. tps14334

    Attachmate to Excel, SaveAs the open Workbook

    This worked perfectly, thank you!
  6. tps14334

    Attachmate to Excel, SaveAs the open Workbook

    I have done alittle poking around on here and trying different resources that I know of and still end up with a scripting error when trying to save the open workbook. Here is the code to call the Excel session: Dim xlApp As Object, xlSheet As Object Set xlApp =...
  7. tps14334

    Session Disconnect/Connect

    This issues was resolved by the following code: Sess0.Connected = False Pause(2) Sess0.Connected = True Pause(2)
  8. tps14334

    Disconnect Session

    Could you share the code you use to launch extra, load a session, execute a macro, and how you closed it?
  9. tps14334

    Session Disconnect/Connect

    I tried to search around on Google for several minutes, however I was unable to come up with any useful information. If there a way I could write a script for Extra to have it disconnect from it's session and reconnect again (there is a button in the tool bar I use manually)? Thank you for any...
  10. tps14334

    Multiple Variable PutString from Excel to Attachmate

    A little more poking and brain stretching has now gotten this script, at least this part of it, working. Needed to drop the resize feature/class/command/???? on additional variables for columns other than my control.
  11. tps14334

    Multiple Variable PutString from Excel to Attachmate

    So I've spent a little more time with this trying to figure out how to get it to stage each column as different variables. For some reason I was thinking that the script was running faster than the applications were performing and put in some delays but that failed with the same error (as...
  12. tps14334

    Multiple Variable PutString from Excel to Attachmate

    I took this code (from http://www.tek-tips.com/viewthread.cfm?qid=1505010&page=1) and tried expanding on it to do a-bit more. Here is the code I currently have sans a majority of the variables: Const g_HostSettleTime as integer = 1 Global System As Object,Sess0 As...
  13. tps14334

    GetString - PutString from Excel to Attachmate - response back Excel

    Skip, im hoping you can help me here some. I took this code and tried expanding on it to do a-bit more. Here is the code I currently have sans a majority of the variables: Const g_HostSettleTime as integer = 1 Global System As Object,Sess0 As Object,Sessions As Object,Screen...
  14. tps14334

    GetString - PutString from Excel to Attachmate - response back Excel

    I was looking for something just like this. Thank you, it has been a big help for me as well!
  15. tps14334

    Dynamic variables by record in a Spreadsheet/CSV File

    See the link below for a screen shot of the About window. http://img143.imageshack.us/img143/39/3270terminalyk3.jpg http://img143.imageshack.us/img143/39/3270terminalyk3.jpg

Part and Inventory Search

Back
Top