Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HeaderHeight and Alignment in Grid 1

Status
Not open for further replies.

sashaDG

Programmer
Jun 20, 2022
112
BY
Good afternoon, there is an empty GRID. I create a connection cursor with GRIDO. Adding to event INIT HeaderHeight and Alignment. When I run app the HeaderHeight changes but Alignment does not

This code in Refresh()

Code:
FUNCTION f(myform)
	myform.grid1.HeaderHeight = 30
	WITH myform.Grid1
		.Column1.Header1.Alignment= 8
		.Column2.Header1.Alignment= 2
		.Column3.Header1.Alignment= 5
		.Column4.Header1.Alignment= 8
		.Column5.Header1.Alignment= 5
		.Column6.Header1.Alignment= 2
		.Column7.Header1.Alignment= 5
		
	ENDWITH
ENDFUNC

Design time
1_y2qmxd.png


Run time
2_nrwjpx.png




Well, I created the grid manually, I specified HeaderHeight and Alignment in the properties. Still the same problem and Alignment seems to work but not as it should. This Grid has other Alignment numbers.


I also realized a day later that if in REFRESH I set only the function F() Alignment works, but if I add the Code below, then Alignment does not work

Code:
	&&f(ThisForm)
*!*	**************************
WITH This
.column1.width = 35
.column2.width = 45
.column3.width = 190
.column4.width = 170
.column5.width = 100
.column6.width = 70
.column7.width = 50
.column8.width = 45
.column9.width = 50
.column10.width = 60
.column11.width = 50
.column12.width = 50
.column13.width = 60
.column14.width = 80
.column15.width = 80

.column1.header1.Caption = 'Ñêëàä'
.column2.header1.Caption = 'Êîä ïîñò-êà'
.column3.header1.Caption = 'Íàèìåíîâàíèå ïîñò-êà'
.column4.header1.Caption = 'Íàèìåíîâàíèå äåòàëè'
.column5.header1.Caption = 'Îáîçíà÷åíèå äåòàëè'
.column6.header1.Caption = 'Êîëè÷åñòâî'
.column7.header1.Caption = 'Öåíà'
.column8.header1.Caption = '¹ ï/î'
.column9.header1.Caption = 'Äàòà ï/î'
.column10.header1.Caption = '¹ ñ/ô'
.column11.header1.Caption = 'Äàòà ñ/ô'
.column12.header1.Caption = '¹ CMR'
.column13.header1.Caption = 'Äàòà CMR'
.column14.header1.Caption = 'Ñóììà îòãðóçêè'
.column15.header1.Caption = 'Íäñ'

.column1.header1.WordWrap = .T.
.column2.header1.WordWrap = .T.
.column3.header1.WordWrap = .T.
.column4.header1.WordWrap = .T.
.column5.header1.WordWrap = .T.
.column6.header1.WordWrap = .T.
.column7.header1.WordWrap = .T.
.column8.header1.WordWrap = .T.
.column9.header1.WordWrap = .T.
.column10.header1.WordWrap = .T.
.column11.header1.WordWrap = .T.
.column12.header1.WordWrap = .T.
.column13.header1.WordWrap = .T.
.column14.header1.WordWrap = .T.
.column15.header1.WordWrap = .T.


.column6.Format = 'R'
.column6.Inputmask = '999 999 999.999'
ENDWITH
 
Guys, I found a case in WordWrap. Thank you all for your attention!
 
Sasha, you beat me to it. I was going to draw your attention to this point in the Help:

For a Header object, if the WordWrap property is set to False (.F.), values 0-2, 4-9 are available. If the WordWrap property is set to True (.T.), values 0-2 are effective.

Mike

__________________________________
Mike Lewis (Edinburgh, Scotland)

Visual FoxPro articles, tips and downloads
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top