kevin.burton | 2 May 2001 23:10

RE: Re: Property Sheet in a WTL dialog.

One more questions to drag this topic out a little more.
 
What message is sent out when switching between tabs? I tried to intercept WM_KILLFOCUS but the property pages did not seem to be receiving that message. How do I detect when a user moves to another page?
 
Thanks again.
 
Kevin Burton
kevin.burton-d8IUI6cK8ywybS5Ee8rs3A@public.gmane.org
-----Original Message-----
From: Bernhard Doebler [mailto:programmer-Ejdrxfhl+Acb1SvskN2V4Q@public.gmane.org]
Sent: Friday, April 27, 2001 4:17 AM
To: wtl-hHKSG33TihhbjbujkaE4pw@public.gmane.org
Subject: Re: [wtl] Re: Property Sheet in a WTL dialog.

Brandon,
 
as expected your sample worked great but you did not integrate put CTabCtrl in a Dialog Based application.  When I put your implementation in my program it worked the way it did before. I was not able to use the tab key to switch from one control to another as I was in your program.
 
Regards
Bernhard
----- Original Message -----
Sent: Thursday, April 26, 2001 4:09 PM
Subject: [wtl] Re: Property Sheet in a WTL dialog.

Go to
http://groups.yahoo.com/group/wtl/files/

Brandon

--- In wtl <at> y..., kevin.burton <at> i... wrote:
> I am not familiar with where the newsgroups WEB site is. I also
would like
> to look at this example. Would you mind pointing me in the right
direction?

> Thank you.

> Kevin Burton
> kevin.burton <at> i...
>
> -----Original Message-----
> From: Bernhard Doebler [mailto:programmer-CnfYOEHmVic@public.gmane.org]
> Sent: Thursday, April 26, 2001 3:01 AM
> To: wtl-F5Bj5G+ccuY@public.gmane.org
> Subject: Re: [wtl] Re: Property Sheet in a WTL dialog.
>
>
> Hi Brandon,

> thanks for your reply and upload; I'll check it out.

> Regards
> Bernhard "Bard" Doebler
>
> ----- Original Message -----
> From: Brandon Corfman <mailto:bcorfman-aF9gUBWsH8U@public.gmane.org> 
> To: wtl <at> y... <mailto:wtl-F5Bj5G+ccuY@public.gmane.org> 
> Sent: Thursday, April 26, 2001 6:11 AM
> Subject: [wtl] Re: Property Sheet in a WTL dialog.
>
> Hi Bard --
>
> Check out the Files link here on the newsgroup's web page. I just
> uploaded a TabExample project that illustrates the use of the tab
> control inside an application.
>
> Best regards,
> Brandon
>
> --- In wtl <at> y <mailto:wtl <at> y> ..., programmer <at> b
<mailto:programmer <at> b> ...
> wrote:
> > Hi,
> >
> > can you provide some code showing how to use the Tab-Control?
> >
> > Regards
> > Bard
>
>
> Yahoo! Groups Sponsor     

