Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

microsoft.public.vc.mfc | Forum profile

Forum profile page for microsoft.public.vc.mfc on http://www.microsoft.com/communities/newsgroups.... This report page is the aggregated overview from a single forum: microsoft.public.vc.mfc, located on the Message Board at http://www.microsoft.com/communities/newsgroups.... This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional forum profile information for "microsoft.public.vc.mfc" on the Message Board at http://www.microsoft.com/communities/newsgroups... is also shown in the following ways:

1) Latest Active Threads
2) Hot Threads for Last Week

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.

Site: Discussions in microsoft.public.vc.mfc - microsoft.public.vc.mfc (site profile, domain info microsoft.com)
Title: microsoft.public.vc.mfc
Url: http://www.microsoft.com/communities/newsgroups...
Users activity: 31 posts per thread
Forum activity: 24 active threads during last week
 

Posting activity on microsoft.public.vc.mfc:

  Week Month 3 Months
Threads: 24 121 460
Post: 85 392 1,419
 

microsoft.public.vc.mfc Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
Joseph M. Newcomer
13
user's latest post:
Another CTabCtrl question........
Published (2009-12-03 10:42:00)
  No. You would simply send it to the parent. The parent, if it receives the message, either processes it or sends it to *it's* parent, and so on. Alternatively, you would write a loop which went upwards until it hit NULL then send the message to the topmost window in the hierarchy. See my other message; this window would send it back down to all descendants. Note that I usually do this by creating a superclass which handles the...
Tony C.
7
user's latest post:
theoretical MFC question in...
Published (2009-11-29 21:27:00)
  I've been debugging like a nutcase for a couple of hours trying to get the systemtime... I used SYSTEMTIME st; GetSystemTime(&st); --pretty straighforward.... I'm using unicode, and in building in RELEASE mode.... Release mode is not a problem in VB.net and I can set a watch on my variables and look inside them any time I want. So here I am in release mode tyring to check for correct data in my variables and get...
Giovanni Dicanio
7
user's latest post:
How to read an XML file in...
Published (2009-12-03 03:03:00)
  "marc" <marc.tessis@caramail.com> ha scritto nel messaggio news:10d369d8-0880-4a0a-805a-ac0d7828d17a@d20g2000yqh.googlegroups.com... > On 2 d?c, 23:38, "Tom Serface" <t...@camaswood.com> wrote: >> There are lots of parsers available. This one is a simple way to get >> started: >>...
David Ching
5
user's latest post:
MFC ActiveX: ExitInstance is...
Published (2009-11-29 12:12:00)
  "milonass" <milonass@discussions.microsoft.com> wrote in message news:770C70A1-F96E-4C6F-B11A-783E4029A0FF@microsoft.com... > Thank you for your answer. I attached the IE process in the debugger. Then > I > opened a simple HTML page containing an object tag with my ActiveX > control. > When I now close the IE window, the debugger stops in the ExitInstance >...
Cameron_C
5
user's latest post:
Another CTabCtrl question........
Published (2009-12-03 08:50:00)
  Thanks, And if it is nested, then I guess I would expand to something like: ASSERT(GetParent() != NULL); ASSERT(GetParent()->GetParent() != NULL); ASSERT(GetParent()->GetParent()->GetParent() != NULL); ASSERT(GetParent()->GetParent()->GetParent()->GetParent() != NULL); ASSERT(GetParent()->GetParent()->GetParent()->GetParent()->GetParent() != NULL);...
Tom Serface
5
user's latest post:
How to read an XML file in...
Published (2009-12-03 14:22:00)
  Thanks. I'll take a look. Tom "DanB" <abc@some.net> wrote in message news:VdVRm.34609$Sw5.31711@newsfe16.iad... > Tom Serface wrote: >> Sounds interesting to me. > > Hi Tom, > I believe this version is free of my environment. > > < http://lakeweb.net/MFC/downloads/xml.zip > > > If it isn't, please let me...
