Hi KetilO,
thanks for your work. RadAsm and its custom controls are very good for me. I use RadAsm and EasyCode with Masm.
A question: It is possible to change the background or text color of your "FileBrowser" (RaFile.dll) ? I tested but I does not succeed for the moment.
Regards,
faiseur
Hi
FILEBROWSER struct
htrv dd ?
htbr dd ?
himl dd ?
hthread dd ?
hchange dd ?
ntimer dd ?
ffilter dd ?
filter db MAX_PATH dup(?)
filepath db MAX_PATH dup(?)
FILEBROWSER ends
.code
.
.
.
.
;Get pointer to FILEBROWSER structure
invoke GetWindowLong,hFileBrowser,0
;Get handle of TreeView
mov eax,[eax].FILEBROWSER.htrv
invoke SendMessage,eax,TVM_SETBKCOLOR,nColor,0
.
.
.
KetilO
Hi KetilO,
Thank you very much. That functions perfectly.
Regards,
faiseur