Hi All
 
I have written the following code but I want to display 'Agent' and 'Submission Date' in Bold.
 
ANy suggestions are welcome. Thanks
	
	
	
		
 I have written the following code but I want to display 'Agent' and 'Submission Date' in Bold.
ANy suggestions are welcome. Thanks
		Code:
	
	
	Private Sub lstRed_Click()
Me.txtRed = "Agent: " & DLookup("[Staff Name]", "[tblstaff]", "[Staff Number]=" & Me.lstRed.Column(2)) & vbNewLine & "Submission Date: " & Me.lstRed.Column(9)
End Sub