Hi wink

i've created a dialog with a combobox and 2 buttons

Code:
 
[...]
combo 666,58 30 50 50,tab 1
button "Add",667, 114 30 20 9, tab 1
button "Rem",668, 114 40 20 9, tab 1
[...]
 


if i write something into the upper part of the combo box and klick the add button, the text is added to the lower part

Code:
  

on *:dialog:bla:sclick:*:{
   if ($did == 667) && ($did($dname,666).sel == $null) && ($did($dname,666).text != $null) { 
did -a $dname 666 $did($dname,666).text 
  }
}



now i want, that if i close the dialog and restart it, the values that were in the combo box before, are reloaded too

pleeeeeeeeeaaaaaaaase help me smile