JulianCh420
New Member
- Joined
- Jun 23, 2016
- Messages
- 2
- Thread Author
-
- #1
Got no idea if this is right thread, but i got this idea.
when u mark texts, you can just press caps lock to make everything in caps, and ofc toggle so hitting caps lock again will make the text small again
Someone make this happen, because its not a stupid idea.
when u mark texts, you can just press caps lock to make everything in caps, and ofc toggle so hitting caps lock again will make the text small again
Someone make this happen, because its not a stupid idea.
Solution
Hi,
You can try posting it in the Microsoft Community Forum, which I also volunteer on here:
http://answers.microsoft.com/en-us/page/faq
Microsoft employees regularly monitor this forum.
Additionally, you can go to your Win10 open any browser and post your feedback directly to Microsoft here:
https://support.microsoft.com/en-us/contactus?ws=support
Hope that helps!
<<<BIGBEARJEDI>>>
You can try posting it in the Microsoft Community Forum, which I also volunteer on here:
http://answers.microsoft.com/en-us/page/faq
Microsoft employees regularly monitor this forum.
Additionally, you can go to your Win10 open any browser and post your feedback directly to Microsoft here:
https://support.microsoft.com/en-us/contactus?ws=support
Hope that helps!
<<<BIGBEARJEDI>>>
- Joined
- Jan 28, 2013
- Messages
- 2,419
Hi and welcome to the forum
Not sure I'm understanding you. Are you sharing a "tip" with all of us forum users, or are you suggesting that someone like Microsoft fix this and it's a problem?
Cheers!
<<<BIGBEARJEDI>>>
Not sure I'm understanding you. Are you sharing a "tip" with all of us forum users, or are you suggesting that someone like Microsoft fix this and it's a problem?
Cheers!
<<<BIGBEARJEDI>>>
JulianCh420
New Member
- Joined
- Jun 23, 2016
- Messages
- 2
- Thread Author
-
- #4
It was just to get the idea out there, see what people think about it, idk where to contact microsoft for that, there was a link on theyre page but it didnt exist
- Joined
- Jan 28, 2013
- Messages
- 2,419
Hi,
You can try posting it in the Microsoft Community Forum, which I also volunteer on here:
http://answers.microsoft.com/en-us/page/faq
Microsoft employees regularly monitor this forum.
Additionally, you can go to your Win10 open any browser and post your feedback directly to Microsoft here:
https://support.microsoft.com/en-us/contactus?ws=support
Hope that helps!
<<<BIGBEARJEDI>>>
You can try posting it in the Microsoft Community Forum, which I also volunteer on here:
http://answers.microsoft.com/en-us/page/faq
Microsoft employees regularly monitor this forum.
Additionally, you can go to your Win10 open any browser and post your feedback directly to Microsoft here:
https://support.microsoft.com/en-us/contactus?ws=support
Hope that helps!
<<<BIGBEARJEDI>>>
- Joined
- Jul 4, 2015
- Messages
- 8,998
This would be certainly doable, from c++ or C# you could do the following.
- Implement a program with a keyboard hook to capture your key combo you want to use to make text all upper or all lower
- Call GetForegroundWindow windows API to get the handle to the current window with focus
- Call the Windows API GetFocus to get the handle to the focused control
- Call SendMessageW API with EM_GETSEL to get the selected text
- Would need to keep track of what state you are transitioning to for each known process and then convert the text accordingly
- Send the converted text back to the control (not quite sure how to do this, but I'm sure there is a API call you can use in user32.dll
Similar threads
- Replies
- 0
- Views
- 34
- Solved
- Replies
- 1
- Views
- 725