|
Is that a MFC class, or something I can download here?
|
|
|
|
|
I found a CFileFind class... Is that the one you mean?
|
|
|
|
|
Ya....you are on the right way.
C.R.Naik
|
|
|
|
|
1)On p.370 of Ivor Horton's Beginning Visual C++ 6, it says you can add operator
functions to the class by clicking on the down arrow to the right of the
Wizard bar and selecting Add Member Function. I tried that, and after I
entered the first operator function, the declaration was added to the
class in the .h file, and a skeleton function definition was added to
the .cpp file. So far, so good. Then, when I tried to add a second
operator function, it only added a skeleton function definition to
the .cpp file and would not add the declaration to the .h file. How can I
get it to do that?
2)A little later in the chapter on p. 374, it says that instead of typing
in preprocessor functions into the header file, you can use a macro in
VC++6 that will do it for you. The book says to click on Tools/Macro and
select OneTimeInclude from the macros list in the Macro dialog box that
pops up. My macros list is blank in the dialog box. I tried typing in
OneTimeInclude, but I got an error that said I had to choose a macro from
the list--what list, it's blank?!
|
|
|
|
|
1. Burn the wizard, learn to do it yourself. You obviously know where things need to go, so put them there. Wizards are good to help you get started, but you should always move beyond them and learn to use the language more than the IDE.
2. I've never used this because macros are evil. The one time include should be present anyhow, when the class is generated by the wizard. Apart from this you should not use macros unless you really need them, i.e. where a const variable or inline function will not do the trick. In the real world, that generally means when you're writing debugging/tracing tools.
Christian
NO MATTER HOW MUCH BIG IS THE WORD SIZE ,THE DATA MUCT BE TRANSPORTED INTO THE CPU. - Vinod Sharma
|
|
|
|
|
Christian Graus wrote:
NO MATTER HOW MUCH BIG IS THE WORD SIZE ,THE DATA MUCT BE TRANSPORTED INTO THE CPU. - Vinod Sharma
Respected sir,
I found your signature interesting and to learn more about what it meant, I clicked on the Vinod Sharma HTTP link, but I only got a page that says this.
The page you requested cannot be found.
Click here to go to the CodeProject home page,
or click here to return to the previous page.
Do I have to reinstall Internet Explorer to get the correct page? I am using XP Home by the way with a black mouse pad! You never know if it is the environment that is causing the error.
Awaiting your kind response please,
Respects,
Nish
Author of the romantic comedy
Summer Love and Some more Cricket [New Win]
Review by Shog9
Click here for review[NW]
|
|
|
|
|
Thanks for responding.
1)I would rather save myself the hassle of having to type the function header twice: once in the class definition and once in the function definition. For some reason the wizard has a problem with operator functions in the class definition: it doesn't seem to recognize that operator+() is different than operator*(), but it does in the class implementation file because it adds a new skeleton function definition there.
2)I don't really understand your explanation here. As far as I can determine, the macro I'm supposed to run adds the preprocessor directives to my .h file--not a macro--so that once again it will save me the hassle of typing them in myself.
Do you use VC++ 6? If so, could you click on Tools/Macro and tell me if OneTimeInclude is in the list of macros?
Thanks
|
|
|
|
|
7stud wrote:
I would rather save myself the hassle of having to type the function header twice
CTRL-V = paste, CTRL-C = copy.
7stud wrote:
For some reason the wizard has a problem
wizards suck, that's only one reason to move past using them. Any MS wizard I have used has failed at times, and that's when I've been mighty glad I don't need them to know how to fix/add stuff.
7stud wrote:
As far as I can determine, the macro I'm supposed to run adds the preprocessor directives to my .h file
I've never, ever heard of this. If I add a class using the wizard, I get an include guard, if I write my own, I write my own include guard, again relying on copy/paste.
7stud wrote:
If so, could you click on Tools/Macro and tell me if OneTimeInclude is in the list of macros?
It's empty, as I would expect. I'd expect this to include macros as in UI sequences I recorded, not macros as in #define BLAH blah
Christian
NO MATTER HOW MUCH BIG IS THE WORD SIZE ,THE DATA MUCT BE TRANSPORTED INTO THE CPU. - Vinod Sharma
|
|
|
|
|
Christian Graus wrote:
If so, could you click on Tools/Macro and tell me if OneTimeInclude is in the list of macros?
It's empty, as I would expect. I'd expect this to include macros as in UI sequences I recorded, not macros as in #define BLAH blah
After several days of messing around with this macro deal, I finally figured it out. If you're interested, with no files open in VC++6 click on Tools\Macro, then click on Options/Loaded Files, and the "Add ins and Macro files" tab should be selected(if not select it). There is a macro called Sample which you should enable by clicking on the check box. Then click on Close. From then on when the Macro dialog box appears after you click on Tools\Macros, you can select Sample as the "Macro file:", and from the list you can choose OneTimeInclude. When you click on Run, the macro will add your preprocessor directives for you. There are also other sample macros that are probably useful.
Thanks for your help.
|
|
|
|
|
I have derived a dialog from CPropertyPage, then I have included a Groupbox control. Inside that control I have placed three Radio Buttons. I have enabled the GROUP option for the first one and leave the rest two as is. Now I want to to set and get the values of those Radio Buttons on runtime. For this I am reading some values from a File and setting the Radio Buttons based on those values.
The problem which I am getting is that, I could not find how to set the values of those remaining two Radio Buttons which were not set as GROUP. Because ClassWizard only maps the variable for the Radio Button for which I have set the GROUP option.
Anybody knows how to solve this and where I am lacking.
Thanks
The Phantom is Tracking Bullets.
|
|
|
|
|
when DDX goes to get the value for you, it will scan from the start of the Group to the control before the next control with the group flag set. so, only one radio button in a group needs the group flag set (and it must be the first button). so, even though they aren't included in the DDX statement, the DDX code will include them when it does its processing.
-c
When history comes, it always takes you by surprise.
|
|
|
|
|
Busisoft,
If the value of your variable is:
-1 then no buttons are selected.
0 then first radio button is selected.
1 then second radio button is selected.
2 then third radio button is selected.
It all happens automatically.
Art
|
|
|
|
|
Hi,
I'm programming some years, but I just started with the MFC. So I downloaded the Undo/Redo Demo, which helped me a lot. Now I tried to implement Scroll Bars. The vertical one does exactly what it should, but the horizontal one, em
In debug Mode (VC++ 6.0) the following happens:
At first everything works fine, both scroll bars work. When I try to create a new, or to open an existing document I get an "Debug Assertion Failed!" Error for File: wincore.cpp Line: 628
If I compile this as release I am able to create a new, or to open an existing document, but the horizontal scroll bar gets invisible.
I know its there; when I drag it it is visible. When I resize the window it gets visible,too. But after the next repaint of the window it disappears. The code for the vertical and the horizontal bar is exactly the same, but one bar works and the other...
I used the following code:
8< out of my View class definition
...
CScrollBar m_wndVScrollBar;
CScrollBar m_wndHScrollBar;
...
>8
8< And these are my scrlling functions
void CUndo_Redo_DemoView::OnInitialUpdate()
{
m_wndVScrollBar.Create(WS_CHILD|SBS_VERT,CRect(0,0,0,0),this,0x0000);
m_wndHScrollBar.Create(WS_CHILD|SBS_HORZ,CRect(0,0,0,0),this,0x0000);
CRect rc;
GetClientRect(rc);
// Fake a size message
OnSize(0,rc.Width(),rc.Height());
};
void CUndo_Redo_DemoView::OnSize(UINT nType, int cx, int cy)
{
CView::OnSize(nType, cx, cy);
if (::IsWindow(m_wndVScrollBar.m_hWnd))
{
RECT tmpRect;
CWnd::GetClientRect(&tmpRect);
int nLeft = cx - 20;
int nTop = 0;
int nRight = cx;
int nBottom = tmpRect.bottom-20;
SCROLLINFO si;
si.cbSize = sizeof(si);
si.fMask = SIF_RANGE | SIF_PAGE;
si.nMin = 0;
si.nMax = 1000;
si.nPage = 50;
// Position Scroll Bar
CRect rect(nLeft, nTop, nRight, nBottom);
m_wndVScrollBar.SetScrollInfo(&si,TRUE);
m_wndVScrollBar.MoveWindow(rect);
if (UINT(si.nMax) < si.nPage)
m_wndVScrollBar.ShowScrollBar(FALSE);
else
m_wndVScrollBar.ShowScrollBar(TRUE);
}
if (::IsWindow(m_wndHScrollBar.m_hWnd))
{
RECT tmpRect;
CWnd::GetClientRect(&tmpRect);
int nLeft = 0;
int nTop = tmpRect.bottom-20;
int nRight = cx-20;
int nBottom = tmpRect.bottom;
SCROLLINFO si;
si.cbSize = sizeof(si);
si.fMask = SIF_RANGE | SIF_PAGE;
si.nMin = 0;
si.nMax = 1000;
si.nPage = 50;
// Position Scroll Bar
CRect rect(nLeft, nTop, nRight, nBottom);
m_wndHScrollBar.SetScrollInfo(&si,TRUE);
m_wndHScrollBar.MoveWindow(rect);
if (UINT(si.nMax) < si.nPage)
m_wndHScrollBar.ShowScrollBar(FALSE);
else
m_wndHScrollBar.ShowScrollBar(TRUE);
}
}
int CUndo_Redo_DemoView::OnMouseWheel(UINT nFlags, short zDelta, CPoint pt)
{
if (zDelta > 0)
SendMessage(WM_VSCROLL,SB_PAGEUP,0);
if (zDelta < 0)
SendMessage(WM_VSCROLL,SB_PAGEDOWN,0);
return CView::OnMouseWheel(nFlags, zDelta, pt);
}
void CUndo_Redo_DemoView::OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar)
{
SCROLLINFO si;
si.cbSize = sizeof(si);
si.fMask = SIF_ALL;
m_wndVScrollBar.GetScrollInfo(&si);
switch (nSBCode)
{
case SB_TOP:
si.nPos = si.nMin;
break;
case SB_BOTTOM:
si.nPos = si.nMax;
break;
case SB_LINEDOWN:
si.nPos += 1;
break;
case SB_LINEUP:
si.nPos -= 1;
break;
case SB_PAGEUP:
si.nPos -= si.nPage;
break;
case SB_PAGEDOWN:
si.nPos += si.nPage;
break;
case SB_THUMBTRACK:
si.nPos = si.nTrackPos;
break;
}
si.fMask = SIF_POS;
m_wndVScrollBar.SetScrollInfo(&si,TRUE);
Invalidate();
CView::OnVScroll(nSBCode, nPos, pScrollBar);
}
void CUndo_Redo_DemoView::OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar)
{
SCROLLINFO si;
si.cbSize = sizeof(si);
si.fMask = SIF_ALL;
m_wndHScrollBar.GetScrollInfo(&si);
switch (nSBCode)
{
case SB_LEFT:
si.nPos = si.nMin;
break;
case SB_RIGHT:
si.nPos = si.nMax;
break;
case SB_LINERIGHT:
si.nPos += 1;
break;
case SB_LINELEFT:
si.nPos -= 1;
break;
case SB_PAGERIGHT:
si.nPos -= si.nPage;
break;
case SB_PAGELEFT:
si.nPos += si.nPage;
break;
case SB_THUMBTRACK:
si.nPos = si.nTrackPos;
break;
}
si.fMask = SIF_POS;
m_wndHScrollBar.SetScrollInfo(&si,TRUE);
Invalidate();
CView::OnHScroll(nSBCode, nPos, pScrollBar);
}
>8
Thank you for reading this, I'm sure it's all my fault, but I'm just learning
Greetings,
Jakob Bysewski
Build a system that even a fool can use, and only a fool will use it.
|
|
|
|
|
Jakob Bysewski wrote:
When I try to create a new, or to open an existing document I get an "Debug Assertion Failed!" Error for File: wincore.cpp Line: 628
void AFXAPI AfxHookWindowCreate(CWnd* pWnd)
{
...
<font color="009900">628=></font> ASSERT(pWnd->m_hWnd == NULL);
This tells you that you are trying to recreate a window that already exists. The reason it appears to work, and then not work, in release builds is because a release build does not do any of the ASSERT() checks. It just continues on it's merry way assuming everything is valid.
It may be alot easier for you if you use a CScrollView derived view class. CScrollView has all the scrolling functionality already built in.
Sonork 100.11743 Chicken Little
"You're obviously a superstar." - Christian Graus about me - 12 Feb '03
Within you lies the power for good - Use it!
|
|
|
|
|
Thank you,
I really did not realize what this meant. Mmh, CScrollView, seems nice, I'll try it.
Build a system that even a fool can use, and only a fool will use it.
|
|
|
|
|
I'm new to VC and I was wondering if you can draw a CEdit control wich at first would be disabled, until the user pushes a button. I know I can set the disable state when I draw the control in the dialog, but after this how can i undisable it in, say a fuction OnButton1, considering there is no such member function in the CEdit class? Can it be done same way for a button?
Thanks for your time reading this!
|
|
|
|
|
GetDlgItem(IDC_EDIT)->EnableWindow(FALSE);
GetDlgItem(IDC_BUTTON)->EnableWindow(FALSE);
|
|
|
|
|
I have Visual C++.net standard edition.
Kann everyone tell me where I can find the Add-In Wizard?
At MSDN I can download a Wizard-Sample, but there was
no Wizard-HTML-Files (Templates) in the package.
I want to create a Toolbar and need sample sources!

|
|
|
|
|
Hi
I've already read a few times on this board the the MFC CSocket is bad and should not be used. Why is that so? I used it a few times in some smaller client/server apps and had no problems with it. And if it's really bad, what should I use instead? I am not familiar with pure Berkeley sockets
regards
modified 12-Sep-18 21:01pm.
|
|
|
|
|
Pure Winsock is flexible. You could implement any I/O model including OVERLAPPED I/O and IOCP you want and even design your own I/O model.
Kuphryn
|
|
|
|
|
Hello,
Is there a mean to draw a text in a rect, but I want the text fully fill the rect (bottom of the text == bottom of the rect).
For now,
I draw the text in a path.
I get path data, and I map all points to a rect of (1.f, 1.f).
And I fill the rect using matrix transformation.
My problem is that this method don't preserve anti-aliasing So I want to draw my text directly with GDI to fill the rect.
any suggestions
|
|
|
|
|
|
Those functions don't fill all the rect with the text.
I want for example do -> MyDrawText(10, 30, 50, 1000) to draw a text of width = 50-10 = 40 pixels and height of 970 pixels.
Not using font height and width.
Is it possible with GDI ? not GDI+
|
|
|
|
|
The easiest solution would probably be to draw the text into a memory DC, then use StretchBlt() to copy it to the screen and stretch it as tall as you want. The result probably won't look too pretty, though.
--Mike--
PROCRASTINATION: Hard work often pays off after time, but laziness always pays off now.
BUY MY SOFTWARE!! (please?) RightClick-Encrypt | 1ClickPicGrabber
My IntarWeb Homepgae!!!11
|
|
|
|
|
> The result probably won't look too pretty, though.
Yes
|
|
|
|
|