Hello,
somebody know how can I change the get alignment (rigth, left, center) in run time, the get is defined from resource
some idea
regards
Marcelo
Hello,
somebody know how can I change the get alignment (rigth, left, center) in run time, the get is defined from resource
some idea
regards
Marcelo
Marcelo,
You may try this:
nStyle = GetWindowLong( oGet:hWnd, GWL_STYLE )
// Changes nStyle from ES_LEFT to ES_RIGHT
nStyle = nOr( nXor( nStyle, ES_LEFT ), ES_RIGHT )
SetWindowLong( oGet:hWnd, GWL_STYLE, nStyle )
Hello Antonio,
thanks for your reply, I tryed it but not work, the get disappear, another suggestion ?
thanks and regards
Marcelo
Marcelo Via Giglio wrote:Hello,
somebody know how can I change the get alignment (rigth, left, center) in run time, the get is defined from resource
some idea
regards
Marcelo
Enrico,
Yes, thats a good idea ![]()
Enrico.
yes these was an idea, but I wanted to know another way, ok, if you konw other way, please tell me, and if I find other solution I will post here
regards
Marcelo
There is no other way, I'm afraid.
EMG