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)?

enter image description here

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

Popular posts from this blog

c# - Send Image in Json : 400 Bad request -

javascript - addthis share facebook and google+ url -

ios - Show keyboard with UITextField in the input accessory view -