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 bkrike 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
  • Content: Threads
  • 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...

    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...
  3. 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
  4. 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...
  5. 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...
  6. 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 =...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. ToyFox

    How can I build in an "ALL" 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
  12. ToyFox

    How can I send two different params to a query

    I have a query that I want to use for a report and also to load a listbox. This would depend on a value selected from a combo box. The combo box is on two distinct forms. How can i get the value from the form into the query as a parameter. I have an IIF form1!dropdown =...
  13. ToyFox

    How do you suppress the message from an APPEND QUERY about adding

    I have an append query that runs as part of a nightly batch. How can I suppress the prompt that asks if I want to add the records to the table. The setwarnings don't seem to work anymore. Thanks
  14. ToyFox

    How do you use date variables in DB2 SQL code?

    I am trying to get a DB2 pass thru query to work. I intend to pass two dates to a function and build a pass thru that utilizes the dates. However, how do I substitute the date values for the hard coded values in the following SQL.... thanks ... the following code works until I start playing...
  15. ToyFox

    How to code DB2 Pass Thru with date variables

    I am trying to get a pass thru query to work. Eventually I intend to pass two dates to a function and build a pass thru that utilizes the dates. However, how do I substitute the date values for the hard coded values in the following SQL.... thanks ... the following code works until I start...
  16. ToyFox

    How do you encrypt a file.

    We have been faxing a list to a vendor, this has to change, and I must create a file that is encrypted. How do I encrypt a file. Thx
  17. ToyFox

    How can I format a numeric in a pass thru (DB2 SQL)

    I have a pass-thru query that contains a field that contains a dollar value. The pass-thru is row source for a list box. How can I make the dollar value format like a currency (db2 sql)?
  18. ToyFox

    Can you see the size of the tables inside the database...

    I have a database which has links to back end DB2 tables that are used to do queries. Over time this db has become large due to tables being imported etc....is there a way to look at the table sizes so I can delete the largest ones...
  19. ToyFox

    How do you programmatically change a table attribute to have an index

    I would like to create an index programmatically I added 1 fields to a table using the following code... CurrentDb.Execute "ALTER TABLE" [Accts] Add Column Test Text" How can I change an existing field to have an index.
  20. ToyFox

    How do you lock the users out of EDIT mode of the database

    How can I set an app so that the ribbon is always hidden...I dont want the users playing with anything.... I don't want them to get into edit mode.

Part and Inventory Search

Back
Top