Search results

  1. S

    Functions Overload

    You cannot overload functions in 9.1 but you CAN overload procedures providing they are in a super procedure and have the same signature. Functions can't be overloaded but can be used in super procedures and making the call in your program very easy. To use them you use the proto-type with "in...
  2. S

    screen buffer access

    Don't know if you got an answer to this yet but in case you haven't you can pass the handle to the record buffer. def var hbuffer as handle no-undo. function myfunction returns logical (input hbuffer as handle) forward. hbuffer = buffer tablename:handle. myfunction(hbuffer)...
Top