Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If you need to switch to another format, just use the Combo property to reset the combo box drop down settings and the data all at once.'

Example

Code Block
// NOTE: using ; and not . 
CtrlId = @Window:";EDITLINE" 

// Get the combo box data for my edit line 
Data = Get_Property(@Window:".OLE_SUBCLASS", "OLE.ComboData[":CtrlId:"]") 

// ... Make Changes to Data ... 

// Set new combo box data for 
Set_Property(@Window:".OLE_SUBCLASS", "OLE.ComboData[":CtrlId:"]", Data)

...