Search results

  1. thisisntwally

    Help creating a Report-I created an unbound form with a date range & 1 other criteria

    Between [Forms]![ExperationDialog]![BeginninDate] And [Forms]![ExperationDialog]![Ending Date]
  2. thisisntwally

    Search for date form date to date ‎

    1. build a form, name it frmRetlaw 2. add two text, name them after and before a. set format as date 3. add button 4. search this forum for keywords like Report Form Dates and Query. Im not going to write out everything for you, because i don't know anything about the structure of your...
  3. thisisntwally

    Search for date form date to date ‎

    assuming you already have the report built, you need to build a query/SQL statement which will select the data from your tables, as specified in your form, and use this as the source for your report.
  4. thisisntwally

    Help creating a Report-I created an unbound form with a date range & 1 other criteria

    im not totally clear what you have done, but do you have a button on your form which opens your report and passes the values from the form to the report?
  5. thisisntwally

    Search for date form date to date ‎

    are you trying to search for records or for Reports?
  6. thisisntwally

    Search for date form date to date ‎

    dude, let me be the first to say that this post doesn't really make much sense. "i have data with a lot of (records?) and report(s), I w(a)nt to create a form to select report name and (the date also? the date from two?)" Are you trying to make a form which will display report names and...
  7. thisisntwally

    Won't be on for a while

    get well soon!
  8. thisisntwally

    Help with Count function

    I could be wrong, but i think that if [WO/PM #] is a text field you need to wrap WO* in single quotes so that access knows its text. something like this... [WO/PM #] = '" & WO* & "'" also be sure to use AND as CPREMO suggested
  9. thisisntwally

    Intelligent Combobox

    heh. after a continuous loop made me start over, i tried this again, this time with ruralguys code from here: http://www.access-programmers.co.uk/forums/showthread.php?t=117314&highlight=list+requery while it doesn't seem too different from what i was doing, it did the trick. methinks it was...
  10. thisisntwally

    Bound controls

    I haven't worked much with subforms, but it seems to me that if you are trying to change the fields displayed by the controls in your subform, this should be totally possible. see if this thread helps...
  11. thisisntwally

    Bound controls

    im not sure exactly what you are asking here, but it is possible to bind a form to a SQL statement and programatically set the fields to display. Can you be more specific with what you are trying to do?
  12. thisisntwally

    Intelligent Combobox

    kinda. im doing this as such: Private Sub cboPurchaseOrder_NotInList(NewData As String, Response As Integer) Dim intAnswer As Integer intAnswer = MsgBox("Do you want to add this item to the list?", vbYesNo, vbQuestion) If intAnswer = vbYes Then DoCmd.RunCommand acCmdUndo DoCmd.openForm "addPO"...
  13. thisisntwally

    Intelligent Combobox

    ah, it seems i should have searched 2118 error before i posted that. I believe i have THE SOLUTION.:rolleyes:
  14. thisisntwally

    Intelligent Combobox

    ok this is pretty sweet. Im having a little problem though im doing this in form1: Private Sub cboPurchaseOrder_NotInList(NewData As String, Response As Integer) DoCmd.openForm "addPO", , , , , , NewData End Sub and this in addPO: Private Sub Form_Load() If Not IsNull(Me.OpenArgs) Then...
  15. thisisntwally

    Cancel Event in Public Function?

    like.......EXIT SUB. stupid noob. stupid stupid noob. can't you see you're good for nothing, you're soooo stupid!
  16. thisisntwally

    Cancel Event in Public Function?

    I've finally got a validation rule going in a public function. sadly the msgbox's spring, but the rest of the code continues to run. setting the function as boolean... amdValid = true If Nz(vFrm.txtvalue, "") = "" Then MsgBox "Please Include a Dollar Value for this Record"...
  17. thisisntwally

    Form Validation w/ VBA function

    thanks for the nz bit, that was spot on. on to new Problems...:)
  18. thisisntwally

    Intelligent Combobox

    hot buttery nipples, that sounds right up my alley. Thanks guys! Now if i could only get a grip on that validation function....maybe next week :)
  19. thisisntwally

    I just want to beat Idjit to the punch

    Dread Pirate Read which, I believe, is the same name as last year. maybe not the Read bit, I think i chose muppets over the book last year, and was Dread Pirate Walter.
  20. thisisntwally

    Intelligent Combobox

    I have a combobox, populated from a lookup table and a button which opens a form to add new values for the combobox. Heres what i would like to do (users idea, not mine, apparently clicking the add button might be too confusing for some old fogies) If the user types a value which is not in the...
Back
Top Bottom