Search results

  1. C

    Leading Zero's

    Ok, so i've tried to search the forum for this issue, becuase i know leading zeros cause problems, but i hadn't found any answers that work for my situation. I have code that is updating a table with ID numbers. I tried using an auto field but the update sql wouldn't work correctly, so this...
  2. C

    Multiple Or Statements in WHERE Clause

    I've got this DB that I'm trying to use one query to generate data based on a criteria. The problem is i've setup three forms, with listboxes, to view the data in different ways, but all the listboxes generate the same field output. In order to make this work i've put three Or statements in...
  3. C

    Calling Module Values in Form Sub

    I can't seem to figure out how to store a value in my Module subroutine and then pull that value in my Form Subroutine. Ex. Module Public Sub exMod(ckIssue as Double) ckIssue = 2 End Sub Ex. Form Code Public Sub Button_Click() Dim ckIssue as Double MsgBox(ckIssue) If ckIssue >= 0 Then Goto...
Back
Top Bottom