Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: daniels012
  • Order by date
  1. daniels012

    Create Form with many text boxes USING CODE

    I looked there. Didn't really have anything about creating a form. Michael
  2. daniels012

    Create Form with many text boxes USING CODE

    What is the easiest way to create a form using code?
  3. daniels012

    Create Form with many text boxes USING CODE

    Thank You for your quick response. I am going to use the form during the player draft. When there name gets picked it will become not visible. Michael
  4. daniels012

    Create Form with many text boxes USING CODE

    I would like to create many text boxes on a form. I would like to know if I could write code that would create text boxes based on numbers I have in a table. We have baseball players each has a number that reflects their age in this table. In this example of 7 year olds, Example: Joe Smith...
  5. daniels012

    Transfer Data from excel or outlook to Access

    This is not practical. We have salesman with laptops. They meet at the office each week, where they can update the data as needed. Just don't know how. Michael
  6. daniels012

    Transfer Data from excel or outlook to Access

    I have address data stored in Excel. Everytime we add a new customer, we add the address to this list. Is there a way to transfer this data to an Access table? And possibly weekly update to the same table. Or! each of our salesman have these addresses in Outlook. Could I do the same thing...
  7. daniels012

    Textbox validation on unbound form

    Try IIf(IsNull([fieldname])
  8. daniels012

    Emailing Single Record

    I also found this after researching: or PDF995 (free - try google, or if you can't cope with it starting up a URL each print, multi-user licences are peanuts) or CutePDF (not sure of the spelling or the price) or ... many other free/cheap/good PDF writers i'm sure: try google. Michael
  9. daniels012

    Emailing Single Record

    THE KEY IS Acrobat PDFWriter installed on your machine. I have 4.0 writer. It works great. You pick what record you want to print, then select PDF Printer as your printer and it makes a file. The other thing is, is maybe saving as a webpage. Everyone that has internet access, can usually...
  10. daniels012

    Emailing Single Record

    You must have Acrobat PDFWriter installed on your machine. It is set as a printer type. To print to pdf. you display the report and then select the Printer name of "Acrobat PDFWriter" and then it creates a pdf file. Hope that helps.
  11. daniels012

    Emailing Single Record

    I use 4.0 and it worked just fine. I think I researched Google and figured it out. I will try to research myself to help you with an answer. Michael
  12. daniels012

    Textbox validation on unbound form

    Try If me.fieldname.value="" Hope this helps, Michael
  13. daniels012

    Emailing Single Record

    I had the same issues. I converted it into a .PDF file. Then anyone that has a PDF reader can view it. You have to have Adobe Acrobat reader though. If you do Adobe acrobat has instructions on the process. Hope this Helps, Michael
  14. daniels012

    go to the new record...

    Yes! Thank You so much. This seems to be working very well. I even added another line at the end DoCmd.GotoControl "SpecialInstructions" It seems to be doing fine!! Thank You for your patience... I am very new when it comes to coding. And you are very kind Michael
  15. daniels012

    go to the new record...

    This is the area that is highlighted: a = Split([SampleNumber], "-") When I have the mouse over "a" it says empty When I have the mouse over "SampleNumber" is says WIL-215 WIL-215 is the previous Sample number
  16. daniels012

    go to the new record...

    Here it is : Private Sub CopySample_Click() Me!SampleNumber.SetFocus DoCmd.RunCommand acCmdSelectRecord DoCmd.RunCommand acCmdCopy DoCmd.RunCommand acCmdPasteAppend DoCmd.GoToControl "SampleNumber" a = Split([SampleNumber], "-") a(1) = a(1) + 1 [SampleNumber] = Join(a...
  17. daniels012

    go to the new record...

    I tried Dim strNo As Variant with no luck
  18. daniels012

    go to the new record...

    Would I add this as a function in the code? And Where? Michael
  19. daniels012

    Next Number with Text and Numbers

    I don't know the process to do that? Breakpoint? Michael

Part and Inventory Search

Back
Top