; GfxDriver Examples ; Count how many drivers there are totalDrivers=dxCountGfxDrivers() dxPrint "Choose a driver to use:" ; Go through them all and dxPrint their names (most people will have only 1) For t = 1 To totalDrivers dxPrint t+") " + GfxDriverName$(t) Next ; Let the user choose one driver=Input("Enter Selection:") ; Set the driver! SetGfxDriver driver dxPrint "Your driver has been selected!"