Announcement

Collapse
No announcement yet.

popup always show

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

  • popup always show

    Hello,

    Why the condition below not work ????

    IF (%ScreenWidth% < 600 OR %ScreenHeight% < 800 OR %ColorDepth% < 16)
    ShowMessageBox (.....
    ENDIF

    The ShowMessageBox method is always execute.

  • #2
    Re: popup always show

    Originally posted by francis-tgm:
    Hello,

    Why the condition below not work ????

    IF (%ScreenWidth% < 600 OR %ScreenHeight% < 800 OR %ColorDepth% < 16)
    ShowMessageBox (.....
    ENDIF

    The ShowMessageBox method is always execute.
    Because the monitor screen resolution at 800 * 600 pixel, the height = 600 and width = 800.
    For example:
    IF ( %ScreenWidth% < 800 OR %ScreenHeight% < 600 OR %ColorDepth% < 16)
    ShowMessageBox (.....
    ENDIF

    Laslie

    Comment

    Working...
    X
    😀
    🥰
    🤢
    😎
    😡
    👍
    👎