Heres the code Ive typed up when Ive had time, changed the layout some and started on the brain of the dialog. What kind of stuff should I enter into the hash tables to return information into an editbox?

Code:
dialog InfoCenter {
  title "Wolf Roleplay IC/OOC Info Center"
  size -1 -1 493 409
  option pixels
  tab "IC Information (Roleplay Character)", 44, 4 90 483 277
  tab "OOC Information (Real Life)", 1
  box "", 41, 313 363 175 41
  box "Navigation", 2, 4 4 336 76
  box "", 40, 103 13 229 44
  box "IC Info (Character-Based)", 42, 16 118 458 230, tab 44
  box "OOC Info (Real-Life)", 22, 16 118 458 230, tab 1
  combo 3, 172 26 152 58, edit drop
  text "Name:", 5, 34 141 32 16, tab 44 right
  text "Age:", 6, 262 141 24 16, tab 44 right
  text "Desc:", 7, 36 204 30 16, tab 44 right
  text "History:", 8, 26 253 40 16, tab 44 right
  text "Pack:", 9, 38 162 28 16, tab 44 right
  text "Rank:", 10, 36 183 30 16, tab 44 right
  edit "", 11, 66 139 194 20, tab 44
  edit "", 12, 286 139 24 20, tab 44 limit 2
  edit "", 13, 66 249 244 73, tab 44 autovs multi
  edit "", 14, 66 202 244 46, tab 44 autovs multi
  edit "", 15, 66 160 244 20, tab 44
  edit "", 16, 66 181 244 20, tab 44
  text "Address:", 17, 20 183 46 16, tab 1 right
  text "Name:", 18, 32 162 34 16, tab 1 right
  text "Age:", 19, 198 141 26 16, tab 1 right
  text "Email:", 20, 36 204 30 16, tab 1 right
  text "Notes:", 21, 33 225 34 16, tab 1 right
  icon 24, 320 139 140 166, C:\Downloads\Ryan\skylaxdialogtest.jpg, 0 tab 44
  text "Nick:", 23, 42 141 24 16, tab 1 right
  edit "", 25, 66 139 130 20, tab 1 autohs
  edit "", 26, 66 160 182 20, tab 1 autohs
  edit "", 27, 66 181 182 20, tab 1 autohs
  edit "", 28, 66 202 182 20, tab 1 autohs
  edit "", 29, 224 139 24 20, tab 1
  edit "", 30, 66 223 244 84, tab 1 autovs multi
  icon 31, 320 139 140 166, C:\Downloads\Ryan\mefordialog.jpg, 0 tab 1
  button "Whois", 32, 248 139 62 20, tab 1
  button "Button", 33, 248 160 62 20, tab 1
  button "Chat", 34, 248 181 62 20, tab 1
  button "Email", 35, 248 202 62 20, tab 1
  button "Ok", 36, 324 374 76 22, ok
  button "Cancel", 37, 400 374 76 22, cancel
  radio "Female", 38, 390 309 58 16, tab 1
  radio "Male", 39, 340 309 46 16, tab 1
  button "Del", 4, 140 26 32 20
  button "View by: Hierarchy", 43, 20 19 81 38, multi default %Combomode
  edit "", 46, 66 308 244 20, tab 1
  text "URL:", 45, 40 310 26 16, tab 1 right
  radio "Male", 61, 340 309 46 16, tab 44
  radio "Female", 62, 390 309 58 16, tab 44
  button "Add", 68, 108 26 32 20
  box "", 69, 315 127 150 214, tab 44
  box "", 70, 315 127 151 214, tab 1
  button "ยป", 71, 340 9 14 72, flat default
  text "''Pack Information Center'' -- Part of Helion Script [Dialogs] Dialog constructed and coded by Zephyr LeMarr.(Skylax)", 72, 17 371 279 30, center
  box "", 73, 4 360 304 45
  menu "File", 47
  item "Update Data", 52, 47
  item "Save and Close", 53, 47
  item "Exit w/o Save", 54, 47
  menu "Edit", 48
  menu "IC", 55, 48
  item "Choose Icon Picture...", 63, 55
  menu "OOC", 56, 48
  item "Choose Icon Picture...", 64, 56
  menu "View", 49
  menu "Editable Lists", 57, 49
  item "...of Ranks", 65, 57
  item "...of Packs", 66, 57
  item "...of Nicks", 67, 57
  menu "Other", 50
  item "Extras", 58, 50
  menu "Help", 51
  item "About", 59, 51
  item "Credits", 60, 51
}
;----------------------------------------
alias SetDefault {

  ComboNick
}
alias ComboNick {
  ;$hget(Combonicks,)
}
alias ComboPack {
  ;$hget()
}
alias ComboRank {
  did -a InfoCenter 3 Alpha
  did -a InfoCenter 3 Beta
  did -a InfoCenter 3 Elder
  did -a InfoCenter 3 Gamma
  did -a InfoCenter 3 Sentinal
  did -a InfoCenter 3 Hunter/Scout
  did -a InfoCenter 3 Caretaker
  did -a InfoCenter 3 Packmates
  did -a InfoCenter 3 Pups
  did -a InfoCenter 3 Omega
}
alias ComboChar {

}
alias Hidepop {
  did 
}
;-----------------------------------------
ON *:DIALOG:InfoCenter:INIT: {
  SetDefault
  Hidepop
}
ON *:DIALOG:InfoCenter:sclick:43: {
  if ( %Combomode == View by: Hierarchy ) { did -ra $dname 43 View by: Nicknames | set %Combomode View by: Nicknames | Combonick | goto end }
  elseif ( %Combomode == View by: Nicknames ) { did -ra $dname 43 View by: Characters | set %Combomode View by: Characters | ComboChar | goto end }
  elseif ( %Combomode == View by: Characters ) { did -ra $dname 43 View by: Wolfpacks | set %Combomode View by: Wolfpacks | Combopack | goto end }
  elseif ( %Combomode == View by: Wolfpacks ) { did -ra $dname 43 View by: Hierarchy | set %Combomode View by: Hierarchy | ComboRank }
  :end
}
ON *:DIALOG:InfoCenter:sclick:71: {
  did -h $dname 2
}