Wed, 18 Jun 1902 08:00:00 GMT
Help - Video mode question
I have recently 'inherited' a pascal program which runs fine on some computers but give a strange screen on others. I suspect it may be something to do with the video drivers - but I may be completely wrong - I am a beginner as far as pascal goes. The 'offending' part of the code may be the way initgraph is being used : ------------------------- uses crt,graph; var gd,gm:integer; gd:=detect; initgraph(gd,gm,''); ------------------------- gm is not assigned a value anywhere in the program. The problem I see is that on some systems the menu which follows the above code comes up fine - but on other systems the text is smaller and offset making the program almost unusable. It functions correctly but the display is incorrect. All the systems are VGA but I am sure that they have different video cards. Any ideas ? Thanks, Chris McKeown cmcke...@ti.com
|