The MASM Forum Archive 2004 to 2012

Project Support Forums => IDE Development and Support => RadAsm Support Forum => Topic started by: Bros on July 27, 2006, 03:19:34 PM

Title: RaGrid Problem
Post by: Bros on July 27, 2006, 03:19:34 PM
Hello

I have added a Ragrid in my project.

When I build my project, I have no error but when I execute it, the window never appear.

If I remove the Ragrid Compenent,  - Rebuild - Execute , the window is back again?

What can i do to see mly window with my Ragrid?
Title: Re: RaGrid Problem
Post by: Shantanu Gadgil on July 27, 2006, 05:55:22 PM
Sounds very much like a "common control" problem!!!  :green :green

How about giving "InitCommonControls" a try?
OR
include the manifest thingy (XP themes enabling one)

EDIT:
I am not actually testing anything here myself, do let me know how/why things turn out!  :bg
Title: Re: RaGrid Problem
Post by: Bros on July 28, 2006, 09:11:34 AM
Hello

Thanks for your answer but I have done a InitCommontControls.

start:
invoke InitCommonControls

invoke GetModuleHandle, NULL
mov    hInstance,eax


Xp theme is working very well... but no ragrid ...  :'(
Title: Re: RaGrid Problem
Post by: Shantanu Gadgil on July 28, 2006, 06:38:50 PM
QuoteI have done a InitCommontControls
Cool!

This might sound silly, but how 'bout InitCommonControlsEx (with _ALL_ the styles enabled maybe?)
Title: Re: RaGrid Problem
Post by: KetilO on July 30, 2006, 06:28:30 PM
Hi Bros

You must load the RAGrid.dll


start:

invoke GetModuleHandle,NULL
mov  hInstance,eax
invoke LoadLibrary,offset szRAGridDLL
.if eax
  mov  hRAGridDLL,eax
  invoke InitCommonControls
  invoke DialogBoxParam,hInstance,IDD_DIALOG1,NULL,addr DlgProc,NULL
  invoke FreeLibrary,hRAGridDLL
.endif
invoke ExitProcess,0


See the many RAGrid examples found on my website.

KetilO
Title: Re: RaGrid Problem
Post by: Bros on August 01, 2006, 11:45:55 AM
Thanks a lot  :U :thumbu