CanUndo not working in Windows XP

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am working with C# windows forms. I use CanUndo to determine if something can be undone and then call Undo(). This is working Fine on Windows 2000. But with Windows XP this Functionality is not working

Detail Note: I have two RichText Boxes in my application i do something in one and then move to other one and perform some action in it. Then i come back to first one and want to undo previous action taken. I use Can Undo property to determine whether changes can be undone or not then call Undo() to Undo the operation. This Functionality works fine with Windows 2000 but when i run my application on Windows XP it does not allow me to undo operations once i come back to it after moving out of it.
 
Hi,
Actually, i used it before with WindowsXP, and it works fine. So it's sure
not a conflict between the run-time and windows. If you have .net framework
1.0 try to install version 1.1; maybe that could be the reason. Otherwise,
it's a windows settings problem.

--
Rami Saad
Microsoft GTSC Developer support for Middle East


Abhi said:
I am working with C# windows forms. I use CanUndo to determine if
something can be undone and then call Undo(). This is working Fine on
Windows 2000. But with Windows XP this Functionality is not working.
Detail Note: I have two RichText Boxes in my application i do something in
one and then move to other one and perform some action in it. Then i come
back to first one and want to undo previous action taken. I use Can Undo
property to determine whether changes can be undone or not then call Undo()
to Undo the operation. This Functionality works fine with Windows 2000 but
when i run my application on Windows XP it does not allow me to undo
operations once i come back to it after moving out of it.
 
Back
Top