home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 27 / CDROM27.iso / share / progra / mai / Graphics, determining screen resolution < prev    next >
Encoding:
Text File  |  1997-07-15  |  263 b   |  7 lines

  1. Description: Determines screen resolution
  2.  
  3. CR$ = Chr$(13) + Chr$(10)
  4. TWidth% = screen.Width \ screen.TwipsPerPixelX
  5. THeight% = screen.Height \ screen.TwipsPerPixelY
  6. MsgBox "Screen Resolution:" + CR$ + CR$ + Str$(TWidth%) + " x" + Str$(THeight%), 64, "Info"
  7.