I’m making a notepad app as a Beginner project on NetBeans, in the edit menu, I’m looking To code a Undo Button and also a Redo Button for the last actions performed? For example, if I want to undo a paste or Cut and be able to jump back a few actions to a previous state
Java - netbeans - Undo / Redo Code for a notepadGUI
818 Views Asked by harry hazzard At
1
There are 1 best solutions below
Related Questions in JAVA
- I need the BIRT.war that is compatible with Java 17 and Tomcat 10
- Creating global Class holder
- No method found for class java.lang.String in Kafka
- Issue edit a jtable with a pictures
- getting error when trying to launch kotlin jar file that use supabase "java.lang.NoClassDefFoundError"
- Does the && (logical AND) operator have a higher precedence than || (logical OR) operator in Java?
- Mixed color rendering in a JTable
- HTTPS configuration in Spring Boot, server returning timeout
- How to use Layout to create textfields which dont increase in size?
- Function for making the code wait in javafx
- How to create beans of the same class for multiple template parameters in Spring
- How could you print a specific String from an array with the values of an array from a double array on the same line, using iteration to print all?
- org.telegram.telegrambots.meta.exceptions.TelegramApiException: Bot token and username can't be empty
- Accessing Secret Variables in Classic Pipelines through Java app in Azure DevOps
- Postgres && statement Error in Mybatis Mapper?
Related Questions in UNDO
- Mac Catalyst disabled SwiftData automatic Undo
- Undo logs are not truncating even the parameter is set to ON
- how to remove a renamed file from last git commit?
- Git undo force push to remote branch
- Override browser "undo" key command in Javascript?
- Issues with implementing an undo feature with stacks in Java
- In Neovim, can I undo a lua function call that wrote to 2 different buffers at once with a single :undo command?
- I tried editor.trigger('myapp','undo') but it's not working as expected
- Add undo to a SortableJS list with nested list(s)
- Multiple Originators in Memento
- Control-Z and Control-Y not working in CustomTkinter TextBox
- Implementing undo in a state-machine based application
- with excel vba code, how can return the cell it's previous state when deleting seleted option in the cell?
- Rollback in Flyway
- Cannot Undo my temporary changes in Intellij Using Command+Z
Related Questions in NOTEPAD
- Copy from Cell In Excel and copy to next available Line in Text File
- How to copy excel data into multiple notepad file by vba
- Notepad malfunction in Windows 11
- Windows11 Notepad cannot find by FindWindowEx in vb.net
- how can i do a alias in powershell to start notepad++
- how to remove the first '|' for selected sentences in notepad
- InputSimulator Keyboard.TextEntry is not working
- Can not open EXE interactively while running PowerShell remotely using C#
- Convert notepad data into excel
- Notepad++ highligh by enhance anylexer local variables
- How do I copy text from a c# Application to Notepad.exe under Windows 11?
- My laptop is having issues starting Apache on the xampp control panel. I changed ports to 8080 and 4433 but it doesn't work
- Image not showing up on Html
- Cannot get handle of Edit control from notepad using Windows 11
- Copy Eclipse text and paste into VB.NET textbox doesn't work
Related Questions in REDO
- Logminer memory usage
- I tried editor.trigger('myapp','undo') but it's not working as expected
- Is it possible to redo the files from explorer in VS Code?
- Implementing undo/redo for existing application (C++/Multiplatform)
- Undo/redo image progress
- Undo and Redo Button in Kivy with Canvas
- In Java for Undoable Edit Multiple edits and String won't split
- Oracle database "log file sync" wait event
- How to get Prettier to work with autosave and keep redo logs
- Redo inside if in Ruby?
- How to redo tryCatch after error in for loop
- How to join DBA_HIST_* tables with V$LOGMNR_CONTENTS table - Oracle DB
- Eclipse Undo/Redo Binding Key Shortcuts Not Working
- Creating "redo" function to return to beginning of multiple functions in Python
- Java - netbeans - Undo / Redo Code for a notepadGUI
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
For this there are a few possible ways of tackling the problem.
One way, possibly the way I would do it, is store the contents of the notepad after every space key. This would allow you to press the undo button and set the text to the text before the last word was entered. For redo you could save the contents when backspace is pressed and restore it that way.
To implement this I would use an array list which is appended to with the current contents of the notepad (as a String), whenever space is pressed and/or whenever backspace is pressed and use the undo and redo buttons to cycle through the ArrayList.
I can't really give a much more detailed response as I don't know the entirety of your situation.