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 Wanet Telecoms Ltd 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: *

  1. txaccess

    MSGBOX Trailing images

    One way around this to to make the pop up warning msg form a dialgog form and set its movable property to FALSE. This way, your user cannot drag the form no matter how hard they try!!! I haven't failed, I have just found 10,000 ways that it won't work!
  2. txaccess

    Group Total On Report Error

    I have a report with a grouping on Record Owner. There is a line on the report that shows a series of number. When I come to add up the series in the group footer using the Sum() argument, I get the following error; "The Expression 'Sum([Field1]+[Field2]+[Etc.]) is invalid Aggregate...
  3. txaccess

    Form Opens Outlook Email Problem

    I have a form within my app that queries Outlook 2003 and displays email msgs. This works great in the main. However, if the user is not connected to the Exchange Server, closing the form takes forever as the app is trying to query Exchange before it performs any other functions. Is there a...
  4. txaccess

    Change word Yellow to actual color

    Thanks for the star. It's appreciated. I haven't failed, I have just found 10,000 ways that it won't work!
  5. txaccess

    Change word Yellow to actual color

    Put it one line below the code that changes the backcolor say to yellow - on the next line you change the text to yellow too. Don't forget to turn the text back to black I haven't failed, I have just found 10,000 ways that it won't work!
  6. txaccess

    Change word Yellow to actual color

    Try changing the text color to the same color as the background me.status.forecolor = vbSameAsBackground I haven't failed, I have just found 10,000 ways that it won't work!
  7. txaccess

    Open a Form in a specific position

    Thank you - I will have a tinker with that. I haven't failed, I have just found 10,000 ways that it won't work!
  8. txaccess

    Date question

    You need to use the DateAdd Function DateAdd("d", 8, me.RecordField) I haven't failed, I have just found 10,000 ways that it won't work!
  9. txaccess

    Open a Form in a specific position

    I have a MouseMove Event that opens a popup form and another that closes the form. I would like the form to open in a specific position on the screen (i.e. directly underneath the label with the MouseMove Event). Is this possible, and if yes, how can this be done using VBA? Thanks I haven't...
  10. txaccess

    blank fields

    Let me see if I understand - when you click on the New Customer control, the current record remains in place - i.e. nothing happens? It may be that youe Event Procedure is not attached to the control if this is the case & you are therefore not really adding a new record. I haven't failed, I...
  11. txaccess

    Checking of a Record Exits at Data Entry Time

    As soon as I read your response I kicked myself for nbeing so dumb!!!! Duh!!!! Thanks a lot, that makes a whole heap of sense. I owe you a beer. I haven't failed, I have just found 10,000 ways that it won't work!
  12. txaccess

    blank fields

    DoCmd.GoToRecord , , acNewRec Add the above code to your new customer command button and the form will clear all fields in anticipation of a new recoprd being added. Any fields with a default value will display the dafault value. I haven't failed, I have just found 10,000 ways that it won't work!
  13. txaccess

    Find Record Problems

    Hmm, interesting. My first thought is that your data structure does not look normalized. It is usually a clue when you have fields that need to be suffixed with a number eg reason1, reason2, reason3 etc. You might want to try normalizing your table structure which will make the queries more...
  14. txaccess

    Checking of a Record Exits at Data Entry Time

    Frank - it is slightly more convoluted I am afraid. An Account can have a Master Account, so where there is a large company with many susidiaries, or Franchises etc, each can be listed, assigned to a rep and linked back to the Master Account. What I dont have is the code to check whether the...
  15. txaccess

    Checking of a Record Exits at Data Entry Time

    I have developed a sales force automation app for my company. The latest feature is a lead tracking mechanism. When a lead comes in, I would like the user to type the lead company name and then the d/b will look to see if the lead company already exists in the db. If yes, then a msg will...
  16. txaccess

    Find Record Problems

    The only other reason I can think of is that your query is not retriving the records you need. I haven't failed, I have just found 10,000 ways that it won't work!
  17. txaccess

    Combo box populates text boxes on a form

    You have a couple of options: DLookup is one way to find data based on your combo. The other way is to have your combi query retrieve all of the fields that you want to use - eg RefID, Name, Address, City, State, Zip Then set the Address, City, State & Zip as follows; me.address =...
  18. txaccess

    Find Record Problems

    Perhaps your form is set to data entry = yes Check that on the Form Properties Data Entry = No If the form is in Data Entry mode, the find record function will not work I haven't failed, I have just found 10,000 ways that it won't work!
  19. txaccess

    Rotate text label

    In design view click on the label & view its properties - select the "Other" tab and click "Vertical" to yes. That should do it. I haven't failed, I have just found 10,000 ways that it won't work!
  20. txaccess

    Creating an audit trail

    Thanks Bob - I appreciate your help & the code sample. I haven't failed, I have just found 10,000 ways that it won't work!

Part and Inventory Search

Back
Top