Goran
5
user's latest post:
CTime problem (DST?): adding...
Published (2009-12-01 06:57:00)
  On Dec 1, 12:54?pm, "crea" <n...@invalid.com> wrote: > Goran wrote: > > On Dec 1, 12:02 pm, "crea" <n...@invalid.com> wrote: > > > I would try with system functions (e.g. GetLocalTime, then change your > > time to +4 hours, then TzSpecificLocalTimeToSystemTime). > > > Goran. > >...
David Lowndes
4
user's latest post:
having trouble programmatically...
Published (2009-11-29 05:07:00)
  > -- My next question is :: How would I get that selection > background to be blue like when the user makes a >selection? I think you might be able to do it using custom draw. Have a look in MSDN for "NM_CUSTOMDRAW (list view) Notification". Dave .  
Stephen Wolstenholme
4
user's latest post:
Dialog keypress in...
Published (2009-11-27 16:17:00)
  On Fri, 27 Nov 2009 17:54:30 -0500, Joseph M. Newcomer <newcomer@flounder.com> wrote: >You should not be using any of the keys which the dialogs use. Tab, arrow keys, >shift-tab, etc. are part of the defined dialog box control paradigm. They are handled by >the dialog class handler, which, if it doesn't deal with the key itself, passes it on to >the dialog. Generally, you have to be...
DanB
4
user's latest post:
How to read an XML file in...
Published (2009-12-03 13:07:00)
  Tom Serface wrote: > Sounds interesting to me. Hi Tom, I believe this version is free of my environment. < http://lakeweb.net/MFC/downloads/xml.zip > If it isn't, please let me know. It is set up for testing, making libs and dlls. Thanks, Dan. pubdan3 'at' lakeweb * net .  
 

Latest active threads on microsoft.public.vc.mfc::

