Hi,
I have a form which has a combo box. The combo box lists cheque numbers. When the user selects a cheque number, a message will be displayed in a text box down saying that "You have selected cheque number 12345. Please click...etc". The text is written by me, but the cheque number is taken from the combo box cboChequeNumber. How can I make only the cheque number in bold.
Here is the code that I put in the after update event of the combo box. It is working fine.
I tried FontBold=True and FontWeight, but didn't work.
Me.txtDesc = "You selected cheque number " & Me.cboChequeNumber & " .Please click the right button that related to what you want to do with the cheque"
txtDesc is the textbox that shows the message.
Thanks
Paulin
I have a form which has a combo box. The combo box lists cheque numbers. When the user selects a cheque number, a message will be displayed in a text box down saying that "You have selected cheque number 12345. Please click...etc". The text is written by me, but the cheque number is taken from the combo box cboChequeNumber. How can I make only the cheque number in bold.
Here is the code that I put in the after update event of the combo box. It is working fine.
I tried FontBold=True and FontWeight, but didn't work.
Me.txtDesc = "You selected cheque number " & Me.cboChequeNumber & " .Please click the right button that related to what you want to do with the cheque"
txtDesc is the textbox that shows the message.
Thanks
Paulin