|
From: GaryMTarr on 8 May 2008 11:11 I was wondering if there was a way to create wizards with direct links to pages like is done in the new project wizard in visual studio? Thanks in advance Gary
From: Tom Serface on 9 May 2008 01:23 If you are talking about using hyperlinks on the property pages you could do that with any number of available controls. In fact, there is a link control in the new MFC Feature Pack that would do that sort of thing. If you are talking about just jumping from page to page based on clicking a button or link you could do that by calling SetActivePage() to move to any page in the set. If you'd like to do something with a tree as the way of moving among pages you could use something like: http://www.codeproject.com/KB/dialog/csettingsdlg.aspx Tom <GaryMTarr(a)gmail.com> wrote in message news:5d03268c-9541-4c5a-acea-06592601cdae(a)e53g2000hsa.googlegroups.com... >I was wondering if there was a way to create wizards with direct links > to pages like is done in the new project wizard in visual studio? > > > Thanks in advance > Gary
From: GaryMTarr on 9 May 2008 16:12 On May 9, 1:23 am, "Tom Serface" <tom.nos...(a)camaswood.com> wrote: > If you are talking about using hyperlinks on the property pages you could do > that with any number of available controls. In fact, there is a link > control in the new MFC Feature Pack that would do that sort of thing. If > you are talking about just jumping from page to page based on clicking a > button or link you could do that by calling SetActivePage() to move to any > page in the set. > > If you'd like to do something with a tree as the way of moving among pages > you could use something like: > > http://www.codeproject.com/KB/dialog/csettingsdlg.aspx > > Tom > > <GaryMT...(a)gmail.com> wrote in message > > news:5d03268c-9541-4c5a-acea-06592601cdae(a)e53g2000hsa.googlegroups.com... > > > > >I was wondering if there was a way to create wizards with direct links > > to pages like is done in the new project wizard in visual studio? > > > Thanks in advance > > Gary- Hide quoted text - > > - Show quoted text - Tom, Thanks for the link, it was very helpful. Gary
From: Tom Serface on 9 May 2008 16:21 No problem. I started doing my properties dialogs this way some time ago. I find that users like the left hand tree approach and it's very easy to maintain. I hope it works out for you. Tom <GaryMTarr(a)gmail.com> wrote in message news:17cf3f2e-c932-49e4-a37e-cc523e384ebe(a)u36g2000prf.googlegroups.com... > - Show quoted text - Tom, Thanks for the link, it was very helpful. Gary
|
Pages: 1 Prev: Use MFC from non-MFC application Next: CTabCtrl toggle icons |