Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Set Field = tdf.CreateField("Field", dbText, 16) 1

Status
Not open for further replies.

rgbanse

MIS
Joined
Jun 4, 2001
Messages
211
Location
US
Thx in advance
what is the syntax for creating hyperlink field.
Using the following creates a text field ok but I also need to create a hyperlink field

Set Field = tdf.CreateField("Field",dbText, 16)

thx
RGB
 
Only Memo fields can be hyperlinks. Change this to:
Code:
    Set Field = tdf.CreateField("Field", dbMemo)
    Field.Attributes = Field.Attributes Or dbHyperlinkField
Rick Sprague
 
Rick,
It worked perfectly - I tried to give you a star but it came back with a diagnostic error.
I'll keep trying though to get you the star you derserve.
thx
RGB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top