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

Search:

Type: Posts; User: dracon

Search: Search took 0.03 seconds.

  1. Windows Vista - which version for Java developing

    Could anyone say me which version of Windows Vista should I choose to develop in Java( WebSphere Studio Application Developer), Oracle?
  2. Windows Vista - which version for .NET developing

    Could anyone say me which version of Windows Vista should I choose to develop in Visual Studion 2005?
  3. Yes, I understand that it's not a problem of COM...

    Yes, I understand that it's not a problem of COM but MyControl implentation.


    This class represents a window in which in implementation of OnDraw method I have to use global functions (of a...
  4. This ATL project is ready (it was made and...

    This ATL project is ready (it was made and tested by another person) and works OK when one instance of control is beeing used (as an ActiveX in another project). So it's not a problem, how to make...
  5. problem with multiple use of the same COleControl

    Hi

    I have the following problem: There is a class MyControl derived from COleControl (which then I want to use in another project )
    which has implemented
    void func1()
    {
    <do sth on global...
  6. Replies
    2
    Views
    577

    Yes, I am explicitly setting the username and...

    Yes, I am explicitly setting the username and password (the same as I've set in mysql database), when I open the connection and in in DSN configuration dialog, but there is no difference.
  7. Replies
    2
    Views
    577

    problem with ISAPI and ODBC

    I trying to connect to MySql database through ODBC from ISAPI dll.
    I have made appriopiate System DSN, and tested all under normal dll. But when I used ISAPI dll I've got this:
    "SQL_DRIVER_NOPROMPT...
  8. Replies
    8
    Views
    1,678

    Yves M is right I was trying to use...

    Yves M is right I was trying to use SetWindowTextW (global, CWnd member was giving compile errors) but the result was "????"

    Yes I know that unicode is the best solution, I have even made unicode...
  9. Replies
    8
    Views
    1,678

    i think, it still doesn't help me but anyway...

    i think, it still doesn't help me
    but anyway thank you for your time
  10. Replies
    8
    Views
    1,678

    my OS is win xp when I am putting another font...

    my OS is win xp
    when I am putting another font in CreateFont( ) instead of SHIFTJIS_CHARSET, this only affects edit control (it shows different signs)
    but CStatic CButton or title bar texts are...
  11. Replies
    8
    Views
    1,678

    SetWindowText & japanish text

    I have created a dialog where I want have japanese text. It was able to do this with CEdit:

    //header
    CEdit m_E1;
    CFont m_Font;

    //cpp
    m_Font.CreateFont(20, 0, 0, 0, 0, 0, 0, 0,...
  12. Replies
    3
    Views
    726

    thank you for your response

    thank you for your response
  13. Replies
    3
    Views
    726

    How to change ANSI encoding on runtime?

    When I want my application to show properly texts in windows in some languages like French, Russian, I can change it in language options in settings panel(and then restart windows)

    Is there any...
  14. Replies
    2
    Views
    655

    Ok I have forgotten, it looks like that: BOOL...

    Ok I have forgotten, it looks like that:

    BOOL CMyDlg::OnInitDialog()
    {
    CDialog::OnInitDialog();
    SetWindowText("my title");

    return TRUE;
    }
  15. Replies
    2
    Views
    655

    title of a child dialog

    I have one problem with setting title of CDialog

    I have written
    BOOL CMyDlg::OnInitDialog()
    {
    CDialog::OnInitDialog();
    SetWindowText("my title");
    }

    but it gives no...
  16. Thread: .rc id of Cwnd

    by dracon
    Replies
    1
    Views
    728

    .rc id of Cwnd

    Is there any way to get id(that from the .res file) of a CWnd?
  17. Replies
    2
    Views
    730

    Thank you very much, I works.

    Thank you very much, I works.
  18. Replies
    2
    Views
    730

    getting ids of all controls

    Is there any way of getting ids of all controls belonging to CDialog?
  19. Replies
    3
    Views
    685

    This is exacly what I was looking for. Thanks...

    This is exacly what I was looking for.

    Thanks a lot
    (Wielkie dziêki)
  20. Replies
    3
    Views
    685

    grammar of the .rc ???

    I need a description of the grammar of the .rc (resource script) files? Does anyone know where can I find it?

    Thanks for your response
  21. Replies
    3
    Views
    807

    bool visited_OnHScroll = false; //for recurence...

    bool visited_OnHScroll = false; //for recurence prevention
    void CComMarkDlg::OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar)
    {

    //recurence prevention
    if(visited_OnHScroll)
    ...
  22. Replies
    3
    Views
    807

    InvokeHelper and message problem?

    I am using OnHScroll to manipulate position of a drawing.
    I was able to implement reaction to SB_THUMBPOSITION to achieve correct moving, but when I want to implement SB_LINERIGHT,SB_PAGELEFT, and...
Results 1 to 22 of 22





Click Here to Expand Forum to Full Width

Featured