[VxE]
Joined: 07 Oct 2006 Posts: 1496
|
Posted: Sat Aug 23, 2008 4:57 am Post subject: |
|
|
Like this?
| Code: | Gui, Add, Edit, r10 w400 vEdit1 gUpdate
Gui, Add, Edit, r10 X+2 w400 vEdit2
Gui, Show
return
Update:
msg =
oif := A_FormatInteger
SetFormat, Integer, h
GuiControlGet, Edit1
Loop, Parse, Edit1
msg .= StringUpper(SubStr( 0+Asc(A_LoopField), 3 )) " "
GuiControl,, Edit2, % msg
SetFormat, Integer, %oif%
return
StringUpper(string, t="")
{
StringUpper, string, string, %t%
return string
} |
Just fyi: hex is binary, though superficially condensed to a quarter of its length. In other words, hex and bin are slightly different ways of expressing the same information. _________________ My Home Thread
More Common Answers: [1]. It's in the FAQ [2]. Ternary ( a ? b : c ) guide [3]. Post code inside [code][/code] tags ! |
|