CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: gintonic42

Search: Search took 0.03 seconds.

  1. Replies
    0
    Views
    601

    Simple math library

    I am using Visual C++ and look for a simple library for euclidian mathematics. Using 3d vectors, points, ... Is there something easy to use included?
  2. Replies
    12
    Views
    2,471

    Re: Translation results in ?????

    Thanks Victor,

    i finally found out, it was not a coding problem, but a problem in the settings of Windows. With the correct settings and the russian language installed correctly, the dialogs are...
  3. Replies
    12
    Views
    2,471

    Re: Translation results in ?????

    No, in the dll loaded, the IDS_STRING is allready translated to russian. I found out something new. If i use this code:

    wchar_t buf[256];
    AfxLoadString(IDS_STRING663,buf,256);
    csTmp=buf;
    ...
  4. Replies
    12
    Views
    2,471

    Re: Translation results in ?????

    Ok, very easy


    HMODULE m_hLanguageDLL=LoadLibrary(csFullDllName);
    AfxSetResourceHandle(m_hLanguageDLL);

    CString csTmp;
    csTmp.Format( IDS_STRING246 );
    AfxMessageBox(csTmp);
  5. Replies
    12
    Views
    2,471

    Re: Translation results in ?????

    Same result. Of course the string is in the resource file. It is found in the english, german, ... version. The russian recource-dll also contains the string.

    ...
    IDS_STRING246 ...
  6. Replies
    12
    Views
    2,471

    Re: Translation results in ?????

    I try to put all strings in my app into the resources, so i can translate the resource-dll. If i use

    csTmp.Format(_T("Hello World!"))

    it works fine, but the "Hello World!" does not appear in...
  7. Replies
    12
    Views
    2,471

    Re: Translation results in ?????

    After switching this to russian, the "????" in the dialogs are gone, but those in the text, with csTmp.Format(IDS_STRING246) still are there.
  8. Replies
    12
    Views
    2,471

    Translation results in ?????

    Hy all,

    i have an not Unicode MFC Application, programmed in Visual Studio 2010 with C++. For translating my software, i have extraced all the resources into a resource -dll. This dll is...
  9. Replies
    7
    Views
    1,338

    Re: Save data for next session

    Hy, i was a little on holiday.
    If i try to do so, i get an error message like described above. I do not have a design manager. What is that? There is nothing with that name in my environment. I am...
  10. Replies
    3
    Views
    777

    Re: Missing Project Designer

    Visual Studio Team Edition for Software Developers
    Visual Studio 2005
    Version 8.0.50727.42
  11. Replies
    7
    Views
    1,338

    Re: Save data for next session

    Thanks for that, but this is not exactly, what i am looking for. I dont want a workaround for that, i would like to use the "normal" mechanism.
    I have found out something new.
    In VS opening a...
  12. Replies
    7
    Views
    1,338

    Re: Save data for next session

    Hy Zaccheus,
    is there an easy example to approach my own settings class?
  13. Replies
    3
    Views
    777

    Missing Project Designer

    Hy there, i found something strange. If i have a Windows Forms Project and add a editbox i find under application bindings a binding. I try to enter one and there comes a message (in german) like...
  14. Replies
    7
    Views
    1,338

    Save data for next session

    Hi, i just switched from VC6 to .NET 2 (2005 edition). Besides a lot of other things i have problems to get used to the all new techniques. I want to store a value in a dialog for the next session...
  15. Replies
    0
    Views
    589

    OE6 works Outlook 2003 doesnt work

    :confused: I have a littel application that sends an mail with MAPI. It works fine when I have Outlook express as the standard mail program.
    When I activate Outlook 2003 as the standard mail...
  16. Crash in or after COleObjectFactory::UpdateRegistryAll();

    Hm. On my W2000 machine, the same source can be debugged fine. But on my notebook with XP pro it causes an ASSERTATION if I try to debug the code. Compiling it to Release makes my App work, but I...
Results 1 to 16 of 16





Click Here to Expand Forum to Full Width

Featured