Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. dhir25

    checkbox

    more Easy is Private Sub chkbox1_Click() chkbox2.Value = not chkbox1.Value end sub Private Sub chkbox2_Click() chkbox1.Value = not chkbox2.Value end sub this will make one checkbox selected everytime
  2. dhir25

    System Tray

    DO the following steps: 'Insert one Form And Menu Named mPopupSys 'IN FORM Load Event Private Sub Form_Load() With nid .cbSize = Len(nid) .Hwnd = Me.Hwnd .uId = vbNull .uFlags = NIF_ICON Or NIF_TIP Or NIF_MESSAGE...
  3. dhir25

    Exchanging Data Over the Network...

    HI There are two ways of doing this. 1. You can use Remote Automation or COM+. 2 You can use Winsock. If data is simple then you can use winsock cause it is easy to handle. Check MSDN for more details. Bye Dhir
  4. dhir25

    How to get SQL column descriptions?

    Hi If all the things doesn't work just try Fn_ListExtendedProperty the system function. For more details go thr Help. u can use this function only with SQL server 2000. Bye Dhir
  5. dhir25

    Best Install program

    Hi Fenris Just modify VB's Setupkit its the Best one for VB Deployment. You can modify Setup program to make it attractive and more user friendly. Bye Dhir

Part and Inventory Search

Back
Top