Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

santhoshv84

@santhoshv84
About
Posts
79
Topics
20
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Creating a setup for installtion of MFC Application
    S santhoshv84

    Hi, You can use Install Shield. or You can Create one new Setup Project in Visual Studio.

    The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V

    C / C++ / MFC c++ help workspace

  • buttons in VC++2005
    S santhoshv84

    Hi, You better use Tab key. Set the Tab order using Ctrl+D in the Dialog resource.

    The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V

    C / C++ / MFC c++

  • [Message Deleted]
    S santhoshv84

    Hi, There is no way to make the maximize box invisible if you have minimize box. If you dont want the minimize box also. Then use

    cs.style &= ~WS_MAXIMIZEBOX;
    cs.style &= ~WS_MINIMIZEBOX;

    Now only you will get window without Maximize box and Minimize box.

    The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V

    C / C++ / MFC

  • String Problem
    S santhoshv84

    Hi, Roget scoltz has given a nice solution. Did you tried that. CString FullPath = _T("C:\\abc\\cd\\as.txt"); CString DirPath; int nPos = FullPath.ReverseFind( _T('\\') ); if( nPos >= 0 ) { DirPath = FullPath.Mid( 0, nPos); } AfxMessageBox(DirPath);

    C / C++ / MFC help question

  • UnWanted Error Show
    S santhoshv84

    Hi, There you have just specified two folders name. What happened to the file name. Because its SHFileOperation file operation..

    C / C++ / MFC help

  • Array Size
    S santhoshv84

    Hi, Dont use user defined array in this case. You better use CStringArray. Then you no need to calculate the size of the array. This class is having a member function int GetSize() to get the size of the array.

    The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V

    C / C++ / MFC help c++ data-structures

  • A sliding container may be
    S santhoshv84

    Hi, No you cant use any MFC Classes in Qt application. You better post this QtCenter[^] Or QtForum[^] All the best..

    The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V

    C / C++ / MFC csharp c++ visual-studio sysadmin docker

  • include file for a COM client (consumer)
    S santhoshv84

    Hi, I think you should ask in this Link[^]

    The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V

    C / C++ / MFC question c++ com sysadmin

  • Store String in Array
    S santhoshv84

    Hi, You may be mistaken about CString. You can store a variable in CString object. CString string = "Test String"; If you want to copy CString A to B; Do CString A = "Test String"; CString B; B = A; Thats it..

    The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V

    C / C++ / MFC data-structures help tutorial

  • Calling function
    S santhoshv84

    Hi, First check did you declared the variable 'str'. Could you please show the function.

    The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V

    C / C++ / MFC help

  • How to show icon in MS window login window
    S santhoshv84

    Hi friends, I am doing an application, I have created Tray icon for that application. This application will run in Start up. Now i want to show icon in Microsoft Windows Login window. Please help me..

    The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V

    C / C++ / MFC help tutorial

  • Singleton using mutex for windows application (exe)
    S santhoshv84

    Hi, Try this Link[^]

    The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V

    C / C++ / MFC tutorial question

  • Changing the font stly in CView
    S santhoshv84

    Hi, You can change the alignment using SetTextAlign(); pDCMem->SetTextAlign (TA_BASELINE);

    The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V

    C / C++ / MFC question

  • back ground color of groupbox caption
    S santhoshv84

    Hi, Use this link.. http://www.codeguru.com/cpp/controls/controls/groupbox/article.php/c5269[^]

    The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V

    C / C++ / MFC question

  • Changing the font stly in CView
    S santhoshv84

    LOGFONT newlf; CFontDialog fd; if(fd.DoModal() == IDOK) { fd.GetCurrentFont(&newlf); setfont(newlf); UpdateData(FALSE); }

    The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V

    C / C++ / MFC question

  • How can find weekday name?
    S santhoshv84

    Hi, Use this link.This will be usefull.. http://www.codeproject.com/KB/datetime/dateclass.aspx[^]

    The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V

    C / C++ / MFC question help

  • set font size of static text.........
    S santhoshv84

    Hi, create a new CFont.

    m_Font = new CFont();
    m_Font->CreateFont(15,0,0,0,900,0,0,0,0,0,0,ANTIALIASED_QUALITY,0,FName);

    use SetFont() like this..

    m_Static.SetFont(m_Font);

    The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V

    C / C++ / MFC tutorial

  • Creating a vertical toolbar in visual c++
    S santhoshv84

    Hi, You better use this code..

     if (!m\_wndToolBar.CreateEx(this, TBSTYLE\_FLAT, WS\_CHILD | WS\_VISIBLE | CBRS\_TOP | CBRS\_GRIPPER | CBRS\_TOOLTIPS | CBRS\_FLYBY | CBRS\_SIZE\_DYNAMIC) || !m\_wndToolBar.LoadToolBar(IDR\_MAINFRAME))
    

    The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V

    C / C++ / MFC c++ help tutorial question

  • Setting full access permissions to a directory using CreateDirectory( )
    S santhoshv84

    Hi, If you give NULL in LPSECURITY_ATTRIBUTES. What is the permission there.. Did you tried like that?

    The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V

    C / C++ / MFC json

  • Creating a vertical toolbar in visual c++
    S santhoshv84

    Hi, In the CreateEx(...) use CBRS_LEFT or CBRS_RIGHT instead of CBRS_TOP. Your Toolbar will be vertical...

    The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V

    C / C++ / MFC c++ help tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups