-1

I am creating a simple test program with MFC. It is a program that sends 1 byte hex value to each of 10 edit control. I want to automatically move to the next Edit box when 1 byte is entered in the edit control. How can I do this?

Thank you for reading.

Leo KIM
  • 11

1 Answers1

2

To advance input focus to the next control, call CDialog::NextDlgCtrl.

IInspectable
  • 46,945
  • 8
  • 85
  • 181
  • Not sure if this is the correct answer, I think he wants to move the cursor to the next edit control _"when 1 byte is entered in the edit control"_, whetever that means. – Jabberwocky Mar 26 '18 at 11:32
  • @MichaelWalz: Neither am I, but the only one who can answer that question has gone missing. – IInspectable Mar 29 '18 at 09:42