Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Another unexplained error
Message
From
30/08/2002 10:31:26
 
 
To
30/08/2002 10:10:56
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00695339
Message ID:
00695421
Views:
21
This message has been marked as the solution to the initial question of the thread.
Alessio,

I have NOT read the whole thread BUT your statement of 'on one PC only' makes me suggest that you might want to look at the Display setting for "Small Fonts" / "Large Fonts" on THAT PC.

You find this in: rt-click anywhere on Desktop, click Properties, click Advanced and then look at the selection in place. It may be set to Large Fonts" and that can cause different display from "Small Fonts".

Sadly, even in WinXP (Home) a display still shows differently depending on this setting.

good luck


>Thank u for the explanation, u add something i didn't kow to my knowledge.
>I suppose it was sometyhing with the minimum height of the grid, bu what did,'t and still does not make sense to me is the fact that the problems comes out only on one PC of the network. How do you explai it ?
>thanks
>Alessio
>>>It looks like it was my lucky month !!!
>>>To allow users to choose multiple filters on a table, i put a grid on a form.
>>>clicking on a command button i minimize it to the headerheight value
>>>
>>>.mygrid.height = .mygrid.headerheight + 1
>>>
>>>clicking on its header i maximize it
>>>
>>>.height = heightval
>>>
>>>It works fine, or better it works perfectly on all PC but one.
>>>On this bloody one it gives me the error that the object miagrid has evaluated an illegal value. This doesn't make sense to me.
>>>
>>>Alessio
>>>
>>>PS Thank you all once again
>>
>>Alessio,
>>
>>I suspect you have trouble with the minimum height of the grid
>>>.mygrid.height = .mygrid.MinimumHeight()
>>
>>The minimum height for a grid is as follows (add a method to your grid class)
>>
>>
>>&& grid.MinimumHeight
>>return (  this.HeaderHeight ;
>>	+ this.GridLineWidth ;
>>	+ iif( inlist(this.ScrollBars,SCROLLBARS_HORIZONTAL,SCROLLBARS_BOTH), ;
>>		sysmetric(SYSMETRIC_HSCROLLBARHEIGHT), ;
>>		1 ;
>>	      ) ;
>>	)
>>
>>
>>for your info
>>
>>&& grid.MinimumWidth
>>#define Grid_WIDTH_RecordMark	iif(this.Recordmark, 10, 0)
>>#define	Grid_WIDTH_DeleteMark	iif(this.DeleteMark, 8, 0)
>>#define	Grid_WIDTH_Scrollbar	iif(inlist(this.ScrollBars,SCROLLBARS_VERTICAL,SCROLLBARS_BOTH), ;
>>					sysmetric(SYSMETRIC_VSCROLLBARWIDTH), ;
>>					0 ;
>>				   )
>>
>>#define	MIN_WIDTH	(Grid_WIDTH_RecordMark + Grid_WIDTH_DeleteMark + Grid_WIDTH_Scrollbar)
>>
>>return MIN_WIDTH
>>
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform