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 SkipVought 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: ToyFox
  • Order by date
  1. ToyFox

    Indexed with no dupes question

    I have a nightly process that creates a file from accounts that reside in two different databases. There can be the occasion where an item is contained in both databases. First they are written to a table that is "indexed with no dupes". Wouldn't the same account from the second process be...
  2. ToyFox

    Trouble getting latest comment record from a query...

    No, there wont be multiples on the same day.
  3. ToyFox

    Trouble getting latest comment record from a query...

    I got it to work by doing MAX on the date and first on the comment. I think when it runs, it does the Max date first which places that record first in the result set, then the comment is first. Does that make sense. I will use the sub query method instead....looks cleaner. Thanks
  4. ToyFox

    Trouble getting latest comment record from a query...

    I have a table that holds comments. There can be multiple comments for the account. They are dated. I want to query the table and get the latest comment -- I am using MAX on the date and LATEST on the comment....I have checked several records and I am getting the MAX date but sometimes not the...
  5. ToyFox

    How do you save the file to an attachment field via VBA

    I am trying to store a file in the attachment field with VBA. Does anyone have a sample code snipped that I can model after, I don't see any good examples on this site or others. Thx
  6. ToyFox

    How can you save an attachment to the attachment field.

    I have an add record routine and I want to add a file (excel sheet) to an attachment field programmatically. Is there any sample code around...
  7. ToyFox

    How do you process an Outlook group mailbox (inbox)

    I need to process an Outlook group mailbox. I easily get my own inbox, but I want the inbox of a group mailbox. Does anyone know how to do that. thanks...
  8. ToyFox

    How do you access a different mailbox (not my inbox)

    I am building a routine to deal with attachments in a particular group mailbox. It works except its working in my inbox not the particular group mailbox... How would I code for the group mailbox. Set oOutlook = New Outlook.application Set oNs = oOutlook.GetNamespace("MAPI") Set oFldr =...
  9. ToyFox

    How can an outlook attachment be added to a table

    Looking at the attached Outlook table, there is a field has attachments...but how can I get to the attachment? It seems that it has to be stored someplace. Right?
  10. ToyFox

    How can an outlook attachment be added to a table

    I have an app that monitors a group email box. It is used to assign and track items being worked on.... this is a linked outlook Essentially items are added to a table based on the last received date. The manager assigns the items by double clicking the item in the listbox and filling in...
  11. ToyFox

    Access has encountered a problem and needs to close error

    unfortunately i still get the error.
  12. ToyFox

    Access has encountered a problem and needs to close error

    I was working on a textbox...I wanted to write some code in the On Keypress event when suddenly I got the hourglass and am now unable to get to any code. I get the message that Access encountered a problem and needs to close. I cant get past this. Any other tricks that I can do, I tried to...
  13. ToyFox

    Errors linking to Outlook Inbox with subfolders. Is this allowable

    I am linking to an Outlook mailbox. Specifically the inbox. Every 30 minutes a routine runs that loads the new emails into a table. I use this in two different outlook mailboxes...One mailbox has an INBOX but it has several sub folders....when the update routine runs it is failing with the...
  14. ToyFox

    Why do I have to add 1 to the todate of a query to get all

    it is a date/time field. Thanks for the response.
  15. ToyFox

    Why do I have to add 1 to the todate of a query to get all

    Wierd happening. I have a date field in a query and a form with two text boxes for date from and date to that are parameters to the query. For instance, if I want all records for December up to today, I I have to add 1 to the end date or go 12/1/2009 and 12/22/2009 as the date params. I have...
  16. ToyFox

    How can I build in an "ALL" for a combo box.

    One wrinkle here is that I use the value in a parameter query. So, I have something like [Forms]![frmTest]![txtAssigned_To] in the query grid...How would I pass the SQL from the <ALL>. Thanks for the help.
  17. ToyFox

    How can I build in an &quot;ALL&quot; for a combo box.

    Thanks I'll give it a try..
  18. ToyFox

    How can I build in an &quot;ALL&quot; for a combo box.

    How can I build in an "ALL" for a combo box. I want the users to be able to select "ALL", is there an example around....Thx

Part and Inventory Search

Back
Top