Click here to Skip to main content
16,011,988 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Get window type? Pin
ThatsAlok28-Mar-05 22:23
ThatsAlok28-Mar-05 22:23 
GeneralRe: Get window type? Pin
Dominik Reichl28-Mar-05 22:34
Dominik Reichl28-Mar-05 22:34 
GeneralRe: Get window type? Pin
ThatsAlok28-Mar-05 22:46
ThatsAlok28-Mar-05 22:46 
GeneralRe: Get window type? Pin
Dominik Reichl28-Mar-05 23:50
Dominik Reichl28-Mar-05 23:50 
GeneralRe: Get window type? Pin
ThatsAlok29-Mar-05 0:04
ThatsAlok29-Mar-05 0:04 
GeneralRe: Get window type? Pin
Michael Dunn28-Mar-05 23:48
sitebuilderMichael Dunn28-Mar-05 23:48 
GeneralFile I/O Pin
Anonymous28-Mar-05 21:48
Anonymous28-Mar-05 21:48 
GeneralRe: File I/O Pin
David Crow29-Mar-05 4:51
David Crow29-Mar-05 4:51 
Anonymous wrote:
...who got a example of how to write a void member function data (integer) into disk file...

Not sure what you mean by this.

Anonymous wrote:
...write a group of integer into disk file ??

Easy enough:

CFile file(...);
for (int x = 0; x < 10; x++)
    file.Write(&x, sizeof(int));
file.Close();
or

CStdioFile file(...);
for (int x = 0; x < 10; x++)
{
    CString str;
    str.Format("%d\n", x); // this puts each one on a separate 'line'
    file.WriteString(str);
}
file.Close();




"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow


Generalnetwork printing problem Pin
Sudhir Mangla28-Mar-05 21:35
professionalSudhir Mangla28-Mar-05 21:35 
GeneralRe: network printing problem Pin
DasdaDAS28-Mar-05 22:53
DasdaDAS28-Mar-05 22:53 
GeneralRe: network printing problem Pin
Sudhir Mangla29-Mar-05 2:15
professionalSudhir Mangla29-Mar-05 2:15 
QuestionHow to create CButton dynamically in MFC? Pin
xo300028-Mar-05 21:05
xo300028-Mar-05 21:05 
AnswerRe: How to create CButton dynamically in MFC? Pin
DasdaDAS28-Mar-05 23:23
DasdaDAS28-Mar-05 23:23 
GeneralRe: How to create CButton dynamically in MFC? Pin
xo300029-Mar-05 1:13
xo300029-Mar-05 1:13 
GeneralRe: How to create CButton dynamically in MFC? Pin
jhwurmbach30-Mar-05 3:56
jhwurmbach30-Mar-05 3:56 
QuestionWininet question? Pin
mvtapia28-Mar-05 20:53
mvtapia28-Mar-05 20:53 
AnswerRe: Wininet question? Pin
ThatsAlok28-Mar-05 21:36
ThatsAlok28-Mar-05 21:36 
GeneralRe: Wininet question? Pin
mvtapia28-Mar-05 23:37
mvtapia28-Mar-05 23:37 
GeneralRe: Wininet question? Pin
ThatsAlok28-Mar-05 23:52
ThatsAlok28-Mar-05 23:52 
GeneralRe: Wininet question? Pin
mvtapia29-Mar-05 11:58
mvtapia29-Mar-05 11:58 
AnswerRe: Wininet question? Pin
Michael Dunn28-Mar-05 23:54
sitebuilderMichael Dunn28-Mar-05 23:54 
GeneralDot Matrix Printer Pin
Renjith Ramachandran28-Mar-05 19:41
Renjith Ramachandran28-Mar-05 19:41 
GeneralRe: Dot Matrix Printer Pin
Blake Miller29-Mar-05 5:52
Blake Miller29-Mar-05 5:52 
GeneralRe: Dot Matrix Printer Pin
Renjith Ramachandran29-Mar-05 7:25
Renjith Ramachandran29-Mar-05 7:25 
Generalc language Pin
Anonymous28-Mar-05 19:28
Anonymous28-Mar-05 19:28 

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.