Recent content by dustmopheadmop

  1. D

    How to Include Formula in formula

    Hi, Can you attach here with it your db so we can understand what you mean exactly. That because, it is not clear enough.
  2. D

    How to set a form width in code

    Hi, You may need some code like this to work it out: Private Sub Form_Open(Cancel As Integer) Const conInchesToTwips = 1440 Dim intRight As Integer Dim intDown As Integer Dim intWidth As Integer Dim intHeight As Integer Dim intMyInt As Integer DoCmd.Restore intMyInt = Me.Width / 4220 '...
  3. D

    Wipe Effects

    Hi, Just put the following properties to the corresponding values: Pop up = yes Modal = yes I think it will work it. I am sorry, who told you that google is a good friend.
  4. D

    Wipe Effects

    Hi, change the code of closing form to the following: Dim iform As Form Dim lngIncrement As Long Dim lngOpt As Long lngOpt = 1 Set iform = Me If lngOpt >= 0 Then lngIncrement = 100 Call WipeEffect(iform, lngOpt, lngIncrement)...
Back
Top Bottom