Hi. I just wanna ask if you guys know how to run visual c++ executable files in OS/2? I think the problem is that it's 32-bit, while OS/2 is 16 bit.. Any ideas how to convert visual c++ output to 16-bit?? Thanks :-O
JekYu
Posts
-
Running Visual C++ executable files in OS/2 -
Renaming the source code file namesHI.. Just a quick question: If I used visual C++ wizard to build a project n workspace for example TESTING... How do i go about changing the name TESTING to another name like TESTING2... 'cuz it seems like i can't simply change the filenames of the visual C++ like this.. Testing.dsw -> testing2.dsw Testing.cpp -> testing2.cpp etc.. Thanks in advance.
-
setting the font ?Hi.. just a simple question How do i set the font when i want to display a text?? e.g. pDC->TextOut (0, 100, "HELLO WORLD"); how do i set the font of "hello world" to font-size 24 and Arial... Thanks to ALL....
-
Zorderhi.. m_s1 and m_s2 are CSTATIC but seems like it's not working... void CTesting3_bmpView::OnLButtonDown(UINT nFlags, CPoint point) { // TODO: Add your message handler code here and/or call default CFormView::OnLButtonDown(nFlags, point); if (flip == TRUE) { flip = FALSE; m_s1.SetWindowPos (&wndTop, 1, 1, 100, 100, SWP_NOSIZE | SWP_NOMOVE); //m_s1.BringWindowToTop (); } else { m_s2.SetWindowPos (&wndTop, 1, 1, 100, 100, SWP_NOSIZE | SWP_NOMOVE); //m_s1.BringWindowToTop (); flip = TRUE; } UpdateData(FALSE); Invalidate(); }
-
ZorderHi just wanna ask how do you manipulate the "Z-order" in visual C++??? How do you put one picture box on top or at the back of another picture box... Thanks......
-
Change color of the FormOh.. didn't see that there was WM_ERASEBKGND.. coz the filter messages was to the default class:VIEW class instead of the window or child window.. so i didn't see it... alex, thanks a lot...ciao...
-
Change color of the FormHi ... Sorry to ask you once again ...but I don't seem to understand your response. Is this OnEraseBackground a windows message handler .. and where should I add such windows message handler (I only saw WM_ERASEBKGND on the CMainFrame)? And what's the command to change the color of the Form? Please, elucidate. Thanks for the help. =)
-
How do you know if a control is clickedHi.. I added a Windows message handler "OnLButtonDown" ... and I was wondering how will I know which control is being clicked (within that procedure of OnLButtonDown).... Note: I cannot use the BNCLICKED (message handler) because it conflicts with the LButtonDown of the Dialog... Thanks in Advance... Ciao!:-O
-
Change color of the FormHi.. I'm using a project whose baseclass is CFORMVIEW.. my question is HOW DO YOU CHANGE the COLOR of the FORM??? Thanks...
-
transparent text boxIs this when you use a static text control??? Is it possible if i get a sample project... Thanks in advance... ciao...
-
transparent text boxHi.. i was just wondering.. how do u create a text box whose background is transparent.. 'coz the static text control, when placed on top of another text control or other controls, covers it / hides the other controls...