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... 

Discussions in microsoft.public.vc.mfc - www.microsoft.com/communities/newsgroups... | Site profile

Site profile page for http://www.microsoft.com/communities/newsgroups.... This report page has aggregated and summarized the online discussions from the Message Board located at http://www.microsoft.com/communities/newsgroups.... This site profile page outlines general site statistics such as: Users Activity, Site Activity, Site Rank, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional site profile information for http://www.microsoft.com/communities/newsgroups... is also shown in the following divisions:

1) Top 10 Active Forums during Last Week
2) Top 10 Site Forums
3) Latest Active Threads
4) 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 site's popularity and/or exact posting volumes at any given reporting period.

Title: Discussions in microsoft.public.vc.mfc - http://www.microsoft.com/communities/newsgroups/list/en-us/default.aspx?dg=microsoft.public.vc.mfc Discussions in microsoft.public.vc.mfc
Url: http://www.microsoft.com/communities/newsgroups...
Users activity: 3 posts per thread
site activity: 25 active threads during last week
Site rank: 18,137 (go to rank page)
Domain info for: microsoft.com
 

Posting activity table on Discussions in microsoft.public.vc.mfc:

  Week Month 3 Months
Threads: 25 121 445
Post: 92 398 1,368
 

Authority Badge:

Discussions in microsoft.public.vc.mfc | Forum Authority Badge

Discussions in microsoft.public.vc.mfc posting activity graph:

Posts by:  day  week  month 
 

http://www.microsoft.com/communities/newsgroups/list/en-us/default.aspx?dg=microsoft.public.vc.mfc Alexa graph:

Top authors on Discussions in microsoft.public.vc.mfc during last week:

Name
Posts
Joseph M. Newcomer
19
user's latest post:
Client Server and Throttling in...
Published (2009-12-05 19:57:00)
  See below... On Sat, 5 Dec 2009 09:45:04 -0800, "Alexander Grigoriev" <alegr@earthlink.net> wrote: >For what it's worth, even microsoft managed (of course) to get it wrong in >their server.sys. > >See, for example, KB 297019. When outlook PST files are located on a remote >server over a slow WAN link, and many users are accessing the files at once, >the...
Tony C.
6
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
6
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: >>...
Tom Serface
6
user's latest post:
CListBox horizontal scroll in...
Published (2009-12-04 22:32:00)
  Here's some code I use. Hopefully self explanatory: // Set the horizontal scroll int oldwidth = m_cListBox.GetHorizontalExtent(); CDC* pDC = m_cListBox.GetWindowDC(); if (pDC) { int newwidth = (int)(pDC->GetTextExtent(szMsg, (int)_tcslen(szMsg)).cx); m_cListBox.ReleaseDC(pDC); if (newwidth > oldwidth) m_cListBox.SetHorizontalExtent(newwidth); } // Add the new one at the end if(bFileMsg) { int nLast =...
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 >...
David Lowndes
5
user's latest post:
How to access a...
Published (2009-12-04 16:37:00)
  >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: Update User-Interface Objects". Dave .  
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);...
Goran
5
user's latest post:
Another CTabCtrl question........
Published (2009-12-04 02:07:00)
  On Dec 3, 6:09?pm, Joseph M. Newcomer <newco...@flounder.com> wrote: > >The second choice would be to send a message to the main dialog window to > >change the text. In this case, could I just post the message to the parent, > >and if the parent does not handle the message it should be passed up to its > >parent, and so on. > > **** >...
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...
AliR
4
user's latest post:
CListBox horizontal scroll in...
Published (2009-12-04 08:37:00)
  GetTextExtent is the way to calculate width of a string with a specific font. //get a DC CDC *pDC = GetDC(); //select the listbox font into the dc CFont *pOldFont = pDC->SelectObject(GetFont()); //calculate the extent CSize size = pDC->GetTextExtent(Text); //set everything back and release the dc. pDC->SelectObject(pOldFont); ReleaseDC(pDC); AliR. "Guido Franzke"...
 

Top 10 active forums on Discussions in microsoft.public.vc.mfc during last week:

