[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: data-types for dll's

  • Thread starter Thread starter Matt Gilarde
  • Start date Start date
Status
Not open for further replies.
M

Matt Gilarde

Guest
The .NET Handle property is the equivalent of the ABL HWND attribute. Hexadecimal values can be used in OpenEdge with the 0x prefix (zero, not the letter O):: &GLOBAL-DEFINE SSCE_IGNORE_CAPPED_WORD_OPT 0x1 &GLOBAL-DEFINE SSCE_IGNORE_MIXED_CASE_OPT 0x2 &GLOBAL-DEFINE SSCE_IGNORE_MIXED_DIGITS_OPT 0x4 In this case you can add the values to combine them because each value uses only a single bit. If the values used multiple bits you would have to use a bitwise OR to combine them. If you post a bit of code which you're having trouble with we can help you sort it out.

Continue reading...
 
Status
Not open for further replies.
Back
Top