Results 1 to 2 of 2

Unlogic arthemetic error

Threaded View

  1. #1
    Registered User
    Join Date
    02-26-2009
    Location
    India
    MS-Off Ver
    Access
    Posts
    69

    Unlogic arthemetic error

    Hi,

    I did a simple code on a form that generate a message when the user enter
    quantity return more than the quantity sold.

    The problem is that the code work correctly with some record but doesn't
    work correctly with other record (the message appear if the user enter a
    quantity less or more the the quantity return) and that happened when the
    quantity is 10 which mean that this isn't an error in the code.

    The code i am used in my project:

    Private Sub Command8_Click()
    Dim msg, stryle, title, response
    msg = "the quantity return could not be more than the quantity sold"
    title = "caution"
    Style = 0
    Me.Text9 = Me.List2.Column(3)
    If Me.Text6 > Me.List2.Column(3) Then
    response = MsgBox(msg, Style, title)
    Else
    DoCmd.Beep
    End If
    
    End Sub
    which the fourth column in list2 is quantity.

    Thanks in advance......
    Last edited by Reema; 03-02-2009 at 06:19 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1