| Thread | Last Post | Replies |
|
| Access 2007 Split Form | 18 Jul 2006 11:55 GMT | 3 |
Hi. Using the following code to emulate the record count on the navigation buttons. Dim RecClone As Recordset Dim intCount As Integer
|
| Object name | 18 Jul 2006 08:04 GMT | 4 |
From VBA, inside a Subform, to retrieve : 1) my form's name , I use : Me.Parent.Name 2) my subform's name, I use : Me.Name But how do I retrieve the object's name containing my subform ?
|
| calling methods of a form from another | 18 Jul 2006 06:13 GMT | 3 |
Why some times calling subform [or master form] public methods from inside form works, and other times it gives runtime error 2455 "You entered an expression that has invalid reference to the Property Form" Private Sub aMainFormEventProcedure()
|
| using query-by-form to callect parms for secondary form | 18 Jul 2006 03:40 GMT | 1 |
I have a form that has a combo box of valid dates. the user selects a data, then clicks on a button, which opens another form in add mode. the new form has a combo box that is populated by selecting data from a table. The date selected on the first form is used in the "where" ...
|
| Questions about timing of calls & returns | 18 Jul 2006 01:43 GMT | 4 |
Hi to All I understand that when a form is opened from within a sub, the proc will continue to execute after the DoCmd.Open unless the form is modal. What happens when an action query (e.g. make table) is invoked within a sub?
|
| Weird message box question | 18 Jul 2006 00:40 GMT | 1 |
See code below. I figured I'd get the message box asking me to delete the record twice if I hit errors 3022 or 3058. But I don't. I just get it once. How is this possible? Thanks in advance,
|
| List box showing specific queries | 18 Jul 2006 00:28 GMT | 1 |
I am trying to create a list box that shows a specific set of queries for users to select from (click on) and print or view or whatnot. Now, I have a handy-dandy Access textbook that gives me the following SQL statement to use (let the forehead slapping and eye-rolling begin, ...
|
| Cascading Combo Box | 17 Jul 2006 23:42 GMT | 14 |
I have tried to use an option group and a combo box as shown in the approach by Martin Green at www.fontstuff.com CascadingListDemo4. After days or work, I cannot get it to work properly. I am not using a table for the ReportNumbers, but am using a union query "qryAllReports" ...
|
| Question on Combo Box to Limit Report Parameters | 17 Jul 2006 23:25 GMT | 1 |
I am having trouble using a combo box to limit the parameters of my query/report. I have a list of volunteers (2 fields, First Name and Last Name) based on what program(s) they volunteer for (3 fields, Program Type, Program Type 2, and Program Type 3). The programs use the same ...
|
| Automatically Add 24 records to my tblCP from my frmNewCalixCard | 17 Jul 2006 22:55 GMT | 10 |
I'm sorry to ask this "often asked question" again, but after 2 days of reading thru posts I'm still stuck. I have a small Form with 4 fields on it and a Command Button to "ADD RECORDS to DATABASE":
|
| Embedded Subforms | 17 Jul 2006 22:07 GMT | 1 |
I've got a parent form (frmParent) with a subform (sfrm1) on which another subform (sfrm2) is embedded. The subforms are displayed in datasheet view, so the little + sign displays in order to expand the recordset. What I would like is when clicking on the + sign in order to get ...
|
| DoCmd.RunCommand acCmdDeleteRecord does nothing! | 17 Jul 2006 21:41 GMT | 1 |
I was revising my code as recommended to avoid using: DoCmd.DoMenuItem acFormBar, acEditMenu, 8, , acMenuVer70 DoCmd.DoMenuItem acFormBar, acEditMenu, 6, , acMenuVer70 and use:
|
| Cancel a function | 17 Jul 2006 21:23 GMT | 2 |
I'm not quite sure what to ask. I have a public function that, depending on values such as expiration date, generates one of several text strings that are used on faxes. Here is a shortened version: Public Function FaxText(NoExp As Boolean, CertType As String) As String
|
| on click, share information | 17 Jul 2006 20:51 GMT | 1 |
I am creating two applications and when I checkmark the box "cash & check card", I would like all the personal information from the first application to transfer to the 2nd application. Are there any ways to do this?
|
| SetValue expression not working | 17 Jul 2006 20:49 GMT | 1 |
I have a macro with setvalue action: Item: [Forms]![NewPartInputfrm]![Ref Part Weight lb] Expression: IIf([Ref Part QTY]<0.0001,0,DLookUp("[FIN WTLB]","ExcelARefParts","[Part#]=Forms![NewPartInputfrm].RefPart AND [As
|