Click here to Skip to main content
15,921,646 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow I can Know the cpu in MSDOS? Pin
Carlos Antollini1-Feb-02 4:28
Carlos Antollini1-Feb-02 4:28 
AnswerRe: How I can Know the cpu in MSDOS? Pin
Joaquín M López Muñoz1-Feb-02 5:54
Joaquín M López Muñoz1-Feb-02 5:54 
GeneralRe: How I can Know the cpu in MSDOS? Pin
Carlos Antollini1-Feb-02 6:01
Carlos Antollini1-Feb-02 6:01 
AnswerRe: How I can Know the cpu in MSDOS? Pin
Joaquín M López Muñoz1-Feb-02 6:01
Joaquín M López Muñoz1-Feb-02 6:01 
GeneralRe: How I can Know the cpu in MSDOS? Pin
Carlos Antollini1-Feb-02 6:06
Carlos Antollini1-Feb-02 6:06 
QuestionHow to get the y coordinate of a PolyBezier spline Pin
1-Feb-02 3:56
suss1-Feb-02 3:56 
GeneraladdObject() Pin
1-Feb-02 3:42
suss1-Feb-02 3:42 
GeneralRe: addObject() Pin
Jon Hulatt1-Feb-02 4:09
Jon Hulatt1-Feb-02 4:09 
GeneralProblem with menu/activex control event Pin
Roger Allen1-Feb-02 3:28
Roger Allen1-Feb-02 3:28 
GeneralRe: Problem with menu/activex control event Pin
Joaquín M López Muñoz1-Feb-02 3:37
Joaquín M López Muñoz1-Feb-02 3:37 
GeneralRe: Problem with menu/activex control event Pin
Roger Allen1-Feb-02 4:38
Roger Allen1-Feb-02 4:38 
GeneralRe: Problem with menu/activex control event Pin
Joaquín M López Muñoz1-Feb-02 5:33
Joaquín M López Muñoz1-Feb-02 5:33 
GeneralC++ objects in global memory... Pin
Chris Losinger1-Feb-02 2:26
professionalChris Losinger1-Feb-02 2:26 
GeneralRe: C++ objects in global memory... Pin
Joaquín M López Muñoz1-Feb-02 3:05
Joaquín M López Muñoz1-Feb-02 3:05 
GeneralWinsock2 Pin
31-Jan-02 23:43
suss31-Jan-02 23:43 
GeneralRe: Winsock2 Pin
Peter Weyzen1-Feb-02 12:41
Peter Weyzen1-Feb-02 12:41 
GeneralRe: Winsock2 Pin
2-Feb-02 23:02
suss2-Feb-02 23:02 
GeneralDownloading and booting WinCE on a LapTop Pin
Gert Boddaert31-Jan-02 23:14
Gert Boddaert31-Jan-02 23:14 
GeneralRe: Downloading and booting WinCE on a LapTop Pin
Gert Boddaert1-Feb-02 5:45
Gert Boddaert1-Feb-02 5:45 
GeneralpItem->CreateNewItem(clsid); and Ms Word Pin
Braulio Dez31-Jan-02 23:09
Braulio Dez31-Jan-02 23:09 
QuestionOLE automation how does it work??? Pin
Gérald Mercet31-Jan-02 22:18
Gérald Mercet31-Jan-02 22:18 
AnswerRe: OLE automation how does it work??? Pin
Braulio Dez31-Jan-02 23:19
Braulio Dez31-Jan-02 23:19 
GeneralCArchive and CompoundFile Pin
wangyiming31-Jan-02 22:04
wangyiming31-Jan-02 22:04 
GeneralRe: CArchive and CompoundFile Pin
wangyiming1-Feb-02 15:11
wangyiming1-Feb-02 15:11 
Generaltrouble Pin
31-Jan-02 21:31
suss31-Jan-02 21:31 
is there anybody who ever get this trouble ?

look:
(if u want to see the question directly ,or
save ur time plz go to the end of the thread!)

i create 2 dialogbars in my SDI app. each dialogbar
has a class (i.e. CMyDialogBar1,CMyDialogBar2) ,
and i add 10 buttons in both of the 2 dialogbars.

firstly, i implement one of them.(segment of mainfrm.cpp)

"mainfrm.h"
//////////////////
CMyDialogbar1 m_b1;
CMyDialogbar2 m_b2;
//////////////////

"mainfrm.cpp"
//////////////////
int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (!m_b1.Create(......))
{
......
}

if (!m_b2.Create(......))
{
......
}

}
//////////////////

**** 0 error after press F7 ! and the 2 dialogbars are all right!

secondly, in "CMyDialogBar1.cpp" ,i init all button in dialogbar1
like this:

//////////////////
BOOL CMyDialogBar1::InitButtons()
{
int i;

for(i=0; i<button_number; i++)
="" {
="" m_btn[i].mydrawbuttonfacefunction(i);
="" m_btn[]="" is="" a="" instance="" of="" cmybutton="" class=""
="" deriving="" from="" cbutton="" class,but="" cmybutton
="" can="" change="" the="" color="" button
="" m_btn[i].subclassdlgitem(idc_bar1_btn1+i,="" this);
="" }
="" return="" true;
}
=""
all="" these="" buttons="" in="" cmydialogbar1="" are="" set="" to="" ownerdraw="" style="" ,="" and="" i=""
make="" drawitem()="" function=""

****="" 0="" error="" after="" press="" f7="" dialogbar1="" got
="" different="" each

now,="" am="" going="" implement="" button="" on="" second="" dialogbar.
="" then="" trouble="" comes="" out.

i="" add="" such="" message="" handle="" "mainfrm.cpp"
i="" place="" code=""
in="" "mainfrm.cpp"="" ,(here="" segment)
=""
begin_message_map(cmainframe,="" cframewnd)
="" on_command_ex_range(idc_bar2_btn1,idc_bar2_btn10,onbar2lbtn)
end_message_map()
=""

in="" &#8220;mainfrm.h&#8221;
="" {{afx_msg(cmainframe)
="" afx_msg="" void="" onbar2btn(uint="" btnid);
="" }}afx_msg
=""

all="" implemented="" ,but="" some="" we="" create="" first="" disabled="" !="" why="" ??
when="" remove="" implementing="" dialogbar(dialogbar2),="" 1st="" dialogbar(dialogbar1)="" enabled.="" cant="" figure="" out="" what="" worng.="" maybe="" make="" mistakes="" using="">=2 dialogbars in a program in one time.but some of the buttons in dialogbar2 are still work. only a part of them are disabled ! why ?

can anybody tell me why? thanks in advance!
of if u have some code of using >=2 dialogbars in a program,
can u email me ?

eMial: litterjosser@hotmail.com


nickong

let's talk about code or some funny video

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.