CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: dongodu

Page 1 of 2 1 2

Search: Search took 0.07 seconds.

  1. Replies
    1
    Views
    1,046

    Datafield SrNo Not Foud

    Dim SrNo As Boolean
    Private Sub cmdClose_Click()
    Unload Me
    End Sub
    Private Sub cmdPrint_Click()
    Set Record = New ADODB.Recordset
    Record.Open "SELECT...
  2. Replies
    1
    Views
    898

    Run Time Error:91

    Private Sub stock()
    Set Record = New ADODB.Recordset
    Record.Open "Select * from Stockin where ProductCode='" & TxtDesc.Text & "'", Connect, 1, 3
    With Record
    If .EOF = True And .BOF = True...
  3. Replies
    1
    Views
    836

    Run Time Error:3709

    Option Explicit
    Private Sub cmdClose_Click()
    Unload Me
    End Sub
    Private Sub cmdPrint_Click()
    modConnect.Connected
    Set Record = New ADODB.Recordset
    Record.Open "Select * from SalesInvoice where...
  4. Replies
    2
    Views
    964

    VB is Crashed When Press Exit Button

    In my VB project when i Press Exit Button, VB6 is Crashed
    Why Like this???
  5. Replies
    1
    Views
    1,131

    Save data from Checkbox to Access

    i am trying save data from a check box to database in access, i don't have any idea about code, how to proceed, can any one help me
    Thanks in Advance
  6. Replies
    5
    Views
    5,499

    Re: Data Type Mismatch in criteria expression

    Private Sub cmdSave_Click()

    Dim cnuser As New ADODB.connection
    Dim rsuser As New ADODB.Recordset

    If sempty(txtFulNa.Text) = True Then Exit Sub
    If sempty(txtFan.Text) = True Then Exit Sub
    If...
  7. Replies
    5
    Views
    5,499

    Data Type Mismatch in criteria expression

    when i save a record to access through error
    Run time error - Data Type Mismatch in criteria expression
    and when i go to debug...it directs to ".Open sSQL, sConnection, adOpenKeyset,...
  8. Replies
    2
    Views
    1,311

    [RESOLVED] how to get ride of Null?

    Private Sub cus()

    Dim cnview As New ADODB.connection
    Dim rsemployee As New ADODB.Recordset

    Call connection(cnview, App.Path & "\Commissions.mdb", "endromida")
    Call Recordset(rsemployee,...
  9. Replies
    15
    Views
    4,307

    Re: Error in Count of records

    32475As per your advise code edited, but error is attached
  10. Replies
    15
    Views
    4,307

    Re: Error in Count of records

    My Previous question was not resolved...still exist same. and this one new which i posted
  11. Replies
    15
    Views
    4,307

    Re: Error in Count of records

    yes Field is there in table
  12. Replies
    15
    Views
    4,307

    Re: Error in Count of records

    Function sus()

    Dim cnview As New ADODB.connection
    Dim rsemployee As New ADODB.Recordset

    Call connection(cnview, App.Path & "\Commissions.mdb", "endromida")
    Call Recordset(rsemployee, cnview,...
  13. Replies
    15
    Views
    4,307

    Re: Error in Count of records

    Please provide a sample of code like what i am trying to get.
  14. Replies
    15
    Views
    4,307

    Re: Error in Count of records

    Function Cant()

    Dim cnview As New ADODB.connection
    Dim rsview As New ADODB.Recordset
    Call connection(cnview, App.Path & "\Commissions.mdb", "endromida")
    Call Recordset(rsview, cnview,...
  15. Replies
    15
    Views
    4,307

    Error in Count of records

    Option Explicit
    Dim tr_no As String
    Private rs As New ADODB.Recordset
    Private ForeColors(0 To 2, 0 To 1) As Long
    Private BackColors(0 To 2, 0 To 1) As Long
    Private Sub Form_load()
    ...
  16. Replies
    18
    Views
    2,508

    Re: Run Time Error 3201

    With rsupdate
    If .BOF = True And .EOF = True Then
    .Fields!condi = txtText2.Text
    .Update
    End If
    End With

    or
    With rsupdate
    If .BOF =...
  17. Replies
    18
    Views
    2,508

    Re: Run Time Error 3201

    Private Sub lap()

    Dim cnuser As New ADODB.connection
    Dim rsupdate As New ADODB.Recordset
    Dim reply As String

    'Call connection(cnuser, App.Path & "\Medrar.mdb", "endromida")
    ...
  18. Replies
    18
    Views
    2,508

    Re: Run Time Error 3201

    Updated my previous post, Please need sugesstion.
  19. Replies
    18
    Views
    2,508

    Re: Run Time Error 3201

    Option Explicit

    Dim cd As ADODB.connection
    Dim rs As ADODB.Recordset

    Dim rd As ADODB.connection
    Dim cs As ADODB.Recordset

    Dim fd As ADODB.connection
    Dim Fs As ADODB.Recordset
  20. Replies
    18
    Views
    2,508

    Re: Run Time Error 3201

    Please verify attached txt file for reference.
    Thank you very much in advance
  21. Replies
    18
    Views
    2,508

    Re: Run Time Error 3201

    Thanks alot, but record is not updating????
    No Errors thrown
  22. Replies
    18
    Views
    2,508

    Re: Run Time Error 3201

    Check this Error Msg
  23. Replies
    18
    Views
    2,508

    Run Time Error 3201

    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,...
  24. Replies
    3
    Views
    825

    Re: Screen Resolution And Graphics

    Realy Wonderful, But in this code
    http://www.dreamincode.net/forums/topic/34776-resize-form-controls-for-screen-size-vb6/
    Got Run Time Error '438'
  25. Replies
    3
    Views
    3,644

    Auto Resize Form to Screen

    How to make Auto Re size Form to Screen with different resolutions?
    Can any Body Suggest me.
    Thnx in Advance
Results 1 to 25 of 42
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured