Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Mar 9th, 2005, 10:53 AM   #1
paperboy
Newbie
 
Join Date: Mar 2005
Posts: 1
Rep Power: 0 paperboy is on a distinguished road
Text editor source code...

can someone post the source code to the windows notepad, or another similairly simple one. as i have been trying to learn c++ for a while now but to no success. so i thought id start with just cannabilising a simple programs source code, by changing colors and the like - just to get myself comfortable with c++
paperboy is offline   Reply With Quote
Old Mar 9th, 2005, 1:50 PM   #2
tempest
Programming Guru
 
tempest's Avatar
 
Join Date: Oct 2004
Posts: 1,041
Rep Power: 5 tempest is on a distinguished road
Send a message via ICQ to tempest Send a message via AIM to tempest Send a message via Yahoo to tempest
Windows notepad is actually a very complicated program, if you want simple windows programming try learning VB. Here is a simple C++ program...

#include <iostream>

int main(int argc, char *argv[]) {
    char msg[] = "Hello, world!";
    int msgLen = strlen(msg);

    std::cout << msg << std::endl;
    std::cout << "(is) " << msgLen << " characters in length." << std::endl;

    return 0;
}
__________________

tempest is offline   Reply With Quote
Old Mar 9th, 2005, 2:08 PM   #3
big_k105
PFO Founder

 
big_k105's Avatar
 
Join Date: Mar 2004
Location: Fargo, ND
Posts: 1,628
Rep Power: 10 big_k105 is on a distinguished road
Send a message via AIM to big_k105 Send a message via MSN to big_k105 Send a message via Yahoo to big_k105
http://www.programmersheaven.com/

go to programmers heaven and look at some of the projects people have put on that site. they give full source code and all it should help you
__________________
BIG K aka Kyle
Programming Forums
Kyle K Online

Please do not PM or email me programming questions. Post them in the forums instead.
big_k105 is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 7:54 PM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC