Z
Zoltar54
I have a text box on my form which is populated based on a selection made in
a combobox. I have used the VBA code below and it does to work to some
extent however not all of the text is showing. I have verified that the size
for the underlying tables are set to maximum (255) but to no avail. Can
someone please help?
Private Sub ServiceID_AfterUpdate()
Dim strfilter As String
On Error GoTo errorhandler
Me.Description = serviceid.column(3)
Exit Sub
errorhandler:
MsgBox "Error#" & Err.Number & vbCrLf & Err.Description
a combobox. I have used the VBA code below and it does to work to some
extent however not all of the text is showing. I have verified that the size
for the underlying tables are set to maximum (255) but to no avail. Can
someone please help?
Private Sub ServiceID_AfterUpdate()
Dim strfilter As String
On Error GoTo errorhandler
Me.Description = serviceid.column(3)
Exit Sub
errorhandler:
MsgBox "Error#" & Err.Number & vbCrLf & Err.Description