Guest Maheshwari Posted September 19, 2008 Posted September 19, 2008 i am new to vc.i need Source code for creating notepad in vc++.
Guest Pegasus \(MVP\) Posted September 19, 2008 Posted September 19, 2008 Re: code for creating notepad in vc++ "Maheshwari" <nrrp.maheshwari@gmail.com> wrote in message news:e4d64a57-6c21-4404-903e-435cebecf22b@p31g2000prf.googlegroups.com... > i am new to vc.i need Source code for creating notepad in vc++. Why not post the question in a VC++ newsgroup?
Guest Tom Porterfield Posted September 19, 2008 Posted September 19, 2008 Re: code for creating notepad in vc++ Maheshwari wrote: > 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. -- Tom Porterfield
Guest CaptAmerica Posted September 20, 2008 Posted September 20, 2008 Re: code for creating notepad in vc++ On Fri, 19 Sep 2008 02:47:33 -0700 (PDT), Maheshwari <nrrp.maheshwari@gmail.com> wrote: > 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
Recommended Posts