database - GridView and Hyperlink -
i new vb , programming in general, however, trying develop simple application can add , save daily records database. 1 of columns in database table used input paths/directories files in computer (e.g. c:\users\m\documents). when type in the file location , run application column contents viewed text , not hyperlink. explain how convert text in specified column hyperlinks (clickable)?
thank you
there column type datagridviewlinkcolumn, cannot edit cells content @ runtime in datagridview (only source code).
another solution:
use datagridviewtextboxcolumn column type.
to link style: can use cell defaultcellstyle property make blue text.
to mouse icon: can handle datagridview's cellmouseenter event change datagridview.cursor property when mouse on link column.
with datagridview's cellclick or cellcontentclick event can handle click on link.
Comments
Post a Comment