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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by AllanWLJC

  1. AllanWLJC

    How to put the cursor at the end of a text box

    That also works. I am not sure which one is more efficient. Since there are only 3 possible pre-filled text “in memory of”, “in honor of” or blank, moving the cursor a set value should not be a problem. Your way is definitely better if the pre-filled data was of random or longer lengths. I am...
  2. AllanWLJC

    How to put the cursor at the end of a text box

    It did select all of the data but using the select start command I was able to move the cursor to the end. Since the data was different lengths I arbitrarily moved the cursor 20 characters. This did the trick. Private Sub Dedication_GotFocus() Dedication.SelStart = 20 End Sub Thanks for all...
  3. AllanWLJC

    How to put the cursor at the end of a text box

    That fixed the problem. Thanks
  4. AllanWLJC

    How to put the cursor at the end of a text box

    I have several text boxes in a form. Some have text in them from an auto fill based on previous conditions. The tab key cycles through the boxes. As each box gets the focus, the text is selected. If data is entered at this point the original text is replaced. How can I program the form where if...
  5. AllanWLJC

    How do you join several records from one table into one record?

    How do you join several records from one table (tbl names) into one record in a new table (tbl ready)? This table (one record made-up of several records from another table) will be exported into another program and only be used to fill in a text field to set up a crawl on a marquee. The...

Part and Inventory Search

Back
Top