Need Help Building a C++ Text Editor with WinAPI

0
6
Asked By CuriousCoder42 On

I have an assignment to create a text editor using C++ and WinAPI, but I'm feeling completely lost since I only know the basics of C++. With the deadline just three days away, I'm looking for guidance on where to start and what concepts I should focus on to finish this project.

3 Answers

Answered By TechGuru99 On

It sounds like you're really in crunch time! I recommend checking out Notepad's source code to see if it's simpler than you think. It might help you get a clearer idea of how a basic text editor is structured.

Answered By DevNinja88 On

To get started, simplify your app to the core functionality. Focus on the basic operations first:

- **Create:** Just a text box that can save as a .txt file.
- **Read:** Load text from a .txt file into the text box.
- **Update:** Replace the existing file with the current content.
- **Delete:** Not required, but you can add it if you have time.

Consider adding bonus features like recently opened files, autosave, and text operations like find and replace.

Answered By CodeMasterQ On

Your professor probably believes you've picked up enough skills to manage this. Have you been keeping up with your assignments and reaching out for help when needed? Don't hesitate to ask your TA if you're struggling!

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.