I've been experimenting with having a standard API for a balloon tip on my Winform. No problems with standard textboxes, but I was wondering if it is at all possible to create one for a rich textbox? I would like a balloon tip to display when the Capslock is on.
Gus_19 0 Junior Poster in Training
Recommended Answers
Jump to PostYou want to know when someone pressed caps lock in the rich textbox? Or just when caps lock is on and the rich textbox gets focus?
To see what some pressed while in the rich textbox you should use the KeyDown or KeyPress events of the rich text box and …
Jump to Postif Control.IsKeyLocked(Keys.CapsLock) OrElse My.Computer.Keyboard.CapsLock then 'The Caps lock is on.... End if
All 6 Replies
G_Waddell 131 Posting Whiz in Training
Reverend Jim 5,225 Hi, I'm Jim, one of DaniWeb's moderators. Moderator Featured Poster
Gus_19 0 Junior Poster in Training
Gus_19 0 Junior Poster in Training
Gus_19 0 Junior Poster in Training
G_Waddell 131 Posting Whiz in Training
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.