Click here to Skip to main content
15,924,507 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralProject / Workspace Pin
Ryan B.9-Dec-02 6:02
Ryan B.9-Dec-02 6:02 
GeneralRe: Project / Workspace Pin
Ravi Bhavnani9-Dec-02 6:35
professionalRavi Bhavnani9-Dec-02 6:35 
GeneralRe: Project / Workspace Pin
Roman Fadeyev9-Dec-02 6:51
Roman Fadeyev9-Dec-02 6:51 
GeneralRe: Project / Workspace Pin
Ryan B.9-Dec-02 10:06
Ryan B.9-Dec-02 10:06 
QuestionHow to compress files in a ZIP file ?? Pin
Cris9-Dec-02 5:43
Cris9-Dec-02 5:43 
AnswerRe: How to compress files in a ZIP file ?? Pin
Roman Fadeyev9-Dec-02 5:57
Roman Fadeyev9-Dec-02 5:57 
AnswerRe: How to compress files in a ZIP file ?? Pin
carrie9-Dec-02 8:56
carrie9-Dec-02 8:56 
GeneralMSLU Pin
Irona9-Dec-02 5:34
Irona9-Dec-02 5:34 
My initial problem:
I have a UNICODE application, it works fine in Windows
NT/2000, but I need it in Windows 95-98.

I'm trying to use MSLU in Windows95, but it doesn't work.
The problem seem to be with common controls (CEdit, CComboBox...) & menus (saved in my resource .rc file
like UNICODE)... all strings are shown like "____"

Somebody told to me: "Handle the WM_NOTIFYFORMAT message and return
NFR_UNICODE"

So, I tried to handle that message like this:
LRESULT CConnectorDlg::OnNotifyFormat(WPARAM wParam,
LPARAM lParam)
{
return NFR_UNICODE;
}

and in message map:
ON_MESSAGE(WM_NOTIFYFORMAT, OnNotifyFormat)

but my function never is called.

So, I tried too:
LRESULT CConnectorDlg::DefWindowProc(UINT message, WPARAM
wParam, LPARAM lParam)
{
if (message == WM_NOTIFYFORMAT)
return NFR_UNICODE;
return CDialog::DefWindowProc(message, wParam,
lParam);
}

But, common controls still are shown bad...
CConnectorDlg is a CDialog with a combo box and CEdit

Thank you in advance for your time.Frown | :(

Up the irons!
GeneralUNICODE conversion Pin
Member 3600829-Dec-02 5:25
Member 3600829-Dec-02 5:25 
GeneralRe: UNICODE conversion Pin
Le centriste9-Dec-02 7:37
Le centriste9-Dec-02 7:37 
GeneralSDI Pin
will13839-Dec-02 5:03
will13839-Dec-02 5:03 
GeneralRe: SDI Pin
#realJSOP9-Dec-02 5:19
professional#realJSOP9-Dec-02 5:19 
GeneralRe: SDI Pin
will13839-Dec-02 5:37
will13839-Dec-02 5:37 
GeneralFull Screen Dialog Bug Pin
Scott H. Settlemier9-Dec-02 4:39
Scott H. Settlemier9-Dec-02 4:39 
GeneralRe: Full Screen Dialog Bug Pin
#realJSOP9-Dec-02 5:14
professional#realJSOP9-Dec-02 5:14 
GeneralRe: Full Screen Dialog Bug Pin
Scott H. Settlemier9-Dec-02 5:24
Scott H. Settlemier9-Dec-02 5:24 
GeneralRe: Full Screen Dialog Bug Pin
mediamaster409-Dec-02 6:15
mediamaster409-Dec-02 6:15 
GeneralRe: Full Screen Dialog Bug Pin
Joan M9-Dec-02 20:23
professionalJoan M9-Dec-02 20:23 
GeneralRe: Full Screen Dialog Bug Pin
Scott H. Settlemier10-Dec-02 4:01
Scott H. Settlemier10-Dec-02 4:01 
GeneralRe: Full Screen Dialog Bug Pin
mediamaster4010-Dec-02 4:23
mediamaster4010-Dec-02 4:23 
GeneralRe: Full Screen Dialog Bug Pin
Scott H. Settlemier10-Dec-02 6:41
Scott H. Settlemier10-Dec-02 6:41 
Generalfopen and CStringArray Pin
Anonymous9-Dec-02 3:09
Anonymous9-Dec-02 3:09 
GeneralRe: fopen and CStringArray Pin
Gary Kirkham9-Dec-02 3:25
Gary Kirkham9-Dec-02 3:25 
GeneralRe: fopen and CStringArray Pin
Nitron9-Dec-02 4:10
Nitron9-Dec-02 4:10 
GeneralRe: fopen and CStringArray Pin
Christian Graus9-Dec-02 8:59
protectorChristian Graus9-Dec-02 8:59 

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.