Search results

  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...
  16. P

    unbound controls headache

    that's what i've got now. thing is that with the default values the first row always stays empty (unfilled), and after the default values are placed even before user inputs anything in the first field. I want those values to show after user fills he first field an goes to the next record.
  17. P

    unbound controls headache

    Hi. I've got a little problem with the unbound controls on continuous form. In form header user inputs his name, temperature, humidity, and number of tools used (drum, belt). Then on forms main "body" he only inputs the serial number to the first field and the rest is field automatically. The...
  18. P

    Character recognition and automatic values input

    Can this be done just with the VB code, without creating a separate table. I only need recognition for 4 different letter (D,E,T,X).
  19. P

    Character recognition and automatic values input

    I assume that Me is the form name/indentifier
  20. P

    Character recognition and automatic values input

    I don't know how to make it any simpler. I have a table called "Table1", with 2 fields "Serial_no" and "Model", both text type. I input values to this table through a form. The form has to fields, "Serial_no" and "Model". To "Serial_no" I'm inputing following values: A9CB123865A C9CB536765M...
Back
Top Bottom