While testing my application (a Win32 dll using WTL/ATL not a COM server, that exports functions to a mfc app) on Win98 I have had the following problem. Under...
Hi Phil, this might not be the direct solution to your problem, but are you aware that IsWindow() is only said to return zero or a non-zero value (non-zero ...
Hello Think I have seen some notes on this somewhere but can't find anymore. In Microsoft Word, there are some dropdown toolbar items. for example, the font...
You can add any control to a ReBar control, not just toolbars. Either create a custom composite control with your combo box and others on it, or just add a...
... Andreas said what the documentation specifies: BOOL IsWindow(... Return Value If the window handle identifies an existing window, the return value is...
According to the docs for IsWindow: Return Values If the window handle identifies an existing window, the return value is nonzero. If the window handle does...
Hello I'm looking for a syntax coloring edit control with multiple language syntax support. Does anybody known about a free implementation using WTL? I known...
Hello Pascal, ... syntax support. I know many are too... ... job :-( There is really no such plan - speaking as the one in charge :-), at least I will not. ......
Simon Steele has Scintilla in WTL right now. Check it out at http://sourceforge.net/projects/pnotepad/ it's called pnwtl. You'll have to get it via CVS. ...
Hello Pascal, ... So the EditCenter will make it a simple work for you. ... Not yet something at the level of EditCenter. The current is just a preparation ...
... http://sourceforge.net/projects/pnotepad/ it's called pnwtl. You'll have to get it via CVS. Alternatively if you don't want to get the entirety of pnwtl...
I would like to use DAO in WTL app to access MSAccess databases. Has anyone seen a wrapper for DAO that can be used in WTL/ATL? Or has anyone been successful...
... Why do you want to use DAO? Would ADO do? :-) Regards Paul Paul Grenyer Email: pjgrenyer@... Web: www.paulgrenyer.co.uk I've never been a follower of...
... Indeed. In C++, a variable of type 'bool' converts to an integer type as follows: 'false' becomes 0 and 'true' becomes 1. However, 'BOOL' is just a typedef...
... From: "Paul Grenyer" <pjgrenyer@...> To: <wtl@yahoogroups.com> Sent: Thursday, October 03, 2002 11:01 PM Subject: Re: [wtl] Dao in WTL ... Since WTL...
Hi ... Depends on the project. :-) OLEDB doesn't scale very well. Regards Paul Paul Grenyer Email: pjgrenyer@... Web: www.paulgrenyer.co.uk I've never been...
Thanks a bunch! I've been putting off the use of scintilla in a project for some time now because of the lack of a much needed C++ wrapper. Seems you found a...
Hello Pascal, You do not have to. Just let us complete the TextCenter and the EditCenter project will come out to help. You get this WTL-style wrapper and more...
Thanks My idea was to implement only the things I need until the EditCenter thing is out. I've a view that highlight C++ syntax and load/save the document and ...
Hello Pascal, ... and ... I understand. Very soon, you will wish to have bookmarks, print too :-( ... It is really not a secret project. Just that I am trying...
Hi Paul, That's the first complaint I've ever heard against OLDB , besides its being hard to use. Would you please expand on how it doesn't scale well? // ted ...
My tests with ADO against jet engine show it to be at least 7 times slower than DAO on queries. On some queries it was over 30 times slower. Microsoft admits...
I dont want to use ADO/oledb because my tests with this database showed ADO to be alot slower than DAO. Anywhere from 7 to 30 times slower than DAO in...