NO

Author Topic: overstrike mode in Windows API  (Read 2383 times)

tpekar

  • Guest
overstrike mode in Windows API
« on: September 23, 2014, 10:55:03 PM »
Seems like an easy enough question.  But for some reason I can't seem to figure out how to do it.  The default is insert mode.  How can I toggle between insert and overstrike mode?

Sam Steele

  • Guest
Re: overstrike mode in Windows API
« Reply #1 on: September 27, 2014, 06:54:53 PM »
Press the Insert key.  :)

tpekar

  • Guest
Re: overstrike mode in Windows API
« Reply #2 on: September 30, 2014, 09:31:33 PM »
I think I need to refraise the question.  I am looking for perhaps a message I can send to place a control into overstrike mode when the user enters it.

Offline DMac

  • Member
  • *
  • Posts: 272
Re: overstrike mode in Windows API
« Reply #3 on: October 01, 2014, 06:59:57 AM »
How about this?
Code: [Select]
FORWARD_WM_CHAR(hEdit, VK_INSERT, 0, SNDMSG);
No one cares how much you know,
until they know how much you care.