Click here to Skip to main content
15,910,121 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
AnswerRe: How to Connect to database in ntservice Pin
toxcct23-May-05 3:43
toxcct23-May-05 3:43 
AnswerRe: How to Connect to database in ntservice Pin
Sergey Solozhentsev30-May-05 5:30
Sergey Solozhentsev30-May-05 5:30 
Generalabout outlook addin Pin
Member 198215421-May-05 0:53
Member 198215421-May-05 0:53 
GeneralHELP!!! using DISTINCT keyword causes error 0x80040E21 Pin
oyinbogo19-May-05 11:43
oyinbogo19-May-05 11:43 
GeneralError registering window class Pin
Fantmx19-May-05 10:15
Fantmx19-May-05 10:15 
GeneralRe: Error registering window class Pin
Michael Dunn19-May-05 20:17
sitebuilderMichael Dunn19-May-05 20:17 
GeneralRe: Error registering window class Pin
Fantmx20-May-05 3:05
Fantmx20-May-05 3:05 
GeneralRe: Error registering window class Pin
Michael Dunn20-May-05 9:20
sitebuilderMichael Dunn20-May-05 9:20 
Use the CWindowImpl window traits parameter to set the default styles:
typedef CWindowTraits<WS_POPUP, WS_EX_NOPARENTNOTIFY|WS_EX_TOPMOST> InfoPopupTraits;
 
class CInfoPopup : public CWindowImpl<CInfoPopup, CWindow, InfoPopupTraits>, ...
{ ... };
Then create a window using CInfoPopup which makes ATL register the window class:
CInfoPopup wnd;
wnd.Create ( mParent->m_hWnd, rect );


--Mike--
Visual C++ MVP Cool | :cool:
LINKS~! Ericahist | 1ClickPicGrabber | CP SearchBar v2.0.2 | C++ Forum FAQ
Strange things are afoot at the U+004B U+20DD

GeneralRe: Error registering window class Pin
Fantmx20-May-05 10:19
Fantmx20-May-05 10:19 
GeneralRe: Error registering window class Pin
Michael Dunn20-May-05 12:14
sitebuilderMichael Dunn20-May-05 12:14 
GeneralRe: Error registering window class Pin
Fantmx3-Jun-05 8:48
Fantmx3-Jun-05 8:48 
Generalputting custom icons Pin
Anonymous19-May-05 3:48
Anonymous19-May-05 3:48 
QuestionSOS!Why I could not call the function from a dll? Pin
kiluar18-May-05 22:41
kiluar18-May-05 22:41 
AnswerRe: SOS!Why I could not call the function from a dll? Pin
Sergey Solozhentsev30-May-05 5:25
Sergey Solozhentsev30-May-05 5:25 
GeneralATL VC 7.xxx Pin
oscarferreira118-May-05 11:51
oscarferreira118-May-05 11:51 
Questionhelp: why a ATL control created in VC can not work well in vb? Pin
ictory18-May-05 3:29
ictory18-May-05 3:29 
AnswerRe: help: why a ATL control created in VC can not work well in vb? Pin
Jörgen Sigvardsson18-May-05 12:14
Jörgen Sigvardsson18-May-05 12:14 
Generalsimple c++ question Pin
Timothy_198217-May-05 0:53
Timothy_198217-May-05 0:53 
GeneralRe: simple c++ question Pin
James R. Twine17-May-05 1:23
James R. Twine17-May-05 1:23 
GeneralRe: simple c++ question Pin
Timothy_198217-May-05 1:27
Timothy_198217-May-05 1:27 
GeneralRe: simple c++ question Pin
James R. Twine17-May-05 3:31
James R. Twine17-May-05 3:31 
GeneralRe: simple c++ question Pin
[tlg]1-Jun-05 14:29
[tlg]1-Jun-05 14:29 
GeneralImplementing and exposing multiple Event interfaces in ATL. Pin
James R. Twine16-May-05 7:47
James R. Twine16-May-05 7:47 
GeneralRe: Implementing and exposing multiple Event interfaces in ATL. Pin
Stuart Dootson16-May-05 20:54
professionalStuart Dootson16-May-05 20:54 
GeneralRe: Implementing and exposing multiple Event interfaces in ATL. Pin
James R. Twine17-May-05 1:00
James R. Twine17-May-05 1:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.