Gizmo's calendar & ACC2000?

geoB

Registered User.
Local time
Today, 06:32
Joined
Oct 10, 2008
Messages
68
I'm trying to use Uncle Gizmo's calendar in an ACC2000 application.

I've found that if I configure an OnClick event in a text box, I need to comment out the line that begins:
Code:
mHasPBkProc = fProcExists...
in clsGetActiveFrm in order to make it work. Otherwise I get a Sub or Function not defined error even tho' fPassBackAct is present in the form's module

However, I've not yet figured out a work-around for having a command button next to a textbox. I get a "Type mismatch" in:
Code:
Public Property Get prpAssociateCtrl() As Variant
    Set prpAssociateCtrl = mctlAssociateCtrl
End Property      'prpAssociateCtrl Get
This is independent of having the line quoted above commented out or not.

Any clues on how best to proceed? Other than moving beyond ACC2000 (it's a client's requirement) or being too dense to figure this out on my own.

Many thanks.

George
 
OK, so I'm dense. One MUST use the appropriate naming convention for the text box, altho' the video seems to suggest that as long as it's three characters it'll work. When renaming to txt{name} we're back on the air.

gwb

We now return to our regularly scheduled programming already in progress.
 
Howzit

I use Uncle Gismos calendars. I don't bother with the cmd button, i just use the on_Click event of the text box it self, with the following code

Code:
Dim strDocname as string
strDocname = "frmCalendar"
docmd.openform strDocName"

She works first time every time
 

Users who are viewing this thread

Back
Top Bottom