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 wOOdy-Soft 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 Bagger

  1. Bagger

    Converting all data to uppercase

    You can also set the default to UpperCase in the properity of the table. Select the field and in the field properity set the default value to > for all UpperCase or < for all LowerCase. This way you don't have to worry about converting the incoming data. Because you set the default in the...
  2. Bagger

    Database crawls on LAN

    the slpitting of the Backend and Frontend is a good start. when the response times of the database begings to slow down have your network admin check to see if there is any &quot;locking&quot; going on. Whether it be on your database or another one. The more &quot;locks&quot; that occurr the...
  3. Bagger

    Calculate age based on specific date

    You might like to try this code. I can not take credit for it. Have used it in several applications I developed. Option Compare Database Option Explicit Function AgeInYears(BirthDate As Date, Optional AsOfDate As Date = 0) As Double '------------------------------------ 'Purpose: Get Age in...
  4. Bagger

    How to generate auto number with a letter at front

    what I have done in the past is to have a field in my table lets say &quot;MasterNumber&quot;, regular text field and a second field called &quot;num&quot; (autonumber) I then use the following code in the BeforeUpdate of the Form property- Private Sub Form_BeforeUpdate(Cancel As Integer)...
  5. Bagger

    Call a Module in an Update Query

    I have a table where the Authors Names all in upper case. I would like to via an update query call a module to make first character of name upper case. I lack the knowledge to know how to do a &quot;call&quot; thanks in advance
  6. Bagger

    Menu Seperator

    After doing some research: Create a new toolbar, in the commands section scroll to you find &quot;New Menu&quot; (should be at the very end). then drag the New Menu onto the toolbar. Then drag the other selections onto the New Menu, use the &quot;Modifty Selection&quot; button and click on...
  7. Bagger

    Menu Seperator

    I would use the toolbar customize and have your buttons on one toolbar: Exit| Open |Save |Close |Print and as you drag the buttons onto the toolbar you can use the &quot;Modifty Selection&quot; button and click on &quot;Begin a Group&quot;. This is a eaiser and cleaner way of making a...
  8. Bagger

    add extended cost to my table

    I have a table that is used to order books. I would like to know who to take a the value of [qty]*[price] and have it show in the extended field of my table. I have tried an update query but that updates all the rows in the table
  9. Bagger

    Display &quot;No Record&quot; message on a form

    Can someone assist me in creating the code to display a message on a form where there is no record found. I have a song file 50,000 records.when a search is done and right now the only way I know it is complete and no record is found is the &quot;hourglass&quot; goes away. Thanks in advance for...
  10. Bagger

    display do record message in a form

    Can someone assist me in creating the code to display a message on a form where there is no record found. I have a song file 50,000 records.when a search is done and right now the only way I know it is complete and no record is found is the &quot;hourglass&quot; goes away. Thanks in advance for...
  11. Bagger

    REPLACING TEXT STRINGS

    Disregard last Message, my mistake use this example uses the Left function to return a specified number of characters from the left side of a string. Dim AnyString, MyStr AnyString = &quot;FORD AUTOMOBILES ESCORT&quot; ' Define string. MyStr = Left(Automobile, 17) ' Returns...
  12. Bagger

    REPLACING TEXT STRINGS

    use this example uses the Left function to return a specified number of characters from the left side of a string. Dim AnyString, MyStr AnyString = &quot;Hello World&quot; ' Define string. MyStr = Left(Automobile, 17) ' Returns &quot;Escort&quot;.
  13. Bagger

    Database Splitter

    If your BackEnd has all the &quot;forms, reports, macros and modules&quot; you should be OK. If not Import the forms, reports, macros and modules into the Backend. Rename the Backend (InventoryBackEnd.mdb, to Inventory.mdb). How many concurrent users do you think you have. I encountered...
  14. Bagger

    ms access links

    Here are a few more: http://www.ulster.net/~hfeddema/ http://rogersaccesslibrary.com/index.htm http://easyweb.easynet.co.uk/~trevor/AccFAQ/
  15. Bagger

    Getting back into Startup... menu

    if you use a macro autoexec to open your app hold the Shift key down. If you use tools start up, once the first screen appears hold down the &quot;ctrl and press F4&quot; If the database window is closed press &quot;F11&quot; HTH

Part and Inventory Search

Back
Top