>
<http://rd.yahoo.com/M=162801.1342250.2934640.1280005/D=egroupmail/S=1
700007
> 181:N/A=599088/*http://www.knowledgestorm.com/jump_white.html?
c=Yahoo&n=eLer
> t_ComputersInternet_Software_WhiteGridTime&t=ad> Click Here to Find
Software
> Faster
> Click Here to Find Software Faster     

> <http://us.adserver.yahoo.com/l?
M=162801.1342250.2934640.1280005/D=egroupmai
> l/S=1700007181:N/A=599088/rand=106512133>      
>
> To unsubscribe from this group, send an email to:
> wtl-unsubscribe-VgYJa0VH1e9BDgjK7y7TUQ@public.gmane.org
>
>
>
> Your use of Yahoo! Groups is subject to the Yahoo!
> <http://docs.yahoo.com/info/terms/> Terms of Service.



To unsubscribe from this group, send an email to:
wtl-unsubscribe-VgYJa0VH1e9BDgjK7y7TUQ@public.gmane.org



Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.


To unsubscribe from this group, send an email to:
wtl-unsubscribe-VgYJa0VH1e9BDgjK7y7TUQ@public.gmane.org



Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
Bernhard Doebler | 3 May 2001 10:12
Picon
Favicon

Re: Re: Property Sheet in a WTL dialog.

Hi,

the messages are

TCN_SELCHANGE and TCN_SELCHANGING

Selchanging is sent to the tab that is left, selchange is sent to the new
tab.

Regards
Bernhard

----- Original Message -----
From: kevin.burton@...
To: wtl@...
Sent: Wednesday, May 02, 2001 11:10 PM
Subject: RE: [wtl] Re: Property Sheet in a WTL dialog.

What message is sent out when switching between tabs? I tried to intercept
WM_KILLFOCUS but the property pages did not seem to be receiving that
message. How do I detect when a user moves to another page?

Brandon Corfman | 3 May 2001 14:00
Picon

Re: Property Sheet in a WTL dialog.

To be more clear than I was in my previous post: 
In my example, if you want to know which tab is changing on the 
parent dialog, use TCN_SELCHANGE and TCN_SELCHANGING. If you want to 
receive which tab sheet is being shown in the tab sheet class itself, 
use WM_SHOWWINDOW.

Best regards,
Brandon

--- In wtl@..., "Bernhard Doebler" <programmer <at> b...> wrote:
> Hi,
> 
> the messages are
> 
> TCN_SELCHANGE and TCN_SELCHANGING
> 
> Selchanging is sent to the tab that is left, selchange is sent to 
the new
> tab.
> 
> Regards
> Bernhard
> 
> ----- Original Message -----
> From: kevin.burton@...
> To: wtl@...
> Sent: Wednesday, May 02, 2001 11:10 PM
> Subject: RE: [wtl] Re: Property Sheet in a WTL dialog.
> 
> What message is sent out when switching between tabs? I tried to 
intercept
> WM_KILLFOCUS but the property pages did not seem to be receiving 
that
> message. How do I detect when a user moves to another page?

Brandon Corfman | 3 May 2001 06:46
Picon

Re: Property Sheet in a WTL dialog.

WM_SHOWWINDOW is received on the property pages, i.e. tab sheets.
The wParam of the message can be casted to a BOOL which is TRUE when 
the window is about to be shown and FALSE when it is about to be 
hidden.

Brandon

--- In wtl@..., kevin.burton <at> i... wrote:
> One more questions to drag this topic out a little more.
> 
> What message is sent out when switching between tabs? I tried to 
intercept
> WM_KILLFOCUS but the property pages did not seem to be receiving 
that
> message. How do I detect when a user moves to another page?
> 
> Thanks again.
> 
> Kevin Burton
> kevin.burton@...
> 
> -----Original Message-----
> From: Bernhard Doebler [mailto:programmer@...]
> Sent: Friday, April 27, 2001 4:17 AM
> To: wtl@...
> Subject: Re: [wtl] Re: Property Sheet in a WTL dialog.
> 
> 
> Brandon,
> 
> as expected your sample worked great but you did not integrate put 
CTabCtrl
> in a Dialog Based application. When I put your implementation in 
my program
> it worked the way it did before. I was not able to use the tab key 
to switch
> from one control to another as I was in your program.
> 
> Regards
> Bernhard
> 
> ----- Original Message ----- 
> From: Brandon Corfman <mailto:bcorfman@...> 
> To: wtl@... <mailto:wtl <at> y...> 
> Sent: Thursday, April 26, 2001 4:09 PM
> Subject: [wtl] Re: Property Sheet in a WTL dialog.
> 
> Go to
> http://groups.yahoo.com/group/wtl/files/
> <http://groups.yahoo.com/group/wtl/files/> 
> 
> Brandon
> 
> --- In wtl <at> y <mailto:wtl <at> y> ..., kevin.burton <at> i 
<mailto:kevin.burton <at> i> ...
> wrote:
> > I am not familiar with where the newsgroups WEB site is. I also 
> would like
> > to look at this example. Would you mind pointing me in the right 
> direction?
> > 
> > Thank you.
> > 
> > Kevin Burton
> > kevin.burton <at> i <mailto:kevin.burton <at> i> ...
> > 
> > -----Original Message-----
> > From: Bernhard Doebler [mailto:programmer@...]
> > Sent: Thursday, April 26, 2001 3:01 AM
> > To: wtl@...
> > Subject: Re: [wtl] Re: Property Sheet in a WTL dialog.
> > 
> > 
> > Hi Brandon,
> > 
> > thanks for your reply and upload; I'll check it out.
> > 
> > Regards
> > Bernhard "Bard" Doebler
> > 
> > ----- Original Message ----- 
> > From: Brandon Corfman <mailto:bcorfman@...> 
> > To: wtl@... <mailto:wtl <at> y...> 
> > Sent: Thursday, April 26, 2001 6:11 AM
> > Subject: [wtl] Re: Property Sheet in a WTL dialog.
> > 
> > Hi Bard --
> > 
> > Check out the Files link here on the newsgroup's web page. I just 
> > uploaded a TabExample project that illustrates the use of the tab 
> > control inside an application.
> > 
> > Best regards,
> > Brandon
> > 
> > --- In wtl <at> y <mailto:wtl <at> y> ..., programmer <at> b 
> <mailto:programmer <at> b> ...
> > wrote:
> > > Hi,
> > > 
> > > can you provide some code showing how to use the Tab-Control?
> > > 
> > > Regards
> > > Bard
> > 
> > 
> > Yahoo! Groups Sponsor 
> > 
> > 
> < 
http://rd.yahoo.com/M=162801.1342250.2934640.1280005/D=egroupmail/S=1
> 
<http://rd.yahoo.com/M=162801.1342250.2934640.1280005/D=egroupmail/S=1
> 
> 700007
> > 181:N/A=599088/* http://www.knowledgestorm.com/jump_white.html?
> <http://www.knowledgestorm.com/jump_white.html?> 
> c=Yahoo&n=eLer
> > t_ComputersInternet_Software_WhiteGridTime&t=ad> Click Here to 
Find 
> Software
> > Faster
> > Click Here to Find Software Faster 
> > 
> > < http://us.adserver.yahoo.com/l? <http://us.adserver.yahoo.com/l?
> 
> M=162801.1342250.2934640.1280005/D=egroupmai
> > l/S=1700007181:N/A=599088/rand=106512133> 
> > 
> > To unsubscribe from this group, send an email to:
> > wtl-unsubscribe@...
> > 
> > 
> > 
> > Your use of Yahoo! Groups is subject to the Yahoo!
> > < http://docs.yahoo.com/info/terms/ 
<http://docs.yahoo.com/info/terms/> >
> Terms of Service.
> 
> 
> 
> To unsubscribe from this group, send an email to:
> wtl-unsubscribe@...
> 
> 
> 
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service
> <http://docs.yahoo.com/info/terms/> . 
> 
> 
> 
> Yahoo! Groups Sponsor	
> 
> 
<http://rd.yahoo.com/M=190462.1393721.2979173.2/D=egroupmail/S=1700007
181:N/
> A=551014/?http://www.debticated.com> www.debticated.com	
> 
> <http://us.adserver.yahoo.com/l?
M=190462.1393721.2979173.2/D=egroupmail/S=17
> 00007181:N/A=551014/rand=362876612> 
> 
> To unsubscribe from this group, send an email to:
> wtl-unsubscribe@...
> 
> 
> 
> Your use of Yahoo! Groups is subject to the Yahoo!
> <http://docs.yahoo.com/info/terms/> Terms of Service.


Gmane