jamaarneen
Programmer
Hi,
How could I change during run-time the form's actual Height?
I tried to change the form's 'Form header.Height' & 'Detail.Height' but the form stayed the same.
Thanks in advance
Ja
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[blue]Public Function TwipsCentimeters(Dat As Double, flg As Boolean)
[green]'Twips = 1 = convert Dat to Twips
'Twips = 0 = convert Dat to Centimeters[/green]
If flg Then
TwipsCentimeters = 1440 * Dat / 2.54
Else
TwipsCentimeters = Int(2.54 * Dat / 1440)
End If
End Function[/blue]
[blue]Public Function TwipsCentimeters(Dat As Double, flg As Boolean)
[green]'flg = 1 = convert Dat to Twips
'flg = 0 = convert Dat to Centimeters[/green]
If flg Then
TwipsCentimeters = 1440 * Dat / 2.54
Else
TwipsCentimeters = Int(2.54 * Dat / 1440)
End If
End Function[/blue]