Results 1 to 2 of 2

Thread: command buttons to control Girder

  1. #1
    Join Date
    Apr 2004
    Posts
    3

    Default command buttons to control Girder

    Is there anyway to use the command buttons in excel to send events to Girder using visual basic?

  2. #2
    Join Date
    Dec 2001
    Posts
    11,560

    Default

    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();

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •