... Yes, this is it. ... Yep, I found the way to specify the depecnedcy: #pragma comment(linker,"/manifestdependency:\"type='win32'...
16229
Andrey Sergienko
wat_zap
Dec 3, 2009 11:56 pm
Hello! I'm writing a WTL-application. I have some function that operates with TCP/IP. It spends a lot of time on work. So I want to display some status of it...
16230
Dick Dievendorff
g0mfo
Dec 4, 2009 12:00 am
Your long-running thread can't make UI function calls. But it can issue PostMessage to put user-defined status update messages onto the message queue of your...
16231
Andrey Sergienko
wat_zap
Dec 4, 2009 6:42 am
Hello. Can you, please, put a piece of code here for example or give me a link where to read about that? Thanks! ... -- Regards Andrey...
16232
Johann Gerell
unsygn
Dec 4, 2009 7:33 am
http://www.codeproject.com/KB/threads/usingworkerthreads.aspx ... From: wtl@yahoogroups.com [mailto:wtl@yahoogroups.com] On Behalf Of Andrey Sergienko Sent:...
16233
Konstantin Mironovich
const_at_ixbt
Dec 4, 2009 11:13 am
seems overcomplicated. volatile int statusID; // will be enough for current case. statusID = STATUS_XXX; // is atomic operation so any lock is not needed see...
16234
Johann Gerell
unsygn
Dec 4, 2009 11:59 am
Ehum? Are you calling PostMessage overcomplicated and mentioning IBindStatusCallback as a counter-example, all in the same breath? That's a higher sense of...
16235
Konstantin Mironovich
const_at_ixbt
Dec 4, 2009 12:42 pm
counter-example (for the case) before clause "see also" -km ... From: Johann Gerell To: wtl@yahoogroups.com Sent: Friday, December 04, 2009 2:56 PM Subject:...
16236
mgrandau
Dec 4, 2009 1:20 pm
Just PostMessage a WM_SETTEXT to the window handle of the status window. You pass that window handle to the worker thread at init. ...
16237
Igor Tandetnik
itandetnik
Dec 4, 2009 2:52 pm
... You can't really use WM_SETTEXT with PostMessage, except perhaps when using a hardcoded string literal for the text. Otherwise, you'll either leak the...
16238
Mark Grandau
mgrandau
Dec 4, 2009 3:20 pm
Thats why I said you need to make sure the memory for the string doesn't go away. You can preallocate a buffer. Pass it in with the handle to the init of the...
16239
Jim Barry
jim_barry.geo
Dec 7, 2009 11:20 am
... That's not reference counting, it's just transfer of ownership. Anyway, in this case I would suggest storing the text in a string object (CString, ...
16240
yarp
yarp2002
Dec 15, 2009 11:13 am
Hi, I would like to Hide/Show some Toolbar Separators in a modal Dialog Toolbar. I have tried this solution: void HideSeparator(int nIndex, BOOL bHide) { ...
16241
yarp
yarp2002
Dec 16, 2009 6:30 am
Many thanks to Jonathan Davies who gave me the solution. When setting Text to Toolbar button set the TBSTYLE_EX_MIXEDBUTTONS style like this: if...
16242
false
shuaixh
Dec 20, 2009 3:45 pm
hello, what's the highest version of wtl that can be used in VC6 ATL3.0 ? Â It seems , wtl ___________________________________________________________ ...
16244
Igor
igorv007
Dec 26, 2009 8:49 pm
Hi, all, I am facing the same issue as described in this post http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=93377 - Tooltips...
16245
yarp
yarp2002
Dec 28, 2009 6:23 am
As far as I can see from the bug report you provided there is a workaround: "... Add a MouseEnter event on all the controls and modify the MouseEnter event to...
16246
Igor Vigdorchik
igorv007
Dec 28, 2009 3:44 pm
The provided workaround is C# code, my code is C++ WTL code and I could not find "Active" property in the CToolTipCtrl class. Thanks, Igor. ...
16247
domehead100
Dec 29, 2009 3:44 am
If you've subclassed the control, you can use the TrackMouseEvent API to accomplish tracking the mouse leaving the control. Then,...
16248
Igor Vigdorchik
igorv007
Dec 29, 2009 3:57 am
Thanks a lot, Mike. I'll try that. Regards, Igor. ________________________________ From: domehead100 <domehead100@...> To: wtl@yahoogroups.com Sent: Mon,...
16249
Igor
igorv007
Dec 30, 2009 2:53 am
Mike, I did as you suggested and it worked. Thank you very much! Regards, Igor....
16250
vinarasiv_2000
Jan 4, 2010 1:27 pm
Hi, when am trying to use the WTL ,geting the flowing assertion , can some help me out in solving this problem Debug Assertions Failed! File :atldlgs.h line...
16251
Rocinante0
Jan 4, 2010 1:27 pm
I want to create an application that has a fixed window on each side of the screen and in the middle can display different dialogs. The fixed windows will...
16252
domehead100
Jan 4, 2010 4:04 pm
Hi Jeff, I don't see how this has anything to do with command bars. Sounds like all you need is an SDI app with a "view" that is a container for different...
16253
Jeff Boeker
Rocinante0
Jan 5, 2010 1:47 am
Hello Mike, Thanks for surveying the possibilities. The reason I initially thought of command bars is because when I used MFC in a similar project some years...
16254
domehead100
Jan 5, 2010 1:25 pm
Hi Jeff, Of course, those were just some of the possibilities, but hopefully relatively simple ones. One thing about WTL compared to MFC is that is brings you...
16255
Jim Barry
jim_barry.geo
Jan 5, 2010 3:08 pm
... This should be pretty easy. Just create the side windows as children of the frame window, and implement an UpdateLayout member function in your frame ...
16256
umeca74
Jan 8, 2010 4:13 pm
Hi and happy new year! I want to make my toolbars look smarter so the ALPHA wtl sample looks just the ticket. I would prefer if the toolbar was sourced from a...
16257
umeca74
Jan 24, 2010 1:40 pm
here's how it's done using GDI+ // somewhere after CreateSimpleToolBarCtrl is called... Gdiplus::Bitmap* gbm = Gdiplus::Bitmap::FromFile(L"res92;\test.png"); ...
16258
Alain Rist
arnavpoch
Jan 26, 2010 11:06 am
Relook your Old and New Native Applications with a Ribbon UI under Vista or Windows 7 cheers, AR [Non-text portions of this message have been removed]...