Hi,
I am designing a c# program in Visual Studio. This program is a fitness tracker for persons with disabilities, specifically Down Syndrome. All of the buttons within the program are accessed by means of a simplified keyboard consisting of the arrow buttons, tab button, and enter.
What I am looking to do is make it so that when you arrow over to a specific button, it will change color so that the user can tell exactly where they are within the program or rows of buttons. I do not have the option to use a mouse but have seen the feature for mouseover which allows one to do what I am looking to do.
The simplest solution would be better as we have a delivery date for this project of May 7th.
Thanks kindly,
John
Loading
VulpesPosted Apr 19, 2012, 1:07 PM
Sam HobbsPosted Apr 19, 2012, 9:36 PM
John LucianiPosted Apr 19, 2012, 1:31 PM
John LucianiPosted Apr 19, 2012, 12:40 PM
Kunal VaishyaPosted Apr 19, 2012, 12:18 PM
John LucianiPosted Apr 19, 2012, 9:32 AM
John LucianiPosted Apr 19, 2012, 9:28 AM
Kunal VaishyaPosted Apr 19, 2012, 8:37 AM
try this Code
Private Sub Button1_GotFocus(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.GotFocus
Button1.ForeColor = Color.Red
End Sub
Private Sub Button1_LostFocus(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.LostFocus
Button1.ForeColor = Color.Black
End Sub
Kunal VaishyaPosted Apr 19, 2012, 8:30 AM
let me know
Is it Web project or Desktop ?