[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Win32 COM events

Tim Uckun

1/15/2007 11:55:00 PM

Hello All.

I want to translate the following VB code to Ruby. Does anybody know
how to handle these events?

Dim WithEvents myOBJ As SomeOBJ

Private Sub myOBJ_SomeEvent(ByVal nCommand As Integer,
ByRef cResult As String)

---
Also things like this...

Event SomeFunction(ByVal n as Integer)

SomeFunction(5)

Thanks in Advance.

2 Answers

Jano Svitok

1/16/2007 3:08:00 PM

0

On 1/16/07, Tim Uckun <timuckun@gmail.com> wrote:
> Hello All.
>
> I want to translate the following VB code to Ruby. Does anybody know
> how to handle these events?
>
> Dim WithEvents myOBJ As SomeOBJ
>
> Private Sub myOBJ_SomeEvent(ByVal nCommand As Integer,
> ByRef cResult As String)
>
> ---
> Also things like this...
>
> Event SomeFunction(ByVal n as Integer)
>
> SomeFunction(5)

If you want to receive COM events,
see WIN32OLE library, class WIN32OLE_EVENT,
Programming Ruby, chapter on windows support,
thread
http://groups.google.com/group/comp.lang.ruby/browse_frm/thread/98e22146a1c503e7/37b07544198f5bf1%2337b075...
http://groups.google.com/group/ruby-talk-google/browse_frm/thread/1dc66ac34191f20c/3e16fc7ea887a00a%233e16fc...
and my doc patch
http://rubyforge.org/tracker/?func=detail&aid=7557&group_id=426&...

If you want to rewrite the code without interacting with COM, it's
another story.
In that case, write in more detail what are you trieng to achieve.

Tim Uckun

1/25/2007 2:48:00 AM

0

>
> If you want to receive COM events,
> see WIN32OLE library, class WIN32OLE_EVENT,
> Programming Ruby, chapter on windows support,
> thread
> http://groups.google.com/group/comp.lang.ruby/browse_frm/thread/98e22146a1c503e7/37b07544198f5bf1%2337b075...
> http://groups.google.com/group/ruby-talk-google/browse_frm/thread/1dc66ac34191f20c/3e16fc7ea887a00a%233e16fc...
> and my doc patch
> http://rubyforge.org/tracker/?func=detail&aid=7557&group_id=426&...
>
> If you want to rewrite the code without interacting with COM, it's
> another story.
> In that case, write in more detail what are you trieng to achieve.
>
>

I have read the win32 doc, and I have read your doc patch. I don't
know if .invoke and on_event are compatible in some way or not.
though.

The example says...
router = WIN32OLE.new('SomeOleObject.Something')
ev = WIN32OLE_EVENT.new(router, nil)

ev.on_event {|*args| default_handler(*args)}
ev.on_event("NavigateComplete") {|url| navigate(url)}

in my case many of the params passed in are by reference and need to
be modified by the code that is handling the event. In other words the
ole object is requesting information my code by invoking events.

Do I still use the .invoke function here?