Hi all

I was wondering if there was a way from the bindingsouce to have a column formated as a hyperlink but not show the full link

for example

Displayed text ="Details"
URL = www.google.com

I currently have this code for looping through the BS but I'm just unsure on how to make it click able as a hyper link

c# Code:
  1. foreach (DataRowView view in myBindingSource)
  2.             {
  3.                 if ((string)view["group_name"] == "USAT-Desktop")
  4.                 {
  5.                     view["group_name"] = "TEST TEST";
  6.                 }
  7.             }