Hey there,
I have the following problem driving me nuts!
I have 2 check boxes and each one is assigned a message (for check 1 say Hi, for check 2 say food). If I click on one of them, it displays its message in a text box, and pressing the second one, (with the 1st one still ticked) should display both messages. Problem is, one is overwriting the other, and vice-versa. Any tips?

breezyy
Recommended Answers
Jump to PostHi,
You need to build the message string accordingly..
Try This :Dim T As String T= "" If chk1.Value = vbChecked Then T = "Hi " End If If chk2.Value = vbChecked Then T = T & " Food " End If MsgBox T
Regards
…
All 3 Replies
Reply to this topic Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.