Click here to Skip to main content
15,894,405 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to drag with mouse Controls groupBox1 in Run time ? Pin
Richard MacCutchan16-Oct-19 21:56
mveRichard MacCutchan16-Oct-19 21:56 
Questionhow to create a text editor that reads c sharp source and display together with colors text and brackets Pin
Member 1462267414-Oct-19 21:35
Member 1462267414-Oct-19 21:35 
AnswerRe: how to create a text editor that reads c sharp source and display together with colors text and brackets Pin
OriginalGriff14-Oct-19 21:46
mveOriginalGriff14-Oct-19 21:46 
AnswerRe: how to create a text editor that reads c sharp source and display together with colors text and brackets Pin
Eddy Vluggen15-Oct-19 1:25
professionalEddy Vluggen15-Oct-19 1:25 
QuestionSystem.NullReferenceException Pin
Alrzini14-Oct-19 10:09
Alrzini14-Oct-19 10:09 
AnswerRe: System.NullReferenceException Pin
OriginalGriff14-Oct-19 10:16
mveOriginalGriff14-Oct-19 10:16 
QuestionHelp with getting Monitors (Screen) information Pin
mniceguy8114-Oct-19 6:35
mniceguy8114-Oct-19 6:35 
AnswerRe: Help with getting Monitors (Screen) information Pin
Dave Kreskowiak14-Oct-19 9:35
mveDave Kreskowiak14-Oct-19 9:35 
Win32_DesktopMonitor was deprecated. It also will not tell you accurate information about the displays attached. You may not even get any information at all. On my machine right now, I've got a laptop built-in display and two external monitors. There's only a single instance of Win32_DesktopMonitor being returned and it just lists generic information. There's nothing on the manufacturer or model of the monitors, or anything else that would be useful.

About the only class that returns anything accurate is the Win32_VideoController class, but it won't return any monitor information.

About the only EASILY ACCESSIBLE place I've found that can get you information on the monitors is looking in the registry under HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\DISPLAY. You're looking for the EDID data, which you're going to have to decode to get the vendor/model information.

Be warned. Everything under this key will give you the EDID data for EVERY monitor that has ever been attached to the system. It does NOT remove the data for monitors that are no longer attached!

The hard way to do it would be to call the Windows EnumDisplayDevices function in user32.dll.

GeneralRe: Help with getting Monitors (Screen) information Pin
mniceguy8114-Oct-19 10:42
mniceguy8114-Oct-19 10:42 
GeneralRe: Help with getting Monitors (Screen) information Pin
Dave Kreskowiak14-Oct-19 11:54
mveDave Kreskowiak14-Oct-19 11:54 
GeneralRe: Help with getting Monitors (Screen) information Pin
mniceguy8114-Oct-19 11:56
mniceguy8114-Oct-19 11:56 
QuestionResize controls at runtime (borderless form) Pin
Member 1407482710-Oct-19 15:42
Member 1407482710-Oct-19 15:42 
AnswerRe: Resize controls at runtime (borderless form) Pin
OriginalGriff10-Oct-19 20:23
mveOriginalGriff10-Oct-19 20:23 
GeneralRe: Resize controls at runtime (borderless form) Pin
Member 1407482711-Oct-19 1:24
Member 1407482711-Oct-19 1:24 
AnswerRe: Resize controls at runtime (borderless form) Pin
Eddy Vluggen11-Oct-19 1:29
professionalEddy Vluggen11-Oct-19 1:29 
GeneralRe: Resize controls at runtime (borderless form) Pin
Member 1407482711-Oct-19 2:25
Member 1407482711-Oct-19 2:25 
GeneralRe: Resize controls at runtime (borderless form) Pin
Eddy Vluggen11-Oct-19 2:29
professionalEddy Vluggen11-Oct-19 2:29 
GeneralRe: Resize controls at runtime (borderless form) Pin
Rob Philpott11-Oct-19 3:03
Rob Philpott11-Oct-19 3:03 
GeneralRe: Resize controls at runtime (borderless form) Pin
Eddy Vluggen11-Oct-19 3:07
professionalEddy Vluggen11-Oct-19 3:07 
AnswerRe: Resize controls at runtime (borderless form) Pin
BillWoodruff21-Oct-19 3:49
professionalBillWoodruff21-Oct-19 3:49 
Question2D Arrays Pin
LilJokez_Gaming10-Oct-19 11:27
LilJokez_Gaming10-Oct-19 11:27 
AnswerRe: 2D Arrays Pin
Luc Pattyn10-Oct-19 13:11
sitebuilderLuc Pattyn10-Oct-19 13:11 
QuestionHelp with WMI Connect Remotely Pin
mniceguy819-Oct-19 4:30
mniceguy819-Oct-19 4:30 
AnswerRe: Help with WMI Connect Remotely Pin
Dave Kreskowiak9-Oct-19 6:47
mveDave Kreskowiak9-Oct-19 6:47 
GeneralRe: Help with WMI Connect Remotely Pin
mniceguy819-Oct-19 22:28
mniceguy819-Oct-19 22:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.