TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
tuortoam
NA
12
0
Mthod Overiding on textbox
Aug 24 2010 11:49 AM
Can someone explain to me why this doesn't work?
My textbox still lets me click in it!!!
Thanks,
-Ant
---------------------------------------
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace overridetest
{
class adtextbox : TextBox
{
protected override void OnMouseClick(MouseEventArgs e)
{
// base.OnMouseClick(e);
}
}
}
Reply
Answers (
2
)
how to code in vb,net
What is the difference between assembly and class library?