I want to change the default icon in the dialog's left corner, but i can't get it to work, this is the test dialog i using.
Code:
alias test { if (!$dialog(test)) { dialog -m test test } }
dialog test { 
  title "A simple test"
  icon $mircdir\icons\ico.icl, $+ %icon <- don't work
  size 550 250 142 52
  option dbu
  button "&Ok", 1, 55 39 35 10, ok
  icon 2, 118 20 19 19, $mircdir\icons\ico.icl, $+ %icon , small <- working
}

as you see it working if i place the icon in the dialog (ID 2), but not if i try place it in the left corner, ideas please.