creating hyperlink in a datagrid cell
hai,
i want to create a hyperlink to one cell in a windows forms datagrid. I have not found support for this in windows forms. But i think, there is lot of support for this control in web forms. Can any one suggest me, if possible through example, how to create a hyperlink to a cell in datagrid.
bye
Re: creating hyperlink in a datagrid cell
Quote:
Originally posted by raghavkotha
hai,
i want to create a hyperlink to one cell in a windows forms datagrid. I have not found support for this in windows forms. But i think, there is lot of support for this control in web forms. Can any one suggest me, if possible through example, how to create a hyperlink to a cell in datagrid.
bye
Hi Raghav,
I do not know c# but I got some URLs on net.
I will be glad if the links are useful in any way to you.
http://www.syncfusion.com/FAQ/WinForms/FAQ_c44c.asp
http://www.dotnetfun.com/Articles/AS...ntsCSharp.aspx
http://www.appserver-zone.com/codemag/Article/11489
Hope they may help...
Try other links in the above mentioned URLs if you think they are useful..
Best wishes for your Sharp programming in c#
cheers
mahanare
creating hyperlink in datagrid cell
hai,
yes, we can create hyperlink in datagrid cell only when the user clicks in a cell. If user clicks at a point, then by using hittest method, we will get cell position. Then we can paint a linklabel at that cell position with the actual content of the cell. Thus we can create hyperlink.
But it is not the required solution. But i to not get creating hyperlink directly or even through mousehover event.
bye