mirror of
https://github.com/Bjanski/ExAd.git
synced 2024-08-30 16:52:14 +00:00
9 lines
301 B
Plaintext
9 lines
301 B
Plaintext
params ["_display","_parent","_idc","_position","_actionOnSelChanged","_tooltip","_ctrl"];
|
|
|
|
_ctrl = _display ctrlCreate ["RscCombo",_idc,_parent];
|
|
_ctrl ctrlSetPosition _position;
|
|
_ctrl ctrlSetEventHandler ["LBSelChanged",_actionOnSelChanged];
|
|
_ctrl ctrlSetTooltip _tooltip;
|
|
_ctrl ctrlCommit 0;
|
|
|
|
_ctrl |