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:
foreach (DataRowView view in myBindingSource) { if ((string)view["group_name"] == "USAT-Desktop") { view["group_name"] = "TEST TEST"; } }




Reply With Quote