Search results

  1. W

    value of widget from handle

    Is there a way to find the actual value (not the screen-value) of a widget using it's handle? I'm looking for something like WIDGET-HANDLE:VALUE. I tried peg, but had no luck. Somebody suggested INPUT-VALUE, but that's the same as the SCREEN-VALUE (except it's unformatted). Thanks, Wes
  2. W

    delete triggers

    Alright. I figured this out. In the procedure, I can use the PROGRAM-NAME(2) function to get not only the file name, but the internal procedure of that file. Wes
  3. W

    delete triggers

    I am manually defining a delete trigger for a database table in my application and have ran into a little snag. I need to be able to find out what window/procedure caused this trigger to fire. Inside the trigger, even the CURRENT-WINDOW:NAME and ACTIVE-WINDOW:NAME return as ...
  4. W

    Launch External Application from GUI

    Stick this in your definitions section: /* THIS IS FOR OS-COMMAND FUNCTIONALITY WITH UNC PATHS */ PROCEDURE ShellExecuteA EXTERNAL "shell32" : define input parameter hwnd as long. define input parameter lpOperation as char. define input parameter lpFile as char. define input parameter...
  5. W

    Dynamic TEMP-TABLE Parameter

    I need to be able to accept ANY temp-table as an input parameter, which means I can't accept a TABLE - it has to be a TABLE-HANDLE or HANDLE. I can use the table in the new window, but the formatting of the temp table seems to have reverted back to the progress defaults. I need to build a...
  6. W

    OT:ArcView8

    Has anybody had any experience creating an interface to ArcView8? In version 3, we used an avenue script to connect to ArcView, then we ran a zoom script that selected the data we wanted and zoomed in. In version 8, they now us VBA instead of the avenue script and zoom scripts. If anybody has...
  7. W

    input from serial port

    Update OK, I found the some code on www.fast4gl.com. It's the serial.i.txt file. Has anybody used this before? I'm cautious about trying code from the 'net. There's not much documentation on this procedure, and it's going to be a pain to test this to see if it works. Thanks, Wes
  8. W

    input from serial port

    What is the easiest way to read a stream of information from the serial port (using 9.1D)? In the Progress help for "Input from", it says you can input from a 'opsys-device'. I assume this 'opsys-device' can be a serial port, but it doesn't list how to reference the serial port. Do I use...
Back
Top