Recent content by JPR

  1. J

    Default Date in Textbox

    Hello, I would like to add two unbound text boxes on a form which indicate the 1st day of the current year (txtFrom) and the current date (txtTo). Thank you for your help.
  2. J

    vba to print Word document double side

    Hello, I have a vba that export data from a form to a MS Word template. It works great but I would like to add a final code that allows wither to open the file in case users need to modify it, or print is double side. I cannot specify the printer type as the database will be used my multiple...
  3. J

    Extract part of a string

    Thank you
  4. J

    Extract part of a string

    Hello, I have a table with a filed named CustomerFileNo which is made of 10 digits plus one or two characters which identify the customer. ex: 0000000000A 0000000000BB I was trying to create a new field that only shows any digit or character after the 10th digit but can't get it working: ex...
  5. J

    Export data in Work to different folders

    Works just great! Thank you
  6. J

    Export data in Work to different folders

    Hello, I have a form with a cmd button that exports data to MS Word template. Presently the word file is saved via code too just one folder (C:\MyTemplate). I would now like to change my code to save the word file into different folders depending on the selection in a textbox (txtfolder)...
  7. J

    Between/And

    Hello Pat, "Age 70" obviously is just an example of what I want to show up in the textbox. Thanks
  8. J

    Between/And

    This last code works great. Just was I was tryin to achieve. Thank you. Appreciate your help
  9. J

    Between/And

    Hello, No, I will not pick up the data from a table. Since it's a simple projection, I would like to write this estimated retirement age via code. I do not expect to write more than 10 lines each of which will refer to a year. Example: if me.txtdob between 01/01/1951 and 12/31/1951 then...
  10. J

    Between/And

    Hello, I have created a form with two unbound textboxes. txtDOB in which i type a date of birth (mm/dd/yyyy age format) txtRetire in which I would like to add a text via code, depending on the age range entered in txtDOB. Examples: If me.txtdob between 01/01/1950 and 12/31/1950 then...
  11. J

    PrintOut not reading the default printer

    No code. I don’t use reports but just print the current record which is displayed on the form
  12. J

    PrintOut not reading the default printer

    Hi. All other apps work fine. They all print to the default printer
  13. J

    PrintOut not reading the default printer

    Hello, I have a form with a cmd button which refers to a macro to quick print the active form. Suddenly, the print function does not recognize the default printer (PRT1) and all prints are sent to a different printer (PTR2) which is not the default. Both printers are shared as part of a...
  14. J

    Add data to SubFrom from Main Form

    Thank you for your reply. Actually this is the way the sub it’s setup.
  15. J

    Add data to SubFrom from Main Form

    Hello, I am creating a small db to manage member of a sports club. I have a two main tables: Members and YearlyFees Memebers is to store general info. Yearlyfees is to add the yearly fee each member pays. The unique code for both tables is ID. I first add a new memeber, than save the record to...
Back
Top Bottom