MoveSize Problem

B

Bob V

I am tying to Move my frmCalender further down the form. I have created a
Macro.MoveSize to do this, I do have another MoveSize on another form for
something else and it works fine on On Load as On Open has something else.
frmCalender also has this below on it so I have the macro on On Load. But I
can not get the frmCalender to move any where , Any help
Please.............Bob

Private Sub cmdStartDate1_Click()
DoCmd.Close acForm, "frmCalender"
Dim dtDate As Date
dtDate = Format(Now(), "dd/mm/yyyy")
iccCalender (dtDate)
If Len(Forms!frmCalender![tbDate]) = 0 Then
Exit Sub
Else
tbStartDate1.value = Format(Forms!frmCalender![tbDate], "dd-mmm-yy")
End If
tbEndDate1_LostFocus
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top