Query return hyperlinks in text fields in Microsoft Access 2010 -
how return data table`s text fields hyperlinks open detailed view thereafter: fields of search item in microsoft access 2010? similar asp.net gridview column hyperlinks.
thanks
as far understand, having datasheet , click on each id open full details.
idea:
- make field act hyperlink
- build new form show full details
- use onclick event open new window full details
to achieve this:
you need create new form full details showed. guess know already. in case:
- select table/query trying use datasource form.
- goto menu > create > form ( create default form fields in table/query)
save "frm_view_in_full"
goto main datasheet/gridview call form
- select field make hyperlink , goto field's properties.
- set fields property "is hyperlink = yes"
- goto on event property selected field
now can call form condition like:
docmd.openform "frm_view_in_full", acnormal,,"[whereconditionfield]=" & condition
Comments
Post a Comment