Whenever I select a letter from a combobox on a GUI i made it turns up blank instead of whatever letter I choose.
Heres my code:
Code:
;GUI FOR MARCO EXTENDER
Gui, Add, GroupBox, x10 y170 w435 h155, Marco Extender
Gui, Add, Text,xp+5 yp+15, Hotkeys that send spells: Insert, Home, PageUp, Delete, End, and PageDown
;
Gui, Add, Text, xp+0 yp+20, Insert Spell:
IniRead, ins, C:\Documents and Settings\Owner\Desktop\settings.ini, marcoex, Insert Spell:
Gui, Add, ComboBox, vInsert gInsertKey, a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U||V|W|X|Y|Z
;
Gui, Add, Text, xp+125 y205, Home Spell:
Gui, Add, ComboBox, vHome gHomeKey, a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V||W|X|Y|Z
;
Gui, Add, Text, xp+125 y205, PageUp Spell:
Gui, Add, ComboBox, vPageUp gPageUpKey, a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W||X|Y|Z
;
Gui, Add, Text, x15 y255, Delete Spell:
Gui, Add, ComboBox, vDelete gDeleteKey, a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X||Y|Z
;
Gui, Add, Text, xp+125 y255, End Spell:
Gui, Add, ComboBox, vEnd gEndKey, a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y||Z
;
Gui, Add, Text, xp+125 y255, PageDown Spell:
Gui, Add, ComboBox, vPageDown gPageDownKey, a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z||
There are a few double pipes ( the "|" character) after certain letters of the alphabet in the comboxes, which are there purposfully so that those are assumed. Just don't want you being confused bout that.
Is this a bug or did I write something wrong?
Full code here:
http://www.geocities.com/aikscroll/master.txt