Let's say I have a list of hyperlinks in a column
Column A:
Link: "ftp://upload:XXXXXX@24.XXX.XXX.XXX/spot%20viewer/" & [number] & ".wmv"
Column B: [number]
I want column [numbers] as text to display.
Thanks in advance.
Jeanette Cunningham - 02 Mar 2008 04:48 GMT
Try this:
Me.BTextBox = Me.ATextBox & Me.BTextBox & ".wmv
BTextBox is the name of the control on your form that is bound to field B
[number]
ATextBox is the name of the control on your form that is bound to field a
[number]
Jeanette Cunningham
> Let's say I have a list of hyperlinks in a column
>
[quoted text clipped - 7 lines]
>
> Thanks in advance.