Discussions in microsoft.public.vc.mfc
Started 1 day, 6 hours ago (2009-12-04 16:37:00)  by David Lowndes
>I want to change the template-based menu upon some events (starating with >the initial opening a document), but it looks like I do not know how to get a >CMenu pointer (or a handle) to it... Mike, You normally modify menu item states in the ON_UPDATE_COMMAND_UI handler. Have a look on MSDN for the topic titled "How to: ...
Thread:  Show this thread (3 posts)   Thread info: How to access a Template-specific menu? in microsoft.public.vc.mfc Size: 808 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: How to access a Template-specific menu? in microsoft.public.vc.mfc :: microsoft.public.vc.mfc :: Discussions in microsoft.public.vc.mfc"
Discussions in microsoft.public.vc.mfc
Started 1 day, 14 hours ago (2009-12-04 08:17:00)  by AliR
Did you call SetHorizontalExtent on the listbox? You will have to calculate the length in pixles of your longest string and call SetHorizontalExtent with that value. AliR. "Guido Franzke" <guidof73@yahoo.de> wrote in message news:ODUKOFPdKHA.1648@TK2MSFTNGP05.phx.gbl... > Hello NG, > > I have a normal...
Thread:  Show this thread (7 posts)   Thread info: CListBox horizontal scroll in microsoft.public.vc.mfc Size: 1,401 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: CListBox horizontal scroll in microsoft.public.vc.mfc :: microsoft.public.vc.mfc :: Discussions in microsoft.public.vc.mfc"
Discussions in microsoft.public.vc.mfc
Started 1 day, 7 hours ago (2009-12-04 15:17:00)  by Joseph M. Newcomer
That sounds right; you would never see a class from outside an automation object. All you get is the interface GUID. So what the class contains is irrelevant. joe On Fri, 4 Dec 2009 10:19:52 -0600, "Marc Oden" <moden@avioninc.com> wrote: >I developed a VC++ MFC dll with automation and exported a class. Example:...
Thread:  Show this thread (2 posts)   Thread info: Class in VC++ MFC dll with automation cannot be seen in .NET in
microsoft.public.vc.mfc Size: 2,404 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Class in VC++ MFC dll with automation cannot be seen in .NET in
microsoft.public.vc.mfc :: microsoft.public.vc.mfc :: Discussions in microsoft.public.vc.mfc"
Discussions in microsoft.public.vc.mfc
Started 2 days, 14 hours ago (2009-12-03 08:17:00)  by AliR
I'm assuming that the parent of your TabDialog is the CTabCtrl, and the button is on the parent window of the CTabCtrl. If that's the case and I was doing this, I would do this: ASSERT(GetParent() != NULL); ASSERT(GetParent()->GetParent() != NULL); GetParent()->GetParent()->SendMessage(WM_....... ); AliR. "...
Thread:  Show this thread (8 posts)   Thread info: Another CTabCtrl question..... in microsoft.public.vc.mfc Size: 2,346 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Another CTabCtrl question..... in microsoft.public.vc.mfc :: microsoft.public.vc.mfc :: Discussions in microsoft.public.vc.mfc"
Discussions in microsoft.public.vc.mfc
Started 3 days, 7 hours ago (2009-12-02 15:12:00)  by Tom Serface
There are lots of parsers available. This one is a simple way to get started: http://www.codeproject.com/KB/cpp/markupclass.aspx Tom "marathoner" <rajk2000@msn.com.invalid> wrote in message news:uujN8e5cKHA.4724@TK2MSFTNGP05.phx.gbl... >I would like to know how to read an XML file in Visual C++ 6.0 >...
Thread:  Show this thread (17 posts)   Thread info: How to read an XML file in Visual C++ 6 in microsoft.public.vc.mfc Size: 903 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: How to read an XML file in Visual C++ 6 in microsoft.public.vc.mfc :: microsoft.public.vc.mfc :: Discussions in microsoft.public.vc.mfc"
Discussions in microsoft.public.vc.mfc
Started 4 days, 18 hours ago (2009-12-01 04:27:00)  by Goran
On Dec 1, 12:02 pm, "crea" <n...@invalid.com> wrote: > I have a problem adding time for my CTime object using CTimeSpan. I > want/need to add 4 hour time from 00:00 midnight to 4am. But I get 5am > instead. I am sure it has something to with daylight savings time , but I > have tried all options and none of them works how I need it to work....
Thread:  Show this thread (5 posts)   Thread info: CTime problem (DST?): adding time "does not work" in
microsoft.public.vc.mfc Size: 2,220 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: CTime problem (DST?): adding time "does not work" in
microsoft.public.vc.mfc :: microsoft.public.vc.mfc :: Discussions in microsoft.public.vc.mfc"
Discussions in microsoft.public.vc.mfc
Started 5 days, 14 hours ago (2009-11-30 08:32:00)  by Joseph M. Newcomer
Yes. In fact, I have nested them at least 5 deep. The actual nesting depends upon a configuration file that defines controls, with sub-controls, and sub-controls have sub-controls, etc. to any level of depth (the "controls" are endpoints in an embedded system; each board has, say, relays, analog inputs, analog outputs, on/off sensors, etc....
Thread:  Show this thread (4 posts)   Thread info: CTabCtrl.... Can I have a CTabCtrl on a CTabCtrl? in
microsoft.public.vc.mfc Size: 2,406 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: CTabCtrl.... Can I have a CTabCtrl on a CTabCtrl? in
microsoft.public.vc.mfc :: microsoft.public.vc.mfc :: Discussions in microsoft.public.vc.mfc"
Discussions in microsoft.public.vc.mfc
Started 5 days, 15 hours ago (2009-11-30 07:57:00)  by Rob Krakora
Joseph: I use the NewMenu code in question and it works well. Also, the developer has done a nice job maintaining his code to keep up with Microsoft changes. Below is his website and a link to the NewMenu source code. He is a very nice guy and very good software engineer. Maybe you can look over his source and give him some suggestions that ...
Thread:  Show this thread (2 posts)   Thread info: NewMenu in microsoft.public.vc.mfc Size: 8,422 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: NewMenu in microsoft.public.vc.mfc :: microsoft.public.vc.mfc :: Discussions in microsoft.public.vc.mfc"
 

Hot threads for last week on microsoft.public.vc.mfc::

microsoft.public.vc.mfc
Started 3 days, 7 hours ago (2009-12-02 15:12:00)  by Tom Serface
There are lots of parsers available. This one is a simple way to get started: http://www.codeproject.com/KB/cpp/markupclass.aspx Tom "marathoner" <rajk2000@msn.com.invalid> wrote in message news:uujN8e5cKHA.4724@TK2MSFTNGP05.phx.gbl... >I would like to know how to read an XML file in Visual C++ 6.0 >...
Thread:  Show this thread (17 posts)   Thread info: How to read an XML file in Visual C++ 6 in microsoft.public.vc.mfc Size: 903 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: How to read an XML file in Visual C++ 6 in microsoft.public.vc.mfc :: microsoft.public.vc.mfc :: Discussions in microsoft.public.vc.mfc"
microsoft.public.vc.mfc
Started 1 week, 1 day ago (2009-11-27 09:42:00)  by Joseph M. Newcomer
This is one of those places where the otherwise-abused PreTranslateMessage is used. You would put a handler, look for WM_CHAR (if a character message) or WM_KEYDOWN (for some other character) call CDialog::OnOK, CDialog::OnCancel, or perhaps CDialog::EndDialog(n) for some valuel n, and return TRUE (indicating you processed the message). Note ...
Thread:  Show this thread (11 posts)   Thread info: Dialog keypress in microsoft.public.vc.mfc Size: 1,680 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Dialog keypress in microsoft.public.vc.mfc :: microsoft.public.vc.mfc :: Discussions in microsoft.public.vc.mfc"
microsoft.public.vc.mfc
Started 1 week ago (2009-11-28 17:22:00)  by David Lowndes
>//*********************************************** *** >m_list2.SetItemState(1, LVIS_SELECTED,LVIS_SELECTED); >m_list2.SetSelectionMark(1); >//********************************************* ***** Tony, Does the list have 2 items? i.e. do you actually want the 0'th item? Does the list control have focus? If the ...
Thread:  Show this thread (10 posts)   Thread info: having trouble programmatically selecting CListCtrl item in
microsoft.public.vc.mfc Size: 896 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: having trouble programmatically selecting CListCtrl item in
microsoft.public.vc.mfc :: microsoft.public.vc.mfc :: Discussions in microsoft.public.vc.mfc"
microsoft.public.vc.mfc
Started 2 days, 14 hours ago (2009-12-03 08:17:00)  by AliR
I'm assuming that the parent of your TabDialog is the CTabCtrl, and the button is on the parent window of the CTabCtrl. If that's the case and I was doing this, I would do this: ASSERT(GetParent() != NULL); ASSERT(GetParent()->GetParent() != NULL); GetParent()->GetParent()->SendMessage(WM_....... ); AliR. "...
Thread:  Show this thread (8 posts)   Thread info: Another CTabCtrl question..... in microsoft.public.vc.mfc Size: 2,346 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Another CTabCtrl question..... in microsoft.public.vc.mfc :: microsoft.public.vc.mfc :: Discussions in microsoft.public.vc.mfc"
microsoft.public.vc.mfc
Started 1 week ago (2009-11-28 04:42:00)  by Giovanni Dicanio
"Ru" <ruspatil@gmail.com> ha scritto nel messaggio news:d1aad9d7-1b85-4e1f-ae4d-ddc77b2e8c38@z10g20 00prh.googlegroups.com... > I am using VS2005. I have declared a simple global structure, > struct CDrawElement > { > bool m_bChildren; > CArray <int, int> ptArray; > }; > > I am getting these compllation ...
Thread:  Show this thread (7 posts)   Thread info: Error while declaring CArray within struct in microsoft.public.vc.mfc Size: 2,158 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Error while declaring CArray within struct in microsoft.public.vc.mfc :: microsoft.public.vc.mfc :: Discussions in microsoft.public.vc.mfc"
microsoft.public.vc.mfc
Started 1 day, 14 hours ago (2009-12-04 08:17:00)  by AliR
Did you call SetHorizontalExtent on the listbox? You will have to calculate the length in pixles of your longest string and call SetHorizontalExtent with that value. AliR. "Guido Franzke" <guidof73@yahoo.de> wrote in message news:ODUKOFPdKHA.1648@TK2MSFTNGP05.phx.gbl... > Hello NG, > > I have a normal...
Thread:  Show this thread (7 posts)   Thread info: CListBox horizontal scroll in microsoft.public.vc.mfc Size: 1,401 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: CListBox horizontal scroll in microsoft.public.vc.mfc :: microsoft.public.vc.mfc :: Discussions in microsoft.public.vc.mfc"
microsoft.public.vc.mfc
Started 1 week, 1 day ago (2009-11-27 09:42:00)  by Joseph M. Newcomer
When you say "only in debugging mode" do you mean whenyou are running one of the ActiveX test containers, or some program that exercises your control? You probably need to ask this in one of the ActiveX forums, but you need to be more specific about what you mean by "debugging mode". My vague memory is that if you close the page, not just the ...
Thread:  Show this thread (5 posts)   Thread info: MFC ActiveX: ExitInstance is only called in debugger in
microsoft.public.vc.mfc Size: 1,936 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: MFC ActiveX: ExitInstance is only called in debugger in
microsoft.public.vc.mfc :: microsoft.public.vc.mfc :: Discussions in microsoft.public.vc.mfc"
microsoft.public.vc.mfc
Started 6 days ago (2009-11-29 22:07:00)  by Scott McPhillips [MVP]
"Tony C." <me@here.com> wrote in message news:ddj6h59mvgqbiakojmh0i5nk4s4apkav9t@4ax.com. .. > > > I've been debugging like a nutcase for a couple of hours trying to > get the systemtime... > > I used > > SYSTEMTIME st; > GetSystemTime(&st); > > --pretty straighforward.... > > I'm using ...
Thread:  Show this thread (5 posts)   Thread info: theoretical MFC question in microsoft.public.vc.mfc Size: 2,207 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: theoretical MFC question in microsoft.public.vc.mfc :: microsoft.public.vc.mfc :: Discussions in microsoft.public.vc.mfc"
microsoft.public.vc.mfc
Started 4 days, 18 hours ago (2009-12-01 04:27:00)  by Goran
On Dec 1, 12:02 pm, "crea" <n...@invalid.com> wrote: > I have a problem adding time for my CTime object using CTimeSpan. I > want/need to add 4 hour time from 00:00 midnight to 4am. But I get 5am > instead. I am sure it has something to with daylight savings time , but I > have tried all options and none of them works how I need it to work....
Thread:  Show this thread (5 posts)   Thread info: CTime problem (DST?): adding time "does not work" in
microsoft.public.vc.mfc Size: 2,220 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: CTime problem (DST?): adding time "does not work" in
microsoft.public.vc.mfc :: microsoft.public.vc.mfc :: Discussions in microsoft.public.vc.mfc"
microsoft.public.vc.mfc
Started 5 days, 14 hours ago (2009-11-30 08:32:00)  by Joseph M. Newcomer
Yes. In fact, I have nested them at least 5 deep. The actual nesting depends upon a configuration file that defines controls, with sub-controls, and sub-controls have sub-controls, etc. to any level of depth (the "controls" are endpoints in an embedded system; each board has, say, relays, analog inputs, analog outputs, on/off sensors, etc....
Thread:  Show this thread (4 posts)   Thread info: CTabCtrl.... Can I have a CTabCtrl on a CTabCtrl? in
microsoft.public.vc.mfc Size: 2,406 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: CTabCtrl.... Can I have a CTabCtrl on a CTabCtrl? in
microsoft.public.vc.mfc :: microsoft.public.vc.mfc :: Discussions in microsoft.public.vc.mfc"

This page was found by:   CToolTipCtrl VC2005 work