Re: [Win32Lib] weird RichEdit problem
- Posted by "danielmoyer" <danielmoyer at prodigy.net> Sep 07, 2004
- 500 views
----- Original Message ----- From: "Derek Parnell" <guest at RapidEuphoria.com> To: <EUforum at topica.com> Sent: Monday, September 06, 2004 4:09 PM Subject: Re: [Win32Lib] weird RichEdit problem > > > posted by: Derek Parnell <ddparnell at bigpond.com> > > danielmoyer wrote: > [snip] > > > > Does this make it seem that if it's the .dll that's the problem, I would > > need to copy Riched32.dll from laptop to desk pc, rather than riched32.dll? > > The way win32lib works is that if first looks for riched20.dll. If found > it uses that, otherwise it tries to use riched32.dll Derek, More confusion: when I look at properties of riched20.dll on both machines, they BOTH say that it's version *3.0* . Even has the same "file version" number (5.30.23.1200) Dan > > You can changes behaviour to look for 32.dll before 20.dll by > editing w32dll.ew. Change ... > > riched32 = registerw32Library({"riched20.dll","riched32.dll"}), -- Rich Edit control > > to > > riched32 = registerw32Library({"riched32.dll","riched20.dll"}), -- Rich Edit control > > > Then have 32.dll inside your application directory. I think that'll work. > > BTW, I think I should change win32lib to look for 32.dll before 20.dll. > > -- > Derek Parnell > Melbourne, Australia >