Recent content by psuplat

  1. P

    1 report 4 altered copies

    That will be problematic due to the size of the file. It is a massive one with over 80MB. Any other way of doing it?
  2. P

    1 report 4 altered copies

    Here is the code launch by the onClick event of a button: Private Sub Command196_Click() Dim x As Integer Dim rpt As Report ' Colour constants. Amend as required Const PINK_COLOUR = 16751103 Const GREEN_COLOUR = 65280 Const YELLOW_COLOUR = 65535 Const GREY_COLOUR =...
  3. P

    1 report 4 altered copies

    rpt.Print didn't work. When I use DoCmd.PrintOut the printer spits out 4 copies alright but all of them are of pink color version. It seems like the switching doesn't work
  4. P

    1 report 4 altered copies

    I'm getting compile error "Argument not optional" and .Print gets highlighted
  5. P

    1 report 4 altered copies

    The code is as below DoCmd.SelectObject acReport, "NewReport", True DoCmd.PrintOut acPrintAll, , , , 4 is is set to a button onClick event. but all this does is prints 4 copies without any alterations
  6. P

    1 report 4 altered copies

    Yes it is, but I could just as well change it to a text box with color background. I have a piece of VB code somewhere that will spit out 4 copies of report.
  7. P

    1 report 4 altered copies

    Hi all, Not sure if this is possible to do but.. I have an access db from which I print a report, but I am using a dot matrix printer that print on special paper giving me 4 copies on pink, green, yellow and white paper. I need to move this report from dot matrix printer to normal printer...
  8. P

    Switching between tables

    Hi everyone, not sure if what I want can actually be achieved but here goes, i have a db system used on a fast production line, that works of linked tables located somewhere on the network. What I was thinking to do is something that keeps the system working even if the network goes down. Let...
  9. P

    "Alphabetic" go to record

    Hi everyone:) I have a simple form conencted to table that displays the suppliers. The records are being sorted alphabeticaly by the company's name. What I would like to achieve is create an A to Z "letter bar" on top of the form. When user click i.e. "S" it takes him to first record where...
  10. P

    set label value based checkbox is ticked

    Tried it, but still doesn't work. But I managet to find a solution. It was actually simpler than i though it would be. I just add the following code in the reports detail OnFormat event: If Me.checkNIU= False Then Me.lblNIU.Visible = False End If Anyway thanks, willingness to help always...
  11. P

    set label value based checkbox is ticked

    I'm using access 2003, and looks like i cannot apply conditional formating to labels. If i select label and go to menu format, that function is disabled :(
  12. P

    set label value based checkbox is ticked

    Hi. On the report i have a checkbox bounded to table field named "disc", the checkbox is hidden. Also I have a label called "lblDisc", also hidden by default. What I want is when the box is ticked, I want the lblDisc visibility value set to true. Or, other way of doing it, lblDisc is visible...
  13. P

    Question a tough one

    I've been trying that one. but still got few problems. on it's own in a simple form this works, but my form is a bit complicated. the whole thing includes to tables: substances and pictures table pictures has fields "picID" and "path" table substance includes, among other fields, hazard1...
  14. P

    Question a tough one

    Hi everyone. I'm having a problem with a database design, and don't know how to bite it:mad:. I need to design a COSHH database. Everything goes nice and smooth until the point of pictures. Every substance that is on db will have to assigned pictures representing symbols of hazard or ppe...
  15. P

    funny acting mask

    Hi. I've got a textbox on form with input mask \T\M\CL0\C\H000000LAA0000 which access is automatically redoing to "TMC"L0"CH"000000LAA0000 i've got 2 problems with this. when i scan the number from a barcode: 1. the 4th characted should be any letter required - but it always puts in K...
Back
Top Bottom