Please support our ASP.NET advertiser: Lunarpages ASP Web Hosting
![]() |
•
•
Join Date: Apr 2005
Posts: 4
Reputation:
Rep Power: 0
Solved Threads: 0
hey guys...
i need help on making an undo/redo command in my menu...
can ya help!
o yeah! plz put this stuff n the simplist terms that you can think of like (insert this code here and this there)
i just got vb standard 2003 3 days ago, and have no programming experience (except for HTML), therefore i am a NOOB!!! :p
thx!
Pat
i need help on making an undo/redo command in my menu...
can ya help!
o yeah! plz put this stuff n the simplist terms that you can think of like (insert this code here and this there)
i just got vb standard 2003 3 days ago, and have no programming experience (except for HTML), therefore i am a NOOB!!! :p
thx!
Pat
•
•
Join Date: Jul 2003
Location: Bamberg, Germany
Posts: 117
Reputation:
Rep Power: 6
Solved Threads: 2
In the click events of your menu items you just need to call the undo/redo methods of the RichTextBox or TextBox you have on your form....You can also check to see if it's possible to undo or redo in the popup event of your menuitem's parent
For example, if I had a menuitem called miEdit with two child menuitems called miEditUndo and miEditRedo and a RichTextBox called rtbText I'd so this:
The popup event for miEdit:
Then for the click even of the Undo button:
Then for the click event of the Redo MenuItem
That's how you do it
For example, if I had a menuitem called miEdit with two child menuitems called miEditUndo and miEditRedo and a RichTextBox called rtbText I'd so this:
The popup event for miEdit:
public void miEdit_Popup(object sender, System.EventArgs e)
{
if(rtbText.CanUndo)
miEditUndo.Enabled = true;
else
miEditUndo.Enabled = false;
if(rtbText.CanRedo)
miEditRedo.Enabled = true;
else
miEditRedo.Enabled = false;
}Then for the click even of the Undo button:
public void miEditUndo_Click(object sender, System.EventArgs e)
{
rtbText.Undo();
}Then for the click event of the Redo MenuItem
public void miEditRedo_Click(object sender, System.EventArgs e)
{
rtbText.Redo();
}That's how you do it
![]() |
Similar Threads
Other Threads in the ASP.NET Forum
- tkinter undo/redo (Python)
- undo - redo function in a text editor (Java)
- how to bind keys to menu items? (Python)
- Undo (Java)
Other Threads in the ASP.NET Forum
- Previous Thread: instrumenting an application in .NET
- Next Thread: SONET architecture as it relates to Voice over IP
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)





Linear Mode