Click here to Skip to main content
15,917,793 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Transferring VC++ Settings Pin
Paul M Watt31-May-02 17:42
mentorPaul M Watt31-May-02 17:42 
GeneralRe: Transferring VC++ Settings Pin
Nish Nishant31-May-02 16:52
sitebuilderNish Nishant31-May-02 16:52 
GeneralRe: Transferring VC++ Settings Pin
Paul M Watt31-May-02 17:40
mentorPaul M Watt31-May-02 17:40 
Generalencrypting registry keys... Pin
l a u r e n31-May-02 13:30
l a u r e n31-May-02 13:30 
GeneralRe: encrypting registry keys... Pin
Bill Wilson31-May-02 13:47
Bill Wilson31-May-02 13:47 
GeneralRe: encrypting registry keys... Pin
Nish Nishant31-May-02 14:52
sitebuilderNish Nishant31-May-02 14:52 
QuestionHow to give List box entries a row number? Pin
Chson31-May-02 12:12
Chson31-May-02 12:12 
AnswerRe: How to give List box entries a row number? Pin
Bill Wilson31-May-02 14:00
Bill Wilson31-May-02 14:00 
int iRow = 0; // global row counter

void CISGUIDlg::OnButton1()
{
UpdateData(); // Transfer data from controls to variables
iRow++;
m_strFullName.Format(%d %s %s",iRow,m_edit1,m_edit2;
m_list1.AddString(m_strFullName); //Add string to list
UpdateData(FALSE); // Transfer data from variables to controls

}

void CISGUIDlg::OnButton2()
{
UpdateData();

// When you delete a string, you must renumber all the rows beyond the deleted entry and decrement iRow.
m_list1.DeleteString()
UpdateData(FALSE);
}


GeneralCallback Function Pin
Peter Liddle31-May-02 11:34
Peter Liddle31-May-02 11:34 
GeneralRe: Callback Function Pin
Christian Graus31-May-02 13:03
protectorChristian Graus31-May-02 13:03 
QuestionHow did they do that. Pin
Kevin Torvik31-May-02 11:18
Kevin Torvik31-May-02 11:18 
AnswerRe: How did they do that. Pin
Tomasz Sowinski31-May-02 11:31
Tomasz Sowinski31-May-02 11:31 
GeneralMDI help Pin
Bugra Barin31-May-02 11:06
Bugra Barin31-May-02 11:06 
GeneralRe: MDI help Pin
Bill Wilson31-May-02 13:58
Bill Wilson31-May-02 13:58 
GeneralRe: MDI help Pin
l a u r e n31-May-02 14:08
l a u r e n31-May-02 14:08 
GeneralRe: MDI help Pin
Shog931-May-02 17:11
sitebuilderShog931-May-02 17:11 
GeneralRe: MDI help Pin
Bugra Barin31-May-02 19:25
Bugra Barin31-May-02 19:25 
Generalmodal dialog won't go away Pin
jimNLX31-May-02 10:49
jimNLX31-May-02 10:49 
GeneralRe: modal dialog won't go away Pin
Maximilien31-May-02 10:56
Maximilien31-May-02 10:56 
GeneralRe: modal dialog won't go away Pin
jimNLX31-May-02 11:02
jimNLX31-May-02 11:02 
GeneralRe: modal dialog won't go away Pin
Tomasz Sowinski31-May-02 11:07
Tomasz Sowinski31-May-02 11:07 
GeneralRe: modal dialog won't go away Pin
jimNLX31-May-02 11:10
jimNLX31-May-02 11:10 
GeneralRe: modal dialog won't go away Pin
Nish Nishant31-May-02 14:59
sitebuilderNish Nishant31-May-02 14:59 
GeneralRe: modal dialog won't go away Pin
jimNLX3-Jun-02 8:49
jimNLX3-Jun-02 8:49 
GeneralRe: modal dialog won't go away Pin
jimNLX3-Jun-02 8:52
jimNLX3-Jun-02 8:52 

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.