Recent content by mamradzelvy

  1. mamradzelvy

    Big scale check-box input logging?

    Well, no. ID is autonumber but txtID is a textbox and SerStatus is a yes/no field. This Code doesn't result in an error, thank you!
  2. mamradzelvy

    Big scale check-box input logging?

    @cheekybuddha thanks once more, the new code now does exactly what i had imagined!! I just stumbled upon a new "error" message, which i have not encountered yet: For clarification: i got a button that updates the selected record's boolean status field, does a timestamp of the time it's been...
  3. mamradzelvy

    Big scale check-box input logging?

    Sorry to take this one out of retirement, however i found the answer from @cheekybuddha to result in an error once i tried to apply it. Function UpdatedBy(ctlName As String) As Boolean Me(Me(ctlName).ControlSource & "X") = TempVars("UserName") End Function Dim ctl As Control For Each...
  4. mamradzelvy

    Graph DBs vs. Relational DBs

    Hi, past few days i've been reading up on graph DBs in my spare time and i found it quite exciting. Has anyone here had any experience with those in a business enviornment? Also, anybody knows of any examples where a company would use a graph db for their day to day work switching from a...
  5. mamradzelvy

    PDF export predefined margins?

    Hi, i'm trying to export via vba to pdf, but i can't find a way to save print margins to be a default value, which would transfer to other machines as well so that it would always output the same file on any pc. DoCmd.OutputTo acOutputForm, "FormTEST", acFormatPDF, strPath & "\Report_" &...
  6. mamradzelvy

    Solved Include Form Header in rtf export

    I'm not doing a print operation, but rather ribbon>external data>more>word. I got it set to: Always.
  7. mamradzelvy

    Solved Include Form Header in rtf export

    Solved because switching to pdf..
  8. mamradzelvy

    Solved Include Form Header in rtf export

    Hi, is it possible to export a form header along with the actual contents of the form to word? This here is my test form (not the final thing) and i've been unsucsessful thus far with keeping anything but the form data, sometimes also the lines in between records. And here is the outcome...
  9. mamradzelvy

    Big scale check-box input logging?

    @theDBguy @bob fitz @Micron Alright, thank you guys for the clarification. I've not been this involved in a forum before, so pardon my amateur faults. @cheekybuddha has provided me with an amazing answer on UA, therefore i mark this post a solved!
  10. mamradzelvy

    Big scale check-box input logging?

    Is that a problem?
  11. mamradzelvy

    Big scale check-box input logging?

    Hi, I've got a form for tracking repairs etc. done to PCs in our shop and i'd like to track who's checked a check-box. i got some 45-ish check boxes in there and i got a table column extra for each of these to store the data in of who did what, namely TempVars UserName, however, i figured there...
  12. mamradzelvy

    Solved Resize form on button click?

    well, yeah, that's what i settled on.
  13. mamradzelvy

    Solved Resize form on button click?

    Thank you! Is there a way to resize it back to it's original size without toying around with numbers?
  14. mamradzelvy

    Solved Resize form on button click?

    Hi, I was wondering whether it's possible to change a form's width on demand. I got a nice form with a listbox on it and i was hoping i could make it expand, namely it's width to show more data within the listbox, but only if one so desires.
Top Bottom