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:

  1. make field act hyperlink
  2. build new form show full details
  3. use onclick event open new window full details

to achieve this:

you need create new form full details showed. guess know already. in case:

  1. select table/query trying use datasource form.
  2. goto menu > create > form ( create default form fields in table/query)
  3. save "frm_view_in_full"

  4. goto main datasheet/gridview call form

  5. select field make hyperlink , goto field's properties.
  6. set fields property "is hyperlink = yes"
  7. goto on event property selected field

now can call form condition like:

docmd.openform "frm_view_in_full", acnormal,,"[whereconditionfield]=" & condition 

Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

jsf - How to ajax update an item in the footer of a PrimeFaces dataTable? -

django - CSRF verification failed. Request aborted. CSRF cookie not set -