Reputation: 21
How to return data table`s text fields as hyperlinks to open the detailed view thereafter: all fields of the search item in Microsoft Access 2010? Similar to ASP.NET GridView with column hyperlinks.
Thanks
Upvotes: 0
Views: 5574
Reputation: 5917
As far as i understand, you are having a datasheet and would like to click on each ID to open the full details.
idea:
To achieve this:
you need to create a new form where your full details will be showed. I guess you know this already. in case:
Save the from "frm_view_in_full"
Goto the main DataSheet/gridview from where you would like to call this form
now you can simply call the form with where condition like:
docmd.OpenForm "frm_view_in_full", acNormal,,"[whereConditionField]=" & Condition
Upvotes: 2