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 Mike Lewis 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. gcrane

    Write Code To Use "Print Multiple Screens"

    I would like to know how to use the Print Multiple Screens option in Attachmate through code. Once I verify that the macro is on the correct screen, I want it to take a snap shot, then move on. I am NOT allowed to screen scrape the page; it has to be a non editable image. As part of this, I...
  2. gcrane

    Print screen

    This is almost exactly what I am looking for! I would like to know how to code "Print Multiple Screens" within Attachmate. I cannot even find out how to access the menu bar by code. Any assistance would be greatly appreciated! - gcrane
  3. gcrane

    Extra Column In Data Bound DataGridView

    No, there is not a known reason for not using the underlying data table (PWordRstTableAdapter). I am new to programming and would like a better understanding about data tables, adapters, etc. This application will be used by several hundred people to submit requests for password resets. With...
  4. gcrane

    Extra Column In Data Bound DataGridView

    In a previous posting (thread) I was creating a small datagridview (dgv) with one column from Active Directory. This time I am trying to use an existing data bound dgv and add a similar column to it. With the code below I am able to add the column, but no data is loaded into it. What am I...
  5. gcrane

    Extra Column In DataGridView From Active Directory

    IT WORKED! THANK YOU! This will help us with future datagridviews. gcrane
  6. gcrane

    Extra Column In DataGridView From Active Directory

    Currently, I have a DataGridView (DGV) that brings in three columns (Employee_ID, User_ID, ID_Type) from two different MS Access tables. However, I would like to add a fourth column (User_Name) from Active Directory (AD) by looking up the User's name from AD using the Employee_ID. In the below...
  7. gcrane

    Split Container & Menu Strip

    I am developing a new database and I want the initial screen to have a menu like strip on the left side, and the resulting query on the right side. The form is created with a split container, and I have installed a menu strip in the left side with a few options. The menu strip is docked and I...
  8. gcrane

    Opening Excel Spreadsheet Using Attachmate

    You mean like the below: Dim obj as object Dim objWorkbook as object Set obj = CreateObject("Excel.Application") obj.Workbooks.Open FileName:="H:\System Security\SSS\Quarterly Reports\MACROS\QTRLYDDA.xlsm" I don't know why, but this does NOT work. Also, I was hoping to find out how to use...
  9. gcrane

    Opening Excel Spreadsheet Using Attachmate

    Sendkeys is one of the most widely used commands in an Attachmate macro. It sends keystrokes. The % is for the alt key. That is the problem I am having is that the communication between my macro and Excel is failing. That is why I specified the versions of the programs I am currently using...
  10. gcrane

    Opening Excel Spreadsheet Using Attachmate

    Skip Again, I am confused by your question as it looks like an internal command for EXTRA! Basic. I looked it up in the help files and copied it below. Environment Control EXTRA! Basic includes the ability to call another software application (AppActivate), and send the application keystrokes...
  11. gcrane

    Opening Excel Spreadsheet Using Attachmate

    Thank you for your quick response! I'm a little confused at your question because AppActivate is the third line in the code I sent. The macro editor gets passed this line just fine, but throws the error message at the last line. I did look at the original macro that someone else wrote and...
  12. gcrane

    Opening Excel Spreadsheet Using Attachmate

    The code below used to work when my company was on Windows XP, MS Office 2003, and an earlier version of Attachmate. Now we are using Windows 7, MS Office 2010, and Attachmate 9.2. The problem I am having is with the last line sending keys to open the file I want. The error message displays...

Part and Inventory Search

Back
Top