| Thread | Last Post | Replies |
|
| Date notation swop via VBA-Filter | 08 Apr 2005 22:50 GMT | 1 |
I'm trying to filter a form via VBA on a specific date: {formname}.filter = "Date = #" & MyDate & "#" Unfortunately the date notation swops in the Form window so i filter on a complete other date.
|
| No value given for one or more required parameters | 08 Apr 2005 22:01 GMT | 2 |
I am getting the error: No value given for one or more required parameters. The line in my code that is having the problem is: rs2.Open sSQL, CurrentProject.Connection, adOpenStatic Does anyone have any ideas?
|
| Weird behaviour when controlling Excel from Access/VBA | 08 Apr 2005 21:11 GMT | 1 |
I'm trying to use Automation to control Excel from Access. So, first of all, what I am doing is that: Dim appExcel As Excel.Application 'Global variable Then, when clicking a button, this codes executes:
|
| Calculating Date Interval | 08 Apr 2005 20:39 GMT | 4 |
Hi. I need to calculate the interval between two dates in terms of months, and I can't figure out how to make datediff work in the decimal form that I need... For example,
|
| Check for empty controls | 08 Apr 2005 20:35 GMT | 2 |
I have a database for making and implementing recommendations. It has sections for the initial recommendation, the response, the follow-up, and the final approval. Each of these sections has four to six fields. My initial version of this database uses a single table. The ...
|
| Detect if another form is already open. | 08 Apr 2005 20:33 GMT | 2 |
I know this can be done but have forgotten the code syntax. What I want to do is, when a user exits a form, detect if other forms/a specific form is still open. A reminder of the code is appreciated.
|
| Populating Fields On Subform | 08 Apr 2005 20:05 GMT | 3 |
I have a subform that is opened off a main form with a button. What I would like to have happen is for four of the fields to link back to the main form and be populated with their values. The subform is a billing form that is used by several other main forms as well so it needs ...
|
| Referencing parent forms through one common subform | 08 Apr 2005 19:44 GMT | 3 |
I created an option box which would allow users to switch between an "edit" and "view-only" capability. However, once the "view only" button was selected, I could no longer switch back to the "edit" mode. I got around this by putting the option box into an unbound subform. I ...
|
| Insert statement | 08 Apr 2005 18:51 GMT | 3 |
I haven't quite caught on to getting this right. Thanks in advance for helping my syntax. Something's wrong with the quote marks: strInsert = "INSERT SentinelNodeSt(AppointmentID, EmpCreated, EmpUpdated)" & _
|
| Auto List Members not working | 08 Apr 2005 18:41 GMT | 2 |
I am having problem with the auto list members staying on the screen. This is the feature that helps you with VB code by listing available options/variables with a drop down list on key words. For example if in a VB form module you type "Me." it will list a drop down list of ...
|
| For Each | 08 Apr 2005 18:40 GMT | 1 |
How would you loop through the field [washed] in each record using the single form mode, not continious?
|
| Access help | 08 Apr 2005 18:17 GMT | 3 |
I am trying to figure out a little problem I have with my database and am at my witts end. Here is the deal. I have products that are assigned a certain material number. In my form I have a combo box that lists the material numbers and description, what I
|
| Checkbox question | 08 Apr 2005 17:39 GMT | 1 |
I have several checkboxes in my table. What I want to do is when I view my table I want to see Yes or No and not a picture of the checkbox, checked or unchecked depending on the selection. Even 1 for Yes and 0 for No would be good. Please advise.
|
| text field value remain selected | 08 Apr 2005 17:03 GMT | 3 |
Hi, The following code allows the user to search for a record using a combo box. If the record is not found, the message appears. When the user clicks OK, I would like the fields contents to remain selected, ready to accept the next entry. This code is not doing it in the ...
|
| How can I create a subform programmatically (ie dynamically - not. | 08 Apr 2005 16:37 GMT | 2 |
I'm new to Access and VB - I need to create a subform 'on the fly' (ie in code) depending on the contents of my main form. I understand that I need a control and a SubForm form type. How do I proceed please? Cheers,
|