|
| ||||||||||
| Tags: cpp, create, notepad |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| How can I create notepad in C++
|
|
#2
| ||||
| ||||
| Re: How can I create notepad in C++
Use code something like: Code: switch(key)
{
case '\n':
j++;
line[j]=i;
i=1;
break;
case ' ':
total_words++;
break;
case '\t':
i=line[j]-1;
gotoxy(i,j);
cout<<" ";
break;
} |
|
#3
| |||
| |||
| Re: How can I create notepad in C++
For creating such an interface use VC++. Its the best for GUI's. Visual C++ is Microsoft's IDE product for the C, C++, and C++/CLI programming languages. Visual C++ 2008 provides a powerful and flexible development environment for creating Microsoft Windows–based and Microsoft .NET–based applications. You can refer to this guide to know more about Visual C++. |
|
#4
| |||
| |||
| Re: How can I create notepad in C++
Use wxWidgets to create Notepad. wxWidgets lets developers create applications for Win32, Mac OS X, GTK+, X11, Motif, WinCE, and more using one codebase. It can be used from languages such as C++, Python, Perl, and C#/.NET. Unlike other cross-platform toolkits, wxWidgets applications look and feel native. This is because wxWidgets uses the platform's own native controls rather than emulating them. It's also extensive, free, open-source, and mature. |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "How can I create notepad in C++" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Notepad 2 vs Notepad ++ | Adamya | Windows Software | 3 | 21-07-2011 02:47 AM |
| Best Notepad tricks | batting | Tips & Tweaks | 1 | 20-04-2011 05:36 PM |
| How to Use Notepad to Create a Log File | neonxgenesis | Windows Software | 3 | 17-11-2009 07:25 AM |
| VB.NET create Notepad File? | MandarM | Software Development | 3 | 18-02-2009 07:08 PM |
| Notepad in Firefox | Jackie | Customize Desktop | 2 | 25-11-2008 04:15 PM |