Search results

  1. A

    Generate Report by Field Value - not just the field

    I will try and see what I come up with...never knew how to use that field before now. Thanks.
  2. A

    any point in 360

    Nothing is better than Halo, only equal to. Gears of War is an excellent game, but you can't match the story line or intense one on one battles that Halo brings to the fore front. I mean come on, their even making a movie about it...!!! By the way, Xbox360 is cheaper than PS3, so keep that in mind.
  3. A

    Generate Report by Field Value - not just the field

    I am looking to generate a report that will give me the number of the actual value of the field, not just sort it by the field or give me the table total. Example: Combo-box with 20 names in it. It's used to record who has made an observation about something. I want to be able to generate a...
  4. A

    Broadcast printing in Access

    Broadcast Printing I understand what your going through, I have to broadcast to 9 different printers. The easiest way I found is to make a report for each specific printer, different labels for each, and on command (I use a command "On Click" button), I use the code DoCmd.OpenReport "Report...
  5. A

    Display label or text box at specific time

    Ok all, thanks so much for your help. Here's what I came up with and it works great. OnTimer with 1000 milliseconds set: If Time = #08:00:00 AM# Then Msgbox "Send Report to Department", vbOkonly, "Send Report Confirmation" End If Thanks again for all your help.
  6. A

    Display label or text box at specific time

    Can you show me how to run this when they are the same?
  7. A

    Display label or text box at specific time

    I tried to set a message box to open at a specific time, and couldn't. I'm pretty much a novice, and am probably using the wrong code. I'm not sure how to set up...
  8. A

    Display label or text box at specific time

    Ok, didn't work with the Code in the OnTimer. Is the code wrong, is there a different format for time?
  9. A

    Display label or text box at specific time

    Should the code be in the OnTimer? Currently its in the OnCurrent. Now() is not in the equation right now.
  10. A

    Display label or text box at specific time

    I've searched the forum, cannot find anything for this. I want to display a label or text box (or if possible a msgbox) at a specific time of the day. My database is a 24hr op, so a user will always be on to see it. Here's the code I tried. If Time = 0800 Then me.reminder.visible = true else...
Back
Top Bottom