Recent content by dongodu

  1. D

    Run Time Error '-2147467259(80004005)

    Private Sub lap() Dim cnuser As New ADODB.connection Dim rsupdate As New ADODB.Recordset Dim reply As String Call connection(cnuser, "\\mika\medrar\Medrar.mdb", "endromida") Call Recordset(rsupdate, cnuser, "SELECT upd,LanNum FROM Reser where LanNum = '" & txtSaLan.Text &...
  2. D

    Run time Error 3201

    'Call connection(cnuser, App.Path & "\Medrar.mdb", "endromida") Call connection(cnuser, "\\mika\medrar\Medrar.mdb", "endromida") Call Recordset(rsupdate, cnuser, "SELECT l_status,lnum FROM Lands where lnum = ' & txtLaLanum.Text & '") Can u see my Database exactly.???????
  3. D

    Run time Error 3201

    That is the database location which i am connecting
  4. D

    Run time Error 3201

    Its Table and i am updating record from that table.
  5. D

    Run time Error 3201

    unable to work out with With rsupdate If Not (.BOF And .EOF) Then .Fields!upd = txttext2.Text .Update End If End With 1. i did not wrote any procedure specially
  6. D

    Run time Error 3201

    Error Description
  7. D

    Run time Error 3201

    Private Sub laup() Dim cnuser As New ADODB.connection Dim rsupdate As New ADODB.Recordset Dim reply As String 'Call connection(cnuser, App.Path & "\Medrar.mdb", "endromida") Call connection(cnuser, "\\mika\medrar\Medrar.mdb", "endromida") Call Recordset(rsupdate, cnuser...
  8. D

    Verify This

    ******** Code ******** Private Sub cmdPrint_Click() Set obj = New PrinterControl obj.ChngOrientationPortrait Call ConnectMe rs.Open "select customer.cusno,customer.fullname,customer.idcn,customer.mobie,customer.reg,customer.dateis,customer.email,sales.pron,sales.blono,sales.lano,sales.sql from...
  9. D

    Verify This

    rs.Open "select customer.cusno,customer.fullname,customer.idcn,customer.mobie,customer.reg,customer.dateis,customer.email,sales.pron,sales.blono,sales.lano,sales.sql from customer inner join sales on customer.idcn = sales.idcn where customer.idcn = '" & txtCusC.Text & "'", con, 1, 3 Same Error...
  10. D

    Verify This

    Kindly Verify This Query "rs.Open "select customer.cusno,customer.fullname,customer.idcn,customer.mobie,customer.reg,customer.dateis,customer.email,sales.pron,sales.blono,sales.lano,sales.sql from customer,sales where customer.idcn = '" & txtCusC.Text & "'", con, 1, 3"
  11. D

    Kindly Sugesst

    Date formate is dd/mm/yyyy in Access file
  12. D

    Kindly Sugesst

    SELECT * FROM cheques WHERE e_date between #' & Text1.Text & '# and #' & Text2.Text & '#"
  13. D

    Kindly Sugesst

    SELECT * FROM cheques WHERE e_date like = #' & Text1.Text & '# and #' & Text2.Text & '#" -- To get the data between dates in a report. Throughs run time error Sugesst Plz
Back
Top Bottom