Sorry if I`m asking dumb question.
I never dealed WM_INITDIALOG message and GetDlgItem proc, but all RAGrid examples I`ve found using are created with them.
How to deal RAGrid control thru WM_CREATE and CreateWindowEx?
p.s. Does any RAGrid documentation with all things described exist?
I never dealed WM_INITDIALOG message and GetDlgItem proc, but all RAGrid examples I`ve found using are created with them.
How to deal RAGrid control thru WM_CREATE and CreateWindowEx?
p.s. Does any RAGrid documentation with all things described exist?
veach1,
I don't know the proper answer to your question: why a dialog instead of a "standard" window, but I believe it might be possible to implement the grid in a standard window.
What I can tell you is that RAGrid is a very useful tool I use in a number of programs that are used heavily every day. I'll be glad to try to help you with any questions. What are you trying to create with the RAGrid, maybe that might let us make suggestions or show examples.
farrier
I don't know the proper answer to your question: why a dialog instead of a "standard" window, but I believe it might be possible to implement the grid in a standard window.
What I can tell you is that RAGrid is a very useful tool I use in a number of programs that are used heavily every day. I'll be glad to try to help you with any questions. What are you trying to create with the RAGrid, maybe that might let us make suggestions or show examples.
farrier
I`m writing database viewer and used standart ListView in it, but 25 columns containig 15000 rows... even scrolling killing me. So I decided to use RAGrid ctrl, it have really good things inside.
Hi veach1
It is not a problem using CreateWindowEx.
Here is an example.
KetilO
It is not a problem using CreateWindowEx.
Here is an example.
KetilO
Thank you.
One more question, please.
I wish to make DLL independent program.
What should I change to use RAGrid linked from LIB file?
I wish to make DLL independent program.
What should I change to use RAGrid linked from LIB file?
veach1,
For MASM:
include ragrid.inc
includelib ragrid.lib
farrier
I don't have unrar, most use .zip format!! So I can tell what your code is! I thought you were using FASM?
For MASM:
include ragrid.inc
includelib ragrid.lib
farrier
I don't have unrar, most use .zip format!! So I can tell what your code is! I thought you were using FASM?
Hi
It's fasm.
Sorry, can't help since i don't know fasm syntax.
KetilO
It's fasm.
Sorry, can't help since i don't know fasm syntax.
KetilO
KetilO, how would you do it in MASM?
Include LIB I understand, but I mean how to initiate control without using LoadLibrary?
farrier,
here it is in zip :)
Include LIB I understand, but I mean how to initiate control without using LoadLibrary?
farrier,
here it is in zip :)
veach1,
Search both here and the FASM forum for posts from Vortex,
Try this:
http://www.asmcommunity.net/board/index.php?topic=10663.0
hth,
farrier
Search both here and the FASM forum for posts from Vortex,
Try this:
http://www.asmcommunity.net/board/index.php?topic=10663.0
hth,
farrier
hmmm... finally, after all, I`m still at the beginning
Doing it in masm is easy. Probably just as easy in fasm if you know how.
KetilO
KetilO
now I undestood it, thank you again!