Tagged Questions
The getsystemmetrics tag has no wiki summary.
1
vote
1answer
57 views
find size of external monitor in excel vba
To find the size of the monitor, I've been using:
Declare Function GetSystemMetrics32 Lib "user32" Alias "GetSystemMetrics" (ByVal Index As Long) As Long
and then:
Function getMonitorSize()
...
1
vote
1answer
59 views
How to notify Windows about changes in Desktop settings?
How to notify Windows system that some appearance settings has been changed by my program?
I'm working with:
HKEY_CURRENT_USER\Control Panel\Desktop -> FontSmoothing + FontSmoothingType
What is ...
0
votes
0answers
92 views
Why do ASP.NET applications appear to be running in a terminal server session?
Running the following ASPX page (IIS 6, Server 2003 R2)
<%@ Page Language="vb" AutoEventWireup="false" %>
<%
Response.Write("Am I running in a terminal server session: " & _
...
0
votes
2answers
420 views
How to resolve linking error for GetSystemMetrics()?
I'm attempting to use the following to get the height & width of the main display:
#include <winuser.h>
size_t width = (size_t)GetSystemMetrics(SM_CXBORDER);
size_t height = ...
0
votes
1answer
516 views
Input Values for Nativemethods.GetSystemMetrics Function in .Net
This function appears to be a way to access all sorts of system values. For example
nativemethods.GetSystemMetrics(4096) returns whether a session is remote or local. All I can find on the web are ...