News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

RaFile question

Started by Faiseur, January 10, 2005, 05:16:50 PM

Previous topic - Next topic

Faiseur

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
French asm Forum: http://www.asmforum.net/   Website: http://www.faiseur.net/

KetilO

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

Faiseur

Hi KetilO,

Thank you very much.  That functions perfectly.


Regards,

faiseur

French asm Forum: http://www.asmforum.net/   Website: http://www.faiseur.net/