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!

Search results for query: *

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

    GetElementsByName IE8

    Just changed from VB6 to VB2008. After some investigation, I have found that IE8, has changed regarding GetElementById and GetElementsByName. My old VB6 code used to bind to certain places on a webpage, using this code HTMLDOC = objIE.document.getElementById("mainframe") But IE8 is case...
  2. jimwal0367

    String Conversion using VB2008

    Just converted from VB6 to VB2008 On running my old code, I get the following error. Conversion from type '_ComObject' to type 'String' is not valid This is the code that is throwing the error. trans = Trim(MyArea) I have declared trans as a string and MyArea as object. MyArea is set to...
  3. jimwal0367

    SendKeys from Attachmate to Internet Explorer

    Hi, I am trying to write a macro using Attachmate Extra 7.1 to copy from an Extra screen, find the correct opened Internet Explorer window then paste the contents into a blank box on Internet Explorer. I can get the macro to open a new IE window, navigate to a certaqin website(I used Google)...
  4. jimwal0367

    Importing a jar file into a java class

    I need to connect to a secure postgresql database, i have the latest drivers downloaded from the postgresql website. My main question is:- Is there a way of importing the jar file into the java class. So method in another java class can then call the DbConnect class file. At present the only...
  5. jimwal0367

    Connect java to my sql database

    Not sure if this is the right forum, I need to connect to my sql database using java. I cannot seem to get the jdbc drivers to load. Does anybody have any ideas, here is the code so far. // Establish a connection to an Interbase database using JDBC. import java.sql.*; class DbConnect {...
  6. jimwal0367

    Comparing two sheets on two different workbooks in Excel

    Hi, I have found this code in another posting Sub Find_Matches() With Sheets(1) For Each r In .UsedRange With r If .Value <> Sheets(5).Cells(.Row, .Column).Value Then .Font.Color = vbRed Sheets(5).Cells(.Row, .Column).Font.Color = vbRed Else...
  7. jimwal0367

    Open an exisiting word document

    Is it possible to open an exisiting word document like letter.doc by using an a macro in attachmate. I have the code for opening a blank word document see below. Sub Main() ' Declare Object Variables Dim objApp As Object Dim objDoc As Object Dim objRange As Object...
  8. jimwal0367

    Get information via vba from another windows application

    Hi, Is it possible to get information from another windows application like VU-ACD(aplication used for monitoring cals on a telephone system). Using an excel VBA macro. I need to get the reports from the application onto excel, using a macro created with VBA. I know it is possible to get...

Part and Inventory Search

Back
Top