Quote:
I was actally talking about a combo box with the edit flag
combo 2, 10 15 110 10, edit, drop


change it to -k
test
Code:
alias combo dialog -dm combo combo
dialog combo {
  title "Combo Box Test"
  size -1 -1 150 100
  option dbu
  combo 2, 10 10 130 50, edit drop
  edit "Type Here", 200, 10 60 130 10, center
  button "CLICK", 900, 50 75 50 10
}
on *:dialog:combo:init:0:{
  var %i = 1
  while (%i <= 4) { 
    did -a combo 2 $r(a,z)
    inc %i
  }
  did -f combo 200
}
on *:dialog:combo:sclick:900:{ did -ik combo 2 0 $did(combo,200) }