Using Text Boxes

Update Settings After A Text Box Is Edited Use the ‘Leave’ event Locking the contents of a text box ReadOnly = True BackColour = Window (if you don’t want it greyed out) Read the contents of a text box String ^buffer; buffer = txtScreenContents->Text; Write to a text box txtScreenContents->Text = “Hello World\r\nHeres another line.” […]

Read More