กระทู้เก่าบอร์ด อ.Yeadram
1,079 1
URL.หัวข้อ /
URL
ตั้งค่าให้จำนวนตัวหนังสือพอดีกับตารางที่Print repo
ผมพบปัญหาเวลา Print report แล้วบางทีรายละเอียดในตารางเยอะทำให้บางส่วนที่แสดงในตารางขาดหายไป ถ้าจะตั้งค่าให้แสดงตัวหนังสือทั้งหมดให้พอดีกับตารางที่ Print report ออกมา จะต้องตั้งค่าตรงใหนครับ หรือมีวิธีอื่นบ้างใหมครับ
1 Reply in this Topic. Dispaly 1 pages and you are on page number 1
Time: 0.3424s
Private Sub Detail_Format(...)
dim R as Single
Me.FontName = "Areal" 'Your default font here
Me.FontSize = 10 'Your default font size here
R = Me.TextWidth(Me![MyTextStr]) / Me![MyTextStr].Width
If R >= 1 then
Me![MyTextStr].FontSize = 10 'Don't forget to restore original font size
Else
Me![MyTextStr].FontSize = 10*R
End If
End Sub