Okay, this should be a simple one but I am not finding the right sources through searching.
I have a form that is used to input records. One of the fields of the records is Permit #, which is a text field. Another field is Query Link field which is a hyperlink address that goes to a web based database.
What i want to happen is the hyperlink be automatically created in the AfterUpdate method of the Permit # field.
Right now, this is my general approach.
Get permit number from form.
Create hyperlink address from permit number (e.g. http://blah.blah.blah.blah.asp?Q=" & permitNumber)
set form field value to hyperlink (e.g. Me.QueryLink.Value = hyperlink)
This will change the "value" to the hyperlink but will not set the hyperlink address to the hyperlink so nothing happens when you click on it.
Any suggestions on how to set the HyperlinkAddress of the field?
I have a form that is used to input records. One of the fields of the records is Permit #, which is a text field. Another field is Query Link field which is a hyperlink address that goes to a web based database.
What i want to happen is the hyperlink be automatically created in the AfterUpdate method of the Permit # field.
Right now, this is my general approach.
Get permit number from form.
Create hyperlink address from permit number (e.g. http://blah.blah.blah.blah.asp?Q=" & permitNumber)
set form field value to hyperlink (e.g. Me.QueryLink.Value = hyperlink)
This will change the "value" to the hyperlink but will not set the hyperlink address to the hyperlink so nothing happens when you click on it.
Any suggestions on how to set the HyperlinkAddress of the field?