| Thread | Last Post | Replies |
|
| calculate age in years, months, days | 31 Jan 2008 23:54 GMT | 4 |
In that order - years, months, days =DateDiff("mmddyyyy",[BirthDate],Now())+(Format([BirthDate],"mmddyyyy")>Format(Now(),"mmddyyyy")) I got the above from a post but when I try it I get #Error Help
|
| Creating reports from record set | 31 Jan 2008 23:53 GMT | 2 |
I am attempting to create a tool that will select specific records, determine whether there is an email, and depending on that will either email or create a printable report. Here is what I have: Dim rst1 As DAO.Recordset
|
| Emailing attachments from Access | 31 Jan 2008 23:30 GMT | 2 |
Not sure if this is the best group for this... I have an access application that needs to send emails. Some of the emails will require an attachment (may be more than one). The attachment will always be from a defined directory.
|
| Open the form with 2nd tab focused instead of 1st tab | 31 Jan 2008 23:27 GMT | 4 |
Access 2003 I have a button on a form to open another form with 2 tabs. What's the code to open a form with 2nd tab focused instead of default 1st tab?
|
| memo field to string variable | 31 Jan 2008 22:51 GMT | 2 |
I manipulate memo field which stoores text only in my VBA code to assign a string variable in VBA application. The string only keep part of the string. What is the maximum characters memo fields information may assign to a
|
| Force a combo box to requery after a pop up form has closed | 31 Jan 2008 21:07 GMT | 4 |
I want to make a combo box requery after I've closed a pop up form. Basically the combo box shows a list of sites. I've added a button that opens a pop up window to allow the user to create a new site. Once the user clicks "save and close" the pop up form saves the record and ...
|
| Setting a reference to a libray in code | 31 Jan 2008 20:35 GMT | 9 |
I am trying to reset references to Excel and Word from Access 2007 i.e. code developed on 2007 with office 2007 but when dstributed to users the reference is broken because they are on say office 2000. I have read the link provided in previous posts on this subject but it
|
| Problem with code! | 31 Jan 2008 18:43 GMT | 3 |
I have had some success with the help received here in making controls in my forms locked if they have already been filled in and unlocked if they are empty to allow the initial data entry. I now have another problem. Two of the controls in question have default
|
| Nothing is happening | 31 Jan 2008 18:21 GMT | 5 |
Here's my code. Now, nothing is happening at all. I've checked the table and there's no new records. Did I use the insert statement correctly? ____________________________________________________________ On Error GoTo Err_cmdAdd_Click
|
| Email problem | 31 Jan 2008 18:10 GMT | 5 |
I am trying to put in 5 five names in the SendCC and it works fine for the first three but when I drop to the next line to add the other two, I get a syntax compile error and the last two name appear in red. Could someone please help me. I'm sure I am not adding something in the ...
|
| Problem with dAvg syntac | 31 Jan 2008 18:08 GMT | 1 |
I want to be able to look at the average of a field when there is a entry in another field and again when there is no entry in the other field. So for no entry in "fldSupplierID =DAvg("[TurnAroundTime]","qryQualityListRepairsShippedByDate","[fldSupplierID]is null") ' which seems ...
|
| You canceled the previous operation | 31 Jan 2008 18:03 GMT | 2 |
I have a main form with buttons that launch forms for manipulating tables in my database. I launched a form named frmEditIssues by clicking one of the buttons and filtered the data to modify it. When I tried to shut frmEditIssues down I was prompted to save changes and selected ...
|
| Keep Focus | 31 Jan 2008 17:44 GMT | 2 |
The code below alerts the user that some fields are blank. It works until the last line!!! How can I make it keep the form open an go to the first blank field, then the second etc..(I'll be adding more)???
|
| programatically insert record | 31 Jan 2008 15:36 GMT | 5 |
I have a many to many relationship between security clearances and billets. a clearance can be associated with more than one billet and a single billet can be associated with many clearances. That; however, may not have anything to do with my problem.
|
| Replace Data In A Table | 31 Jan 2008 09:56 GMT | 1 |
I'm using sql 2000 and Access 2003. I have a table contains all the payroll data and a table that contains current payroll data. Each paydate I need to replace the data in the current payroll table with the current payroll data.
|