ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Windows functions / System functions
  • Finding out the screens linked to a video card
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
SysListVideoCard (Function)
In french: SysListeCarteGraphique
Returns the name of the video cards connected to the current computer.
Example
// Find out the list of video cards installed on the current PC
ListAdd(LIST_Screen, SysListVideoCard())
Syntax
<Result> = SysListVideoCard()
<Result>: Character string
List of video cards installed on the current computer, empty string ("") if an error occurred. ErrorInfo returns more information on the error.
This list has the following format:
<Name of Screen 1> + TAB + <Name of Video Card 1> + CR +
<Name of Screen 2> + TAB + <Name of Video Card 2> + CR + ...
+ CR + <Name of Screen N> + TAB + <Name of Video Card N>
For example:
\\.\DISPLAY1<TAB>NVIDIA GeForce 210 <\r><\n>\\.\DISPLAY2<TAB>NVIDIA GeForce 210
Remarks

Finding out the screens linked to a video card

To find out the screens associated with a video card, use SysListScreen.
Related Examples:
The system functions (screens) Unit examples (WINDEV): The system functions (screens)
[ + ] Using the SysXxx functions on the screens in order to get various information:
- Retrieve the number of screens installed on the computer
- Retrieve the graphic cards installed on the computer
- Change the resolution of a screen
- ...
Business / UI classification: Business Logic
Component: wd290std.dll
Minimum version required
  • Version 12
This page is also available for…
Comments
Exemplo Monitores
Exemplo Monitores

ListAdd(LIST_videos,"Lista Videos/Monitores")
ListAdd(LIST_videos,SysListScreen())
ListAdd(LIST_videos,"Lista Nome Videos/Monitores")
ListAdd(LIST_videos,SysListVideoCard())
EDT_videos="Numero de Monitores:"+SysNumberScreen()


//Blog com Video e Exemplo
http://windevdesenvolvimento.blogspot.com.br/2016/08/curso-windev-funcoes-exe-windows-010.html
https://www.youtube.com/watch?v=RadRtt3BR_k

De matos AMARILDO
21 Aug. 2016

Last update: 06/22/2023

Send a report | Local help