code for creating notepad in vc++

  • Thread starter Thread starter Maheshwari
  • Start date Start date
Maheshwari said:
i am new to vc.i need Source code for creating notepad in vc++.

It is essentially nothing more than a text control with the multi-line
property set to true. The opening and saving are nothing more than
simple IO calls to read the contents of a file and set into the text of
the control, or read the text from the control and write to a file.

What version of VC++ are you using? Most versions include a sample
program that is very notepad like.
 
i am new to vc.i need Source code for creating notepad in vc++.

Then ask in a group for Visual C++. Notice this group is not for that
language.

Ask elsewhere
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top