|
More site info...
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.
|
|
|
|
|
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:
|
|
|
BoardReader Authority Badge code for Discussions in microsoft.public.vc.mfc (http://www.microsoft.com/communities/newsgroups...)
|
|
Put this code anywhere on your forum page:
|
|
|
|
|
|
|
|
Rating - The position measured by activity among all forum sites tracked by BoardReader.
If rating is 10 there are 9 forum sites which have higher activity.
Posts - Number of posts on forum site during last 7 days.
Threads - Number of threads on forum site active during last 7 days.
Authors - Number of authors which contributed to the site within last 7 days.
|
|
|
|
|
Discussions in microsoft.public.vc.mfc posting activity graph:
|
|
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:
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...
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...
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: >>...
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 =...
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 >...
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 .
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);...
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. > > **** >...
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...
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:
|
|
Top 10 forums on Discussions in microsoft.public.vc.mfc:
|
|
|
|
Latest active threads on 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: ...
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 ...
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...
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:...
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.
"...
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
>...
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....
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....
|
|
Hot threads for last week on 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
>...
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 ...
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.
"...
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...
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 ...
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 ...
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: ...
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 ...
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....
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....
|
|