similar to: [ win32utils-Feature Requests-25792 ] Create a pure Ruby win32-ole library

Displaying 20 results from an estimated 400 matches similar to: "[ win32utils-Feature Requests-25792 ] Create a pure Ruby win32-ole library"

2008 Jun 10
7
Unraveling a FAR*
Hi all, Just looking over fole_s_connect() in win32ole.c and I noticed this bit: hr = CLSIDFromProgID(pBuf, &clsid); ... hr = GetActiveObject(&clsid, 0, &pUnknown); ... hr = pUnknown->lpVtbl->QueryInterface( pUnknown, &IID_IDispatch, (void **)&pDispatch ); Using win32-api, that would be something like: IID_IUnknown =
2005 Nov 10
3
[ win32utils-Feature Requests-2811 ] Add UNC support to file / dir
Feature Requests item #2811, was opened at 2005-11-10 15:17 You can respond by visiting: http://rubyforge.org/tracker/?func=detail&atid=414&aid=2811&group_id=85 Category: None Group: None Status: Open Resolution: None Priority: 3 Submitted By: graham foster (fosterg2) Assigned to: Nobody (None) Summary: Add UNC support to file / dir Initial Comment: I''d like to see win32
2009 Nov 14
1
Filmon HDI Player
Hello, wonder if anyone can help here - perhaps a winetrick (tried DIVX - doesn't help, and slight problems with Ubuntu 9.10, like some other Linux programs have). I have tried to install a MS Windows program to watch TV, films etc. over the Internet from filmon.com. The program gives a "network problem" message after trying to authenticate the log-in name and password. There is no
2007 Apr 11
5
WIN32OLE MS Word Help
Hi all, I am trying to create word document in ruby using WIN32OLE. as.. require ''win32ole'' word = WIN32OLE.new("Word.Application") word.visible = true word.documents.add selection = word.selection word.Selection.TypeText "This is some text." ... .. . Can we set header and footer to document? I want to generate a document such that its header contains an
2006 May 06
3
[BUMP] conditional require? conditional action code?
Greetings all. I have some controller code that uses win32ole (only available on windows). This code is now solid, and I''d now like to resume development on (any) other OS(grin). But alas, the controller bails because the OS specific library can''t be found. Can I conditionally specify action code compilation (and a require ''win32ole'') based on OS or
2010 Oct 16
1
FlipShare
Hi folks, Trying to get flipshare to install under wine 1.3.1. After installing WMP10 via winetricks, it does install but after I do wineboot it still tells me I need to reboot my computer. Is there another workaround besides wineboot? Code: samantha at Samantha-pc:~/.wine/drive_c/Program Files/Flip Video/FlipShare$ wine FlipShare.exe fixme:ntdll:NtLockFile I/O completion on lock not
2006 May 04
1
conditional require? conditional action code?
Greetings all. I have some controller code that uses win32ole (only available on windows). This code is now solid, and I''d now like to resume development on (any) other OS(grin). But alas, the controller bails because the OS specific library can''t be found. Can I conditionally specify action code compilation (and a require ''win32ole'') based on OS or
2007 Sep 10
12
mongrel_rails service on windows incompatible with recent ruby builds?
i was suffering from a massive memory leak in my application. after searching and testing for quite a while i finally found that it wasn''t my app that had a leak but the win32ole support that was used by the ADO driver in sqlserver adapter. the solution to fix the leak was to install ruby 1.8.5p52 or 1.8.6p36 but sadly as soon i install one of the fixed releases mongrel won''t
2007 Nov 21
1
win32ole event handling
I''m evaluating FXRuby for my application. So far everything is going pretty well. The news on the book is good, but I wish it were available today! First off, I''m not much of a Windows programmer (that''s what makes FXRuby so valuable to me). I''m using win32ole to interface to a custom ocx. Calling methods of the ocx works fine. Now I need to receive event
2007 Apr 16
4
newbie :: Running script at client side
Hi all, I am newbie to Ruby and web programming as well. My show.rhtml is like, . .. ... <% require ''win32ole'' %> <% ie = WIN32OLE.new(''InternetExplorer.Application'') %> <% ie.visible = true %> <% ie.gohome %> ... .. . At server, when I access http://.../show it''ll open Iexplorer.exe as expected, but when I access same from
2005 Jul 15
1
Win32OLE ?
Dan/Park, What are your thoughts about implemented portion of the win32utils family that are written in ruby utilizing WIN32OLE. I have found myself writing decent amount of ruby code accessing the Windows Scripting Host (WSH) object models. I have a few scripts which could be added. I do not believe the functionality is currently available with win32utils: - map network drives -
2009 Jan 13
1
ROR - Excel Export Example
If you are running on Windows you can use create and read speadsheets using the ''win32ole'' require This sample should give you the basic idea ------ def export require ''win32ole'' @sort_by = ''last_name'' current_user = ''steve'' @records = Contact.find( :all, :conditions =>
2007 Apr 11
2
can we use MS Word Template using Ruby
Hi all, I am creating MS word document using ruby. can I use a "template" document in Microsoft word with place holders for dynamic data from database using ruby. Like, I''ve a template, I want to fill it by data from database, using ruby. Please help me out. Thanks, -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received
2007 Jan 17
12
Excel sheet generation
Hi, Does anyone know of a package that will help with generation of spreadsheets? (xls files, not csv) Thanks, Fredrik --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe
2007 Dec 10
1
kernel#system
Salut Alex. Dans mon application, j''ouvre IE7 avec kernel#system et j''aimerai pouvoir maximizer IE7 à l''ouverture. Il faut que je passe qu''elle commande à kernel#system pour pouvoir le maximizer? merci sebastien http://beusse.liveror.com _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org
2007 Jun 28
2
Keeping GUI responsive while processing data
To start I will say I have read through the read "Problem with threads" to try and work around this problem, but I do not think I understand what is happening enough to make use of the info I found there. My app is pretty basic and does some text processing on 2 files and uses WIN32OLE to take the data and put it an excel sheet. The processing is really fast, but loading up Excel
2005 Mar 01
5
Open3.popen3 bug
Running this program: require ''win32/open3'' i, o, e, pid = Open3.popen3("c:/ruby/bin/ruby.exe -e\"sleep 10\"") i.close Gives this result: C:\_co\source\build\web\temp>ruby t.rb t.rb:5: [BUG] Segmentation fault ruby 1.8.2 (2004-06-29) [i386-mswin32] This application has requested the Runtime to terminate it in an unusual way. Please
2005 May 18
2
Networking functionality?
Is there (if not, can we get) the functionality to query for workstations in the local workgroup or domain? Zach
2004 May 16
1
com/dcom
Hi all, I was just reading my "Python Programming on Win32" and I saw how easy it was to setup a COM server and a class. I tried to download Ralph Mason''s rubycom package, but the link is dead. I''ve emailed Ralph, but if rubycom isn''t being maintained any more, I think we should work on a COM/DCOM interface next. Or, is this already possible with
2006 Oct 26
5
[ win32utils-Patches-6335 ] pure ruby implementation
Patches item #6335, was opened at 2006-10-26 16:51 You can respond by visiting: http://rubyforge.org/tracker/?func=detail&atid=413&aid=6335&group_id=85 Category: win32-shortcut Group: None Status: Open Resolution: None Priority: 3 Submitted By: Jano Svitok (janek) Assigned to: Nobody (None) Summary: pure ruby implementation Initial Comment: This is (not finished) pure-ruby