Search results

  1. alvingenius

    Solved Print Multiple file paths saved in table

    i didn't because i don't know how to point it to print multiple paths linked to every user automatically
  2. alvingenius

    Solved Print Multiple file paths saved in table

    Hello Guys, I've 2 tables Table for User Profile ( Name, Date of birth, address, phone, email,...etc ) and table named " Files " that saves file paths of ID Photo, Passport image, Certificates images ( i know its local file paths !) - All Files in PDF extention and report only showing user...
  3. alvingenius

    Solved Replicate Text Box in Continuous Form

    Db attached in zip already
  4. alvingenius

    Solved Replicate Text Box in Continuous Form

    It wont store this value in table !
  5. alvingenius

    Solved Replicate Text Box in Continuous Form

    So what to do in my case ? If what i need to do is against normalization rules ?
  6. alvingenius

    Solved Replicate Text Box in Continuous Form

    Sample zip attached i wanna copy the values from TimeDiff to ClockinLate in continues form and saved in table
  7. alvingenius

    Solved Replicate Text Box in Continuous Form

    Hi i've this Query as a record source of the form TimeDiff is the calculated field and now with the form as u see in VBAi wanna copy the values from TimeDiff to ClockinLate in continues form i tried to attach the sample DB but it's not allowed in attachment !!
  8. alvingenius

    Solved Replicate Text Box in Continuous Form

    already using a date source from the query and it shows what i want exactly in form all i want to replicate values from this field to table field
  9. alvingenius

    Solved Replicate Text Box in Continuous Form

    Hello Guys, I have a simple problem I guess :unsure: let's say I have a table with Names | TimeIn | TimeOut | WorkingHours Fields i've a form with a query in Record source, and I built a new field in a query to calculate the working hours with a name: Hours and I have a calculated field in...
  10. alvingenius

    Mouse Hover textbox boarder color change

    that's what i see when compile
  11. alvingenius

    Mouse Hover textbox boarder color change

    Thanks for the fast reply All Controls i wanna effect on it is Textbox and ComboBox only and after i put the updated code i got this error it appear on every textbox mouse move
  12. alvingenius

    Mouse Hover textbox boarder color change

    Wow that's exactly what i want and I'm quoting the code here to ask a question and i hope you help me on it Function PassName() Function PassName() Dim ctl As Control For Each ctl In Forms!frmFormName.Controls If ctl.ControlType = acTextBox Then ctl.OnMouseMove = "=MyFunc(""" & ctl.Name &...
  13. alvingenius

    image attachment Dlookup in report

    I just said that. I'm looking for the fastest way to just put a control on every report instead of editing evert report query
  14. alvingenius

    Mouse Hover textbox boarder color change

    What post exactly?
  15. alvingenius

    Mouse Hover textbox boarder color change

    Hello I have a form with many fields to fill and I'm using this code to make specific textbox to change border color on mouse hover Private Sub Detail_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) Me.txtUsername.BorderColor = 15197669 End Sub Private Sub...
  16. alvingenius

    image attachment Dlookup in report

    Hello I have a table with an attachment field having a jpg image and I wanna retrieve it in a report like retrieving a text or number using lookup I can't use this table as the record source, it has to be same as using dlookup statment in the same report, i use this...
  17. alvingenius

    Solved Like Operator in VBA

    I've changed " to ' in VBA even in query criteria and it works now Like '*' & [Forms]![frm_Names]![FilterCat1] & '*' Thanks all
  18. alvingenius

    Solved Like Operator in VBA

    Hello I wanna change a record source of a form using VBA. Form Record source is SQL statement SELECT tbl_Names.ALC_ID, tbl_Names.ALC_Number, tbl_Names.OrderID, tbl_Names.Cat1 FROM tbl_Names WHERE (((tbl_Names.ALC_Number)=[Forms]![frm_Intro]![cboSession]) AND ((tbl_Names.Cat1) Like "*" &...
  19. alvingenius

    Question Embedding fonts in Access DB

    how to do it ? storing the font(s) in a table as a BLOB
  20. alvingenius

    Question Embedding fonts in Access DB

    Hello Good day to all, i'm using a custom fonts from windows in Forms and Reports and i wanna embed them to access front end instead of making a package and attach fonts files , i want it to go through access it self, like creating a table with fonts and attach fonts on the table and with a...
Back
Top Bottom