Search results for query: *

  1. khan_zahid

    How to add LinkLabel column in DataGrid

    yes I want HyperLinkColumn to display a clickable link within the DataGrid in windows application, not in ASP.net. Can u help me
  2. khan_zahid

    How to add LinkLabel column in DataGrid

    Hey Any body know how to add linklable column in datagrid. Just like we add combobox column in datagrid. Help me plz.
  3. khan_zahid

    Hyperlink in Datagrid in windows application

    Hey Vikram Thank u for ur reply. Bu I want It in windows application not in Web Application. Can u help me with that
  4. khan_zahid

    Deploy .net framework redistributable in setup.msi

    Help Is there any way to include .net framework redistributable in .msi file. instead of sepearte file. I want only i setup icon. plz If it is possible. Let me know
  5. khan_zahid

    Hyperlink in Datagrid in windows application

    Help I have 1 column in my tabel which have path to files. I want to show that column in datagrid. I want that column to be a hyper link column so when i clik on that link that file should open. Not in ASP.NET
  6. khan_zahid

    How to only open a form once

    Here is the way I was able to stop opening child window more then once. Create a Function: Private Function CheckIfOpen(ByVal frmName As String) As Boolean Dim frm As Form For Each frm In Me.MdiChildren If frm.Name = frmName Then frm.Focus() Return true Exit Function End If Next...
  7. khan_zahid

    How to creat Hyperlink column in datagrid

    Help How to creat hyperlink column in vb.net winforms application. Not in ASP.Net. I want to link some file with hyperlink datagrid cloumn. In MS acess there is a hyperlink datatype but in sql server it is not.I m acessing records form sql server. but i want one column as hyperlink...
  8. khan_zahid

    How to mantain sql connection

    The problem is that I have developed a small application using vb.net & sql server 2000. While debuging we write server path like this Sqlconnectionstring1="Server=localhost;uid=sa;pwd;database="Exampledatabase" I want to know that how to do coding so that connection string can be handled...
  9. khan_zahid

    skinning controls?

    Check this out hey buddy check out this website www.skincrafter.com
  10. khan_zahid

    How to mantain sql connection

    Help How to mantain sql connection in vb.net winform application after deployment. I tried to search on google but i dint get it. Can any body help me.
Back
Top