| Thread | Last Post | Replies |
|
| (Mouse)activity while playing a wave-file | 30 Apr 2006 22:57 GMT | 9 |
Thanks to the discussion in the "Sound button"-thread I can play more than one piece of WAV-music under the same button. Magic ! As global functiondeclaration I use the recommanded script of http://www.mvps.org/access/api/api0011.htm
|
| Sending the Outlook Appointment | 30 Apr 2006 22:16 GMT | 1 |
I am using the following code in Access to create appointments and need to have it automatically send the appointment to team members. The email that displays is empty of any attachments. The appointment goes into my calendar. At work we are on the Microsoft Exchange Server if ...
|
| TransferSpreadsheet - import specific columns? | 30 Apr 2006 18:26 GMT | 7 |
I'm importing an Excel Spreadsheet into an Access table using "TransferSpreadsheet". However, the Spreadsheet is 140 MB and it's on a server halfway round the world. The import can take 3 hours! I only need 5 of the 70 or more cells - the rest gets dumped after the import. Is ...
|
| How do I format a field in Access to blink (Event Procedure)? | 30 Apr 2006 17:53 GMT | 1 |
I would like the values in an Access field to flash or blink based on a condition? Examples in Vb would be helpful. Thanks
|
| basic advice needed.. | 30 Apr 2006 16:09 GMT | 1 |
hey guys please bear with me - i have some basic q's about modules and procedures that im sure would be best explained by someone on the forum heres my situation: i need to include some VBA code to export info from an
|
| Accessing contacts in a different folder called "Work Contacts" | 30 Apr 2006 06:47 GMT | 1 |
Here is the beginning of some code I'm using: ' Set up DAO objects (uses existing "Contacts" table) Dim rst As DAO.Recordset Set rst = CurrentDb.OpenRecordset("Outlook Contacts")
|
| Tips on domain aggregate replacements | 30 Apr 2006 03:29 GMT | 31 |
Everything I am reading tells me I should minimize my use of domain aggregate functions, so I am in the process of going through several apps to replace these. In many cases, I can use a join in a query, but there are times when I need to run the statement from VBA. I need a tip ...
|
| Find Record VBA code Help | 30 Apr 2006 01:01 GMT | 1 |
I need help in getting the following pseudo code working. Thanks in advance. procedure btnFind_Click() Ask for Last_Name & First_Name
|
| Dcount Criteria | 29 Apr 2006 23:59 GMT | 2 |
Any idea why these two dcounts return different values? Dcount("*", "tblWR", "Created >= #4/29/2006#") (This returns the correct count) Dcount("*", "tblWR", "Created >= " & dtmRequestLimitDate) (This returns a
|
| Finding a special characterlike + | 29 Apr 2006 23:13 GMT | 1 |
I have a table called "Outlook Contacts". I need to find and replace a few characters in this table. One of them is the plus sign '+'. I need to do this in my code, though. I need to search for the sign + in the field called "Full Name" and replace it with nothing (delete it). ...
|
| Which DAO object library do I use? | 29 Apr 2006 19:33 GMT | 1 |
I have two self-contained MS Access database projects (stand-alone mdb files); one in Access 2000 and one in Access 2003. What is the appropriate DAO object library I should set as a reference in order to support my VBA code-behinds?
|
| VBA Question sending reports | 29 Apr 2006 17:27 GMT | 7 |
Good day to all! I hope someone can help I have a query, and from that query i have 2 reports: one is comprehensive, and the other has a filter, that is supplied by a drop down in a form. i
|
| date format in schema.ini | 29 Apr 2006 09:00 GMT | 3 |
I am importing a text file that has dates in the format 15MAR06. I have the following in my schema.ini file but the dates are not imported into the date field in the table: DateTimeFormat = "ddmmmyy"
|
| returning a user selected file path and file name | 29 Apr 2006 06:31 GMT | 2 |
I am trying to write a code to import a table from another Access database, with a prompt for the user to browse for the location of the database. My code to import the table works fine on its own, if I include the path and filename:
|
| MSGBOX - Formatting text | 28 Apr 2006 22:49 GMT | 2 |
How can I format text within a MSGBOX. I want to BOLD a word inside the message box so it stands out when the Message box is displayed.
|