Popup Forms

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Coy Howe

    Popup Forms



    I have popup forms with helpful hints, and I would like to determine
    where they will appear on the screen. Please let me how to do this.
    Thank you for all of your help.

    *** Sent via Developersdex http://www.developersdex.com ***
    Don't just participate in USENET...get rewarded for it!
  • ALESSANDRO Baraldi

    #2
    Re: Popup Forms

    "Coy Howe" <cfs@olypen.com > ha scritto nel messaggio
    news:4121283f$0 $14446$c397aba@ news.newsgroups .ws...[color=blue]
    >
    >
    > I have popup forms with helpful hints, and I would like to determine
    > where they will appear on the screen. Please let me how to do this.
    > Thank you for all of your help.
    >
    > *** Sent via Developersdex http://www.developersdex.com ***
    > Don't just participate in USENET...get rewarded for it![/color]



    Property ActiveForm As Form
    read only
    Member of Access.Screen

    Checking this property you can know wich is the Active Form.

    So :

    If Screen.ActiveFo rm.Name="PopupN ameForm" then Msgbox "YESS"

    --
    @Alex (Alessandro Baraldi)
    ---------------------------------------------------------------------------

    ---------------------------------------------------------------------------


    Comment

    • Coy Howe

      #3
      Re: Popup Forms



      Thank you for the prompt responce, but I have no idea what you are
      saying. Basically I just want to know how to predetermine the location
      on a form that a popup form will appear.

      Thank you
      Coy

      *** Sent via Developersdex http://www.developersdex.com ***
      Don't just participate in USENET...get rewarded for it!

      Comment

      • ALESSANDRO Baraldi

        #4
        Re: Popup Forms

        "Coy Howe" <cfs@olypen.com > ha scritto nel messaggio
        news:412138a8$0 $14465$c397aba@ news.newsgroups .ws...[color=blue]
        >
        >
        > Thank you for the prompt responce, but I have no idea what you are
        > saying. Basically I just want to know how to predetermine the location
        > on a form that a popup form will appear.
        >
        > Thank you
        > Coy[/color]

        Hi Coy, sorry Delete my Replay due to my very bad English.

        So for Location you can explore Left/Top property of Form.

        @Alex.

        --
        @Alex (Alessandro Baraldi)
        ---------------------------------------------------------------------------

        ---------------------------------------------------------------------------


        Comment

        • PC Datasheet

          #5
          Re: Popup Forms

          Coy,

          Open your form in design view then open propoerties and go to the AutoSize and
          AutoCenter properties and set them to No. Add an unbound textbox anywhere on
          your form. Click the View button at the far left on the toolbar at the top of
          the screen. Click on the title bar of your form and drag it to where you want it
          to appear each time it opens. Close your form and answer Yes to save the change
          to the form. Open your form again in design view and delete the unbound textbox.
          The only purpose of the textbox is to get Access if you want to save the changes
          where one of the changes is the form's position. Chanhing the position on its
          own won't cause Access to ask if you want to save changes.


          --
          PC Datasheet
          Your Resource For Help With Access, Excel And Word Applications
          resource@pcdata sheet.com


          "Coy Howe" <cfs@olypen.com > wrote in message
          news:4121283f$0 $14446$c397aba@ news.newsgroups .ws...[color=blue]
          >
          >
          > I have popup forms with helpful hints, and I would like to determine
          > where they will appear on the screen. Please let me how to do this.
          > Thank you for all of your help.
          >
          > *** Sent via Developersdex http://www.developersdex.com ***
          > Don't just participate in USENET...get rewarded for it![/color]


          Comment

          Working...