microsoft.public.vc.mfc - 93 new posts microsoft.public.vc.mfc - forum profile
 

Top 10 forums on Discussions in microsoft.public.vc.mfc:

microsoft.public.vc.mfc - 17,159 posts microsoft.public.vc.mfc - forum profile

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

Discussions in microsoft.public.vc.mfc
Started 2 days, 8 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: ...
Forum:  microsoft.public.vc.mfc microsoft.public.vc.mfc - forum profile
Thread:  Show this thread (6 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, 23 hours ago (2009-12-05 01:57:00)  by ScottMcP [MVP]
On Dec 4, 11:49 pm, TomChapman <TomChapma...@gmail.com> wrote: > I have written a client/server application set using TCP as the link. > Normally only a few packets are exchanged every minute. One thing the > client does is ask the server for a specific database record. The server > retrieves the record and sends it back to the client. In ...
Forum:  microsoft.public.vc.mfc microsoft.public.vc.mfc - forum profile
Thread:  Show this thread (8 posts) Thread info: Client Server and Throttling in microsoft.public.vc.mfc Size: 3,262 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Client Server and Throttling in microsoft.public.vc.mfc :: microsoft.public.vc.mfc :: Discussions in microsoft.public.vc.mfc"
Discussions in microsoft.public.vc.mfc
Started 2 days, 17 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...
Forum:  microsoft.public.vc.mfc microsoft.public.vc.mfc - forum profile
Thread:  Show this thread (8 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 2 days, 10 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:...
Forum:  microsoft.public.vc.mfc microsoft.public.vc.mfc - forum profile
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 3 days, 17 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. "...
Forum:  microsoft.public.vc.mfc microsoft.public.vc.mfc - forum profile
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 4 days, 10 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 >...
Forum:  microsoft.public.vc.mfc microsoft.public.vc.mfc - forum profile
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 5 days, 21 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....
Forum:  microsoft.public.vc.mfc microsoft.public.vc.mfc - forum profile
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 6 days, 16 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....
Forum:  microsoft.public.vc.mfc microsoft.public.vc.mfc - forum profile
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"
 

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

microsoft.public.vc.mfc
Started 4 days, 10 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 >...
Forum:  microsoft.public.vc.mfc microsoft.public.vc.mfc - forum profile
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-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 ...
Forum:  microsoft.public.vc.mfc microsoft.public.vc.mfc - forum profile
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 3 days, 17 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. "...
Forum:  microsoft.public.vc.mfc microsoft.public.vc.mfc - forum profile
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 2 days, 17 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...
Forum:  microsoft.public.vc.mfc microsoft.public.vc.mfc - forum profile
Thread:  Show this thread (8 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 day, 23 hours ago (2009-12-05 01:57:00)  by ScottMcP [MVP]
On Dec 4, 11:49 pm, TomChapman <TomChapma...@gmail.com> wrote: > I have written a client/server application set using TCP as the link. > Normally only a few packets are exchanged every minute. One thing the > client does is ask the server for a specific database record. The server > retrieves the record and sends it back to the client. In ...
Forum:  microsoft.public.vc.mfc microsoft.public.vc.mfc - forum profile
Thread:  Show this thread (8 posts) Thread info: Client Server and Throttling in microsoft.public.vc.mfc Size: 3,262 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Client Server and Throttling 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-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 ...
Forum:  microsoft.public.vc.mfc microsoft.public.vc.mfc - forum profile
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 2 days, 8 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: ...
Forum:  microsoft.public.vc.mfc microsoft.public.vc.mfc - forum profile
Thread:  Show this thread (6 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"
microsoft.public.vc.mfc
Started 1 week 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 ...
Forum:  microsoft.public.vc.mfc microsoft.public.vc.mfc - forum profile
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 5 days, 21 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....
Forum:  microsoft.public.vc.mfc microsoft.public.vc.mfc - forum profile
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 6 days, 16 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....
Forum:  microsoft.public.vc.mfc microsoft.public.vc.mfc - forum profile
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:   CPaneDialog size