Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
4answers
600 views

How can I programmatically discover a Win32::OLE object's properties and methods in Perl?

With Perl, it's quite easy using the Win32::OLE library to load up COM/OLE objects and control them. The issue I'm running into is knowing exactly what methods and properties are available in the ...
4
votes
2answers
1k views

Ruby win32ole - how to determine the OLE class type, whether the OLE class supports a method

I am using Ruby 1.8. Using the WIN32OLE module - 1) How do I determine the class name of an OLE object instance? 2) How can I tell whether an object instance supports a particular method? In an ...
3
votes
1answer
53 views

Ruby (Shoes) List box crash when populating from excel

I've got a problem when using Shoes. I'm basically trying to open an excel document and pass the names of the worksheets to a list_box. The following method is called on a button press after selecting ...
3
votes
2answers
109 views

what's gem can operate Excel on linux?

My users will update their Excel to my system and I will get some information from it, I know the gem that named "win32OLE" on windows is run well, but my system is ubuntu, so how can I operate it?
3
votes
1answer
1k views

How can I copy and paste a range of tables in Word?

EDIT: If you have an example in VBA, I'll take it. I'm just trying to understand how to use the Range object with the Tables collection to copy and paste multiple tables without looping. Put another ...
2
votes
1answer
39 views

Automatically Confirming a Msgbox in Excel VBA code

I am using ruby a WIN32OLE to automate execution of Excel macros with windows scheduler. I have all of this working properly. My problem comes with having to run a macro embedded in an excel file of ...
2
votes
2answers
68 views

Unexpected behavior using the run method for win32ole excel object

I have the following bit of ruby code which works fine require 'WIN32OLE' excel = WIN32OLE.new('Excel.Application') excel.visible = true path = Dir.pwd + '\Testargs.xlsm' excel.workbooks.open(path) ...
2
votes
1answer
244 views

Win32::OLE - Word: How to move around in tables?

#!C:\Perl\bin\perl.exe use warnings; use 5.012; use Win32::OLE; use Win32::OLE::Const 'Microsoft Word'; $Win32::OLE::Warn = 3; my $word; eval{ $word = Win32::OLE->GetActiveObject( ...
2
votes
2answers
431 views

What is ths error in Ruby Watir (WIN32OLERuntimeError: unknown property or method `document')?

I have this code in Ruby waitr .. $LOAD_PATH.unshift File.join(File.dirname(__FILE__),'..') if $0 == __FILE__ require 'test/unit' require 'Watir' require 'Watir/contrib/enabled_popup' class ...
2
votes
1answer
95 views

JRuby & Win32OLE — how well do they work together?

I've been using Win32OLE extensively with MRI to automate MS Office. It works great, but I'm thinking of switching to JRuby to simplify installing apps on users' systems. With Win32OLE officially in ...
2
votes
1answer
444 views

How do I reliably determine folder size using FileSystemObject.Size?

Trying to compute the size of a folder that could be very large, I used FileSystemObject.Size: #! perl use strict; use warnings; use 5.10.0; use File::Spec; use Win32::OLE; my $_fso; sub ...
2
votes
1answer
242 views

How can I use WIN32OLE safely from a rails app?

I'm trying to use the win32ole gem in a Rails 3 app and running into some problems that I think are thread-related. Basically, I have code like this that I use to get user-specific data from our ...
2
votes
1answer
1k views

win32ole gem for jruby

I'm trying to install jruby gem from http://github.com/bpmcd/win32ole . it seems that standard jruby -S gem install win32ole doesn't work. I'm ruby noobie, and so far I understand that this ...
2
votes
1answer
550 views

Extract mail from Exchange and load into Mysql. Perl Win32::OLE or Perl Net::POP3, or try it in Ruby, or dabble in the, bletch, MS Access dark arts?

My problem is this: I need determine the timestamp of the first and last email sent from an Exchange account for every day that mail exists for. Also, for each day I need to rank the words that appear ...
1
vote
0answers
37 views

Missing shim in JRuby 1.6.5?

I am trying to run a compiled .class file which requires win32ole. The .rb file runs fine from RubyMine and jruby on the commandline. What I am using to execute with is java -cp ...
1
vote
6answers
146 views

char* to double and back to char* again ( 64 bit application)

I am trying to convert a char* to double and back to char* again. the following code works fine if the application you created is 32-bit but doesn't work for 64-bit application. The problem occurs ...
1
vote
2answers
261 views

Ruby program with win32ole does not work any more under Windows7 64bit

I have an old ruby program that extracts values from an excel file and stores the summary in another excel file. For that purpose, the program uses the library win32ole from Ruby. After switching to a ...
1
vote
1answer
212 views

Unable to save Excel file after modification using Ruby & win32ole

Using http://ruby-doc.org/stdlib/libdoc/win32ole/rdoc/classes/WIN32OLE.html as a guide I have written the following: require 'win32ole' excel = WIN32OLE.new('Excel.Application') excel.visible = false ...
1
vote
2answers
471 views

How to Extract text from MS Word?

I'm trying to open a word document and just extract all the text that is in the document and display it to the user using Win32::OLE #usr/bin/perl #OLEWord.pl #Use string and print warnings use ...
1
vote
3answers
118 views

How can I know what element is clicked in IE?

I'm automating IE with watir, and I want to know what html element(s) are clicked (selected). Can this be done using watir? win32ole? In a last chance, without ruby? Something like: Click a button ...
1
vote
0answers
212 views

Saving File Dialog / Prompt with Watir in Ruby

I'm using Watir to perform some actions on a website and eventually provide me with a prompt to save some file. What I would like to do is to follow the prompt automatically and have the file saved ...
1
vote
1answer
122 views

Is it practical to call vbscript functions from Ruby using win32ole?

Is it practical to call a VBScript function, such as VBScript's Chr(charcode), from Ruby using win32ole? Background: While working out how to add some nicely formatted headers to an excel worksheet, ...
1
vote
1answer
209 views

How do I debug scripts that use win32ole?

How do I debug scripts that use win32ole? For example, I found via trial and error that the following Ruby script doesn't work because excessively_long_range is too long: require "win32ole" # Boring ...
1
vote
2answers
43 views

Tracking COM object error in application

I was using an application and it was working perfect. After some months of not using it, I tried to run it and it doesn't work. It shows a message box saying that it cannot instance a COM object. Do ...
1
vote
1answer
449 views

cant connect to remote machine using WMI and Perl

I'm trying to write a script that will get event log information off of a remote windows machine using the win32::ole module and a WMI query. I can ping the machine but no matter what my WMI ...
1
vote
1answer
255 views

How to access TextBox object text in Word document using Ruby WIN32OLE

I just put together a small script for a team of users that collects all PDF and DOC* files in a directory and parses them for hyperlinks. The PDF section works as intended, however a difference ...
1
vote
1answer
138 views

Python/Tkinter: Turn on/off screen updates like wxPython Freeze/Thaw?

Does Tkinter provide a way to temporarily turn off screen updates (when performing a large amount of screen activity) and then turn on screen updates when the UI updates are complete? Many GUI ...
1
vote
2answers
272 views

How do I apply formatting to a particular word in a docx file using Win32::Ole in Perl?

For example, my docx file contains the following sentences: This is a Perl example This is a Python example This is another Perl example I want to apply bold style to all the occurrences of the word ...
1
vote
3answers
131 views

How do I retrieve a custom attribute in watir?

I'm trying to retrieve the "onclick" attribute value from the below link: <a onclick="test" href="myurl">aaa</a> Using link.href works fine (So I know link is the correct object) ...
1
vote
1answer
134 views

Ruby Office Automation - cannot get event handlers to work in MSWord

Ruby version 1.9.1p430 running on W7 with Office 2010. I am trying to catch the DocumentBeforeClose event but I cannot even get close to get it to work! I have followed some examples using Excel ...
1
vote
0answers
98 views

Controlling EXISTING Internet Explorer with WIN32OLE

Most material on the net deals with spawning a separate instance of Internet Explorer with WIN32OLE. Thats all well however I'd really like to be able to control, or rather monitor an existing ...
1
vote
1answer
405 views

Ruby win32ole MS Access: How to find all the records updated since last export?

I am using win32ole module/library to gain access to an Access database. But I can't find as I can in Rails the created_at or updated_at columns in any of the tables in the database. I was wondering ...
1
vote
0answers
107 views

How to handle unexpected user promts when using Ruby WIN32OLE to control MSWORD?

I have implemented a ruby script that is capable of opening a word document through the Ruby WIN32OLE automation library and does a search and replace on some specified string. This script is running ...
1
vote
1answer
276 views

windows automation with ruby win32ole - access an enum

accessing methods and properties from ruby win32ole gem seems easy, but what do I do when I have to set an enum more specifically, i am trying to set one of the values defined by warningLevelOption ...
1
vote
1answer
88 views

Possible to control Adobe Professional 9 through win32ole API?

As the title says.. Is it possible to control Adobe Professional 9 through the win32ole API, preferably by using Ruby scripts. I want to be able to open a PDF document and enable the extended ...
1
vote
2answers
1k views

How do I set Excel formulas with Win32::OLE?

can anybody tell me, why the "...->{FormulaR1C1} = '=SUMME( "R[-3]C:R[-1]C" )';" doesn't work. In the Cell where should appear the result I get "#Wert!" ( maybe "Value" in English ). With the ...
1
vote
3answers
262 views

How do I query a MS Access database table, and export the information to Excel using Ruby and win32ole?

I'm new to Ruby, and I'm trying to query an existing MS Access database for information for a report. I want this information stored in an Excel file. How would I do this?
1
vote
1answer
101 views

COM types question

I have this vendor-supplied TLB file, which I've used to generate a Ruby proxy class. However, the TLB in question describes 6 interfaces and 3 classes: AcdAutomationServer (I) ...
1
vote
1answer
906 views

Internet Explorer COM automation: Converting numeric error code to string

I am writing some code for driving Internet Explorer from a Perl 5 program through Win32::OLE, and I am looking for ways to convert numeric status/error codes that are delivered back to the Perl ...
1
vote
3answers
990 views

How can I automate an existing instance of Internet Explorer using Perl?

I am struggling to get control of an IE preview control which is 'Internet Explorer_Server' class on an external windows application with perl. Internet Explorer_Server is the class name of the ...
1
vote
2answers
1k views

Creating an Excel list with Ruby

I'm generating an excel in ruby which each line represents the results of an nmap scan. An example of a line could look like that: ip, yes (because port is 22 open), no (because port 80 is not open), ...
1
vote
2answers
652 views

How do I disable exp/lib generation when building an exe?

I realize this is probably caused by some _dllexport() somewhere, not in my code but in some third-party piece. (Qt, Boost, OpenSG, ...) Is there a simple linker option to disable this? I've ...
1
vote
1answer
503 views

Ruby win32ole - how to pass a VARIANT parameter?

I am trying to automate the Windows Task Scheduler using Ruby. I am using Ruby 1.8 under Windows Vista. The RegisterTaskDefintion method of the TaskFolder object takes two VARIANT parameters for the ...
1
vote
2answers
1k views

Word Automation using WIN32OLE

I am trying to insert an image (jpg) in to a word document and the Selection.InlineShapes.AddPicture does not seem to be supported by win32old or I am doing something wrong. Has anyone had any luck ...
0
votes
1answer
17 views

Ruby & win23ole : How to close window started using shell.ShellExecute

I am using the code below to start ror server. Is there a easy way to quit that window without going through the route of finding the pid and using 'taskkill'? I mean after all i have the handle in ...
0
votes
0answers
58 views

Use Warbler on Windows with Win32ole?

I try to create a jar library with the help or Warbler, and it works for a very simple hello-world-script. However, the real case for me is a script that uses win32ole to open and sum up excel files. ...
0
votes
1answer
40 views

Ruby win32ole returns List, need to convert to Array

I am using the otalclient.dll for HP Quality Center Automation to determine the list of Test Sets off of Root. The ole method returns a List (specifically IFactoryList) and I am wondering what I would ...
0
votes
1answer
32 views

VSS automation with ruby win32ole

I am trying to automate some of operation and gather information from a microsoft visual SourceSafe6.0 repo, using ruby1.9 and WIN32OLE gem. it is possible to create a OLE object with require ...
0
votes
0answers
56 views

Can't launch win32Ole application when running as service

I am trying to use ruby's win32OLE automation inside some testing code. I have two scenarios 1) Run the testing code from the command line 2) Run the testing code from a Hudson slave which is ...
0
votes
1answer
79 views

Changing a chart's properties breaks after changing its location

In the following code, it's possible to change a chart title or its location by themselves, but changing its title after changing its location doesn't work, as indicated by the standard error logging. ...

1 2