Is there anyway to use the command buttons in excel to send events to Girder using visual basic?
Is there anyway to use the command buttons in excel to send events to Girder using visual basic?
I think the best way (I haven't tried it) is to use Girders COM object. WScript example below.Code:Girder COM Object Girder provides an COM object to allow other programs to directly send events to Girder. Here is an example from WScript. GirderEvent = WScript.CreateObject("Girder.GirderEvent"); GirderEvent.Device = 18; GirderEvent.EventString = "MyEvent"; GirderEvent.Payload(1) = payload; GirderEvent.Send();