Search results

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

    Add Date Function

    Perfect. Thank you
  17. J

    Add Date Function

    I have created a form on which I have two textboxes with a Date format (mm/dd/yyyy) Text1 will be used to store a specific date Text2 should automatically add 1 month to the previous date I have used the following code to the Default Value property of Text2 but after entering the date in...
  18. J

    Copy multiple data from Cbobox to Textbox

    Hello Pat. First le me thank you for your help. I have removed the DOC fields in the LOG table but am confused on what control rename txtinputfile. I have tried to add your codes to my sample, removed the unbound listbbox and replace it with a subform which has its records source to the DOCS...
  19. J

    Copy multiple data from Cbobox to Textbox

    Hello, as recommended, I have created a new table. Unfortunately I am now having a problem when adding a New Record to my DB. This only happens the first time, when there are no other records in the db. I am sharing a test copy of my database. It is used to keep track of document we receive from...
  20. J

    Copy multiple data from Cbobox to Textbox

    Hello, I have a form with a combo and a textbox. The combo has its records source to a table named documents. The text box is unbound. I was wondering if if would be possible to copy different records (not at the same time) from the combo box and place them in new lines in the text box...
Back
Top Bottom