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
L

Lakshmi_p

@Lakshmi_p
About
Posts
8
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Probelm with std::ma find function
    L Lakshmi_p

    Hi, here is how I used std::mapmapVar; void Myfun1() { ... CString strTemp = "str1"; mapVar[strTemp] = myStructObj1; } void MyFun2() { map<CString, CMyStruct>::const_iterator itr; Cstring strTemp = "str1"; itr = mapVar.find(strTemp); .... } Sometimes it is working fine but sometimes it is not working.

    C / C++ / MFC algorithms help question

  • Probelm with std::ma find function
    L Lakshmi_p

    Hello everyone, I am using std::map in my application. I am searching for CMyStruct based on the CString using find function. But sometimes find function is returning null iterator even when there is strcture obj with specified key. Can anyone help me in finding the solution?

    C / C++ / MFC algorithms help question

  • Messagebox problem
    L Lakshmi_p

    hi, Thanks for ur reply. Can we get the handle of messagebox default icon based on its its styles.

    C / C++ / MFC help tutorial

  • Messagebox problem
    L Lakshmi_p

    Hi, I want to replace the message box icon with my own icon. But i don't know how to get the Handle to message box icon. Any suggestions are welcome.:)

    C / C++ / MFC help tutorial

  • [SOLVED] Enabling a button after previous button click.
    L Lakshmi_p

    hi, Try this one... Disable the button in OnInitDialog of your dialog class eg: GetDlgItem(UR_CLOSE_BUTTON_ID)->EnableWindow(FALSE); Enable that button in OnBnClickedOpen function void CSRFToolDlg::OnBnClickedOpen() { char* ReadFileName = "G:\\Work On\\CPP\\SRFTool\\text_file.txt" ; if(openFile.Open(ReadFileName, CFile::modeCreate | CFile::modeReadWrite)) { AfxMessageBox("File creates successfully", MB_OK) ; GetDlgItem(UR_CLOSE_BUTTON_ID)->EnableWindow(TRUE); } else { AfxMessageBox("Error in file opening", MB_OK) ; } } Again Disable the button in OnBtnClickedClose() void CSRFToolDlg::OnBnClickedClose() { openFile.Close() ; GetDlgItem(UR_CLOSE_BUTTON_ID)->EnableWindow(FALSE); } If you the control variable of Close button, the user that variable in place of GetDlgItem(UR_CLOSE_BUTTON_ID)

    C / C++ / MFC c++ help

  • hi
    L Lakshmi_p

    Hi, Its working. Thanks for ur reply:)

    C / C++ / MFC question

  • hi
    L Lakshmi_p

    Hi all, How can i know that the user has pressed ALT+F4 key combination . Thanks in advance.

    C / C++ / MFC question

  • How to change the main frame shape in MFC
    L Lakshmi_p

    How can i change the main frame shape in MFC?

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

  • Don't have an account? Register

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