Click here to Skip to main content
15,889,578 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: gauge pressure and absolute pressure calculations in C++ Pin
Jochen Arndt2-Apr-17 22:26
professionalJochen Arndt2-Apr-17 22:26 
AnswerRe: gauge pressure and absolute pressure calculations in C++ Pin
Munchies_Matt2-Apr-17 23:30
Munchies_Matt2-Apr-17 23:30 
QuestionMessage: Failed to set up the execution context to run the test. Pin
HaraldGalda31-Mar-17 2:16
professionalHaraldGalda31-Mar-17 2:16 
QuestionRe: Message: Failed to set up the execution context to run the test. Pin
David Crow31-Mar-17 5:23
David Crow31-Mar-17 5:23 
AnswerRe: Message: Failed to set up the execution context to run the test. Pin
zezba90003-Dec-18 9:30
zezba90003-Dec-18 9:30 
GeneralRe: Message: Failed to set up the execution context to run the test. Pin
David Crow3-Dec-18 10:21
David Crow3-Dec-18 10:21 
GeneralRe: Message: Failed to set up the execution context to run the test. Pin
zezba90003-Dec-18 10:59
zezba90003-Dec-18 10:59 
QuestionSave strings and integer in text file Pin
lolici25-Mar-17 11:01
lolici25-Mar-17 11:01 
Hello everyone!
How could I save the value of a member variable (int m_nCon) in the same text file where I have already save the content of a list control(declared as m_List)?? For the list control I used WriteString(). For the integer member variable I want to save, I used
file.Write(&m_nCon, sizeof(int));
but I got only a big blank space :/ Here is the code:

void CDataDialog::OnBnClickedOk()
{
	// TODO: Add your control notification handler code here
	CStdioFile file(L"sample.txt", CFile::modeCreate |
		CFile::modeWrite);

	int nCount = m_List.GetItemCount();
	for (int x = 0; x < nCount; x++)
	{
		CString strText1 = m_List.GetItemText(x, 1); // first column
		file.WriteString(strText1);
		file.WriteString(_T("\n"));
		CString strText2 = m_List.GetItemText(x, 2); // second column
		file.WriteString(strText2);
		file.WriteString(_T("\n"));
}

	file.Close();

}

SuggestionRe: Save strings and integer in text file Pin
David Crow25-Mar-17 11:12
David Crow25-Mar-17 11:12 
GeneralRe: Save strings and integer in text file Pin
lolici25-Mar-17 11:27
lolici25-Mar-17 11:27 
SuggestionRe: Save strings and integer in text file Pin
Premnath Mali14-Apr-17 1:40
professionalPremnath Mali14-Apr-17 1:40 
QuestionCMFCToolBarComboBoxButton dont work on some machines Pin
vojtee24-Mar-17 3:21
vojtee24-Mar-17 3:21 
SuggestionRe: CMFCToolBarComboBoxButton dont work on some machines Pin
Richard MacCutchan24-Mar-17 3:40
mveRichard MacCutchan24-Mar-17 3:40 
GeneralRe: CMFCToolBarComboBoxButton dont work on some machines Pin
vojtee24-Mar-17 3:46
vojtee24-Mar-17 3:46 
GeneralRe: CMFCToolBarComboBoxButton dont work on some machines Pin
Richard MacCutchan24-Mar-17 4:02
mveRichard MacCutchan24-Mar-17 4:02 
AnswerRe: CMFCToolBarComboBoxButton dont work on some machines Pin
_Flaviu9-Apr-17 21:53
_Flaviu9-Apr-17 21:53 
QuestionSave the content from List Control in text file vc++ Pin
lolici22-Mar-17 4:16
lolici22-Mar-17 4:16 
SuggestionRe: Save the content from List Control in text file vc++ Pin
David Crow22-Mar-17 4:48
David Crow22-Mar-17 4:48 
GeneralRe: Save the content from List Control in text file vc++ Pin
lolici22-Mar-17 5:23
lolici22-Mar-17 5:23 
GeneralRe: Save the content from List Control in text file vc++ Pin
David Crow22-Mar-17 5:26
David Crow22-Mar-17 5:26 
GeneralRe: Save the content from List Control in text file vc++ Pin
lolici22-Mar-17 5:35
lolici22-Mar-17 5:35 
GeneralRe: Save the content from List Control in text file vc++ Pin
David Crow22-Mar-17 5:37
David Crow22-Mar-17 5:37 
GeneralRe: Save the content from List Control in text file vc++ Pin
Victor Nijegorodov22-Mar-17 9:58
Victor Nijegorodov22-Mar-17 9:58 
GeneralRe: Save the content from List Control in text file vc++ Pin
lolici23-Mar-17 2:36
lolici23-Mar-17 2:36 
GeneralRe: Save the content from List Control in text file vc++ Pin
Victor Nijegorodov23-Mar-17 7:20
Victor Nijegorodov23-Mar-17 7:20 

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.