RSS Forums RSS
Please support our ASP.NET advertiser: Lunarpages ASP Web Hosting
Views: 3823 | Replies: 2 | Thread Tools  Display Modes
Reply
Join Date: Apr 2005
Posts: 4
Reputation: mntlnstituteflr is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
mntlnstituteflr mntlnstituteflr is offline Offline
Newbie Poster

Help undo/redo help!!!

  #1  
Apr 18th, 2005
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
AddThis Social Bookmark Button
Reply With Quote  
Join Date: Apr 2005
Posts: 4
Reputation: mntlnstituteflr is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
mntlnstituteflr mntlnstituteflr is offline Offline
Newbie Poster

Help Re: undo/redo help!!!

  #2  
Apr 19th, 2005
anybody... anybody...???

Pat
Reply With Quote  
Join Date: Jul 2003
Location: Bamberg, Germany
Posts: 117
Reputation: Iron_Cross is an unknown quantity at this point 
Rep Power: 6
Solved Threads: 2
Iron_Cross's Avatar
Iron_Cross Iron_Cross is offline Offline
Junior Poster

Re: undo/redo help!!!

  #3  
Apr 28th, 2005
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:
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
elitehackers.info
Today's Penny-Arcade!
Pain is weakness leaving the body!
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.



Similar Threads
Other Threads in the ASP.NET Forum
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

Thread Tools Display Modes
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 1:15 pm.
Newsletter Archive - Sitemap - Privacy Statement - Acceptable Use Policy - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC