Ok, you asked for it, my friend! I've ben reading up on it, seems fairly straight forward. And I'm quite excited to take my knowledge to the next stop. If you can just inform me how to write a while loop to load info into a combo box I think I'll be set. ![]()
Here is my demo dialog code...
alias ht {
dialog $iif($dialog(hash.table),-x,-mh hash.table) hash.table
}
dialog hash.table {
title "Nicknames"
size -1 -1 160 48
option dbu
combo 1, 4 3 84 82, size edit drop
button "Add", 2, 91 2 32 12
button "Delete", 3, 124 2 32 12
button "Close", 4, 124 32 32 12, ok cancel
}
On *:Dialog:hash.table:sclick:2:{
hadd -s Nicknames $did($dname,1).text
<alias for loop goes here>
}
Thanks heaps in advance ![]()