Hello,
Suppose I have a table called "Links_Tbl" with a column titled "Link" and a text box on a form called "txtlink".
I am finding that the following code is not making the uploaded links active:
It uploads the text just fine but when the links are displayed on subform in datasheet view, clicking on them does nothing. If I input the link directly into the table (not through the code above) the links are active.
Any suggestions as to how to make the links active when using the code above?
Many thanks!
-Brian
Suppose I have a table called "Links_Tbl" with a column titled "Link" and a text box on a form called "txtlink".
I am finding that the following code is not making the uploaded links active:
Code:
sqlinsert = "INSERT INTO Links_Tbl (Link) VALUES ('" & me.txtlink & "');"
db.execute(sqlinsert)
Any suggestions as to how to make the links active when using the code above?
Many thanks!
-Brian
Comment