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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ManojX

  1. ManojX

    Text File -> Grid Control -> Text File

    There is ActiveX collection called "Sheridan". It has a various types of databind controls as well as data list controls, where you can edit inside the grid itself and you can enter new rows to the grid as well.
  2. ManojX

    RegRead a key with a pathname

    Just send me an email to manojdemel@hotmail.com, I'll send you the code(Module)
  3. ManojX

    Sql sever authentication

    can Do it, assume you have connection called con, placed two text boxes in the form (txtUID,txtPWD). Dim con as new ADODB.connection cmdOK_Click() dim sUser,sPass as string sUser=txtUID sPass=txtPWD con.open "DSN=DSN_Name;UID=" & sUser & ";PWD=" & sPass & ";&quot...
  4. ManojX

    How to save rows in grid to database

    Try this out and let me know if it works, With Grid I = 0 If .Rows >= 1 Then For I = 1 To (.Rows - 1) If .TextMatrix(I, 1) <> &quot;&quot; Then conInv.Execute &quot;INSERT INTO Table_Name(pc_index,comment) &quot; _ & &quot;VALUES(&quot; & pc_index & &quot;,'&quot; &...
  5. ManojX

    Connection String

    Try this out, Step 1. Dim strCon as string Dim con as new ADODB.Connection Step 2. if you are using a DSN(Data source name) to connect to the SQL server, Then use this method Syntax: strCon=&quot;DSN=DSN_Name;UID=userID;PWD=password;Database=databasename&quot; Or you can use this method...

Part and Inventory Search

Back
Top