The MASM Forum Archive 2004 to 2012

Project Support Forums => IDE Development and Support => RadAsm Support Forum => Topic started by: Faiseur on January 10, 2005, 05:16:50 PM

Title: RaFile question
Post by: Faiseur on January 10, 2005, 05:16:50 PM
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
Title: Re: RaFile question
Post by: KetilO on January 10, 2005, 07:54:04 PM
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
Title: Re: RaFile question
Post by: Faiseur on January 10, 2005, 09:57:53 PM
Hi KetilO,

Thank you very much.  That functions perfectly.


Regards,

faiseur