Dear Nenad, I am still expecting some inputs on this problem. Could you help me out to do this, as you earlier said that I need some time on this. Thanks &...
370
Patrice Lafond
plafond@...
Oct 4, 2000 2:25 pm
Hi all, I want to do a little wizard to catch informations from client to fill a request. The way I would do it is to popup dialogs(one after the other). I now...
371
Massimo Mozzi
tecnompi@...
Oct 4, 2000 3:31 pm
It's better if you use the CPropertySheet & CPropertyPage classes and set the CPropertySheet to act as a wizard calling the method SetWizardMode(). massimo ......
372
ofer_sagi@...
Oct 4, 2000 6:35 pm
does anybody knows what happed to those web sites? www.clipcode.com www.worldofatl.com (atl/wtl related sites) they r not available anymore 10x...
373
Matasovsky, John
john.matasovsky@...
Oct 5, 2000 3:33 am
Patrice- I have seen it done that way. To get one that acts more like the wizards inside of most MS products, you can use a single dialog and enable/disable ...
374
shaun_wilde@...
Oct 5, 2000 8:26 am
hi all I ran my wtl app with boundschecker and I noticed what appears to be a resource leak with CCommandBarCtrl when it displays a checkbox. I have fixed it...
375
Sean Garratt
sgarratt@...
Oct 5, 2000 2:46 pm
I emailed them back on 09/05 and they said, reply attached. I guess its taking them longer. If you need their most recent docs, let me know, I have them. come...
376
Taras Tielkes
T.R.Tiekes@...
Oct 5, 2000 9:29 pm
I will keep checking clipcode.com until it's back online. I don't know if the author of the clipcode WTL docs is on this list. I you are, I'd like to thank you...
377
Scott Leonard
sbl@...
Oct 6, 2000 5:33 am
I am creating a "stock" MDI app with a dialog view. I would like to set the size of newly created views to something other than rcDefault. I've noticed that...
378
Scott Leonard
sbl@...
Oct 6, 2000 3:39 pm
OK, OK, I guess using one's brain to solve problems is a good thing... Regarding childframe scrolling the view, I added CHAIN_MSG_MAP ...
379
Nenad Stefanovic
nenads@...
Oct 12, 2000 9:56 am
Hi Scott, This is a pretty tough problem, because scroll classes were not designed for this. I came up with a way to do it, by using another window between the...
380
Nenad Stefanovic
nenads@...
Oct 12, 2000 9:57 am
Hi Shaun, You are correct about this. The problem was already fixed for the next version of WTL. Thanks for your report, and especially the detailed fix. ...
381
Scott Leonard
sbl@...
Oct 12, 2000 8:12 pm
Nenad, Thanks very much for your clock cycles. I did manage to get it (MDI Child scrolling/sizing) working to a much better degree, I just haven't had time to...
382
Scott Leonard
sbl@...
Oct 12, 2000 8:59 pm
In an MDI dialog-based childview, I added a close/cancel button. What should I actually put in here to close the window? DestroyWindow doesn't work, and it's...
383
Patrice Lafond
plafond@...
Oct 13, 2000 5:54 am
Hi all, I'm trying to insert items in my combo box but my code doesn't want to collaborate... :( CComboBoxEx pCombo = GetDlgItem(IDC_COMBO1); COMBOBOXEXITEM...
384
Nenad Stefanovic
nenads@...
Oct 13, 2000 11:21 am
Hi Scott, I am happy to see that you made progress with your app. My idea was different, but you are on the right track. I just thought that my way of doing it...
385
Nenad Stefanovic
nenads@...
Oct 13, 2000 11:33 am
Hi Scott, Posting WM_CLOSE to the parent of the dialog (MDI child frame) should work (and it the right thing to do). Please check again your code. Thanks, ...
386
iclassfactory2@...
Oct 13, 2000 6:26 pm
Hi, Can anyone do let me know how should I create / associate a font dialog in one of the pane of the splitter window. Is it possible ? We can try it in the...
387
iclassfactory2@...
Oct 13, 2000 6:30 pm
Hi, Moreover I want the dialog to be associated at run time but not statically. So that I can attach & detach / Show & hide this pane. Regards, K M Bansal....
388
Yuri Kirilenko
kiri@...
Oct 15, 2000 11:27 am
Hi Patrice, I guess you want to place combo box to dialog template. Your combo box will collaborate :-) under the next conditions: 1. A "ComboBoxEx32" class...
389
Nenad Stefanovic
nenads@...
Oct 16, 2000 7:13 am
http://www.clipcode.com is back! Hurrah!...
390
Patrice Lafond
plafond@...
Oct 20, 2000 5:39 am
Hi all, I still have a basic question for you :) I have a framewindow that contains a splitter with a listview view and a dialog view. I want to inform my...
391
Christopher Russell
cdr@...
Oct 20, 2000 6:02 am
Patrice, when you post the message from the dialog, make sure you add an entry to your mainframe's message handler to correctly dispatch to a handler. I wrote ...
392
Massimo Mozzi
tecnompi@...
Oct 20, 2000 8:23 am
I've noticed that the "New Windows Message and Event Handlers flor class XXXX" wizard has a strange behaviour when used for dialog boxes. Consider this two...
393
Ross Driedger
Ross@...
Oct 20, 2000 12:47 pm
... [snip] ... Charles Petzold's Programming Windows, 5th ed. (The definitive intro to the Win32 API) Jeffery Richter's Programming Applications for Microsoft...
394
Patrice Lafond
plafond@...
Oct 20, 2000 1:49 pm
I did it like this(in theory) but probably in practice it's not correct... #define WM_PRESSOK WM_USER + 5 //in dialog ... CWindow m_ParentWnd = GetParent(); ...
395
Christopher Russell
cdr@...
Oct 20, 2000 3:00 pm
Hmm.. I just looked at my code and in my mainframe's message handler I dispatch all user-defined messages to a single handler where I execute a switch ...
396
Patrice Lafond
plafond@...
Oct 20, 2000 4:06 pm
I don't know if it's the right way to do it, but it works for me!! Thanks Chris! Patrice ... dispatch ... switch ... my ... not the ... does not ... created ...
397
Andy Connors
awconnors@...
Oct 22, 2000 7:10 pm
Hi, I've briefly attempted to use the WTL command enabling mechanism in a modal dialog by deriving my dialog class from CUpdateUI<CMyDialog> and implementing...
398
Nenad Stefanovic
nenads@...
Oct 23, 2000 12:37 am
Hi Andy, You are correct in your analysis, modal dialogs have their own message loop, so the one in your app is not used. MFC used to use a hook to get...