' In UserForm Initialize event: Private Sub UserForm_Initialize() TextBox1.Font.Name = "Khmer OS" ' But pasting Khmer into TextBox may still fail. ' Instead, load from cell: TextBox1.Text = Sheet1.Range("A1").Value End Sub Sub PrintKhmerReportToPDF() Dim ws As Worksheet Set ws = ThisWorkbook.Sheets("Report") ' Set print area ws.PageSetup.PrintArea = "A1:F50"
' Print titles ws.PageSetup.PrintTitleRows = "$1:$3" ' First 3 rows repeat
ws.Range("B5").Value = "បរិយាយ" ' Description ws.Range("C5").Value = "សេវាកម្មប្រឹក្សា" ' Consulting service vba code excel khmer pdf
' Export range to PDF rng.ExportAsFixedFormat Type:=xlTypePDF, _ Filename:=pdfPath, _ Quality:=xlQualityStandard, _ IncludeDocProperties:=True, _ IgnorePrintAreas:=False, _ OpenAfterPublish:=True
' Export to PDF ws.Range("B2").ExportAsFixedFormat Type:=xlTypePDF, _ Filename:=ThisWorkbook.Path & "\output.pdf", _ OpenAfterPublish:=True End Sub VBA UserForm controls (Label, TextBox) do not support complex scripts like Khmer reliably. Workaround: Use WebBrowser control or simply avoid forms – use Excel cells as input/output. ' Add Khmer header ws
' Add Khmer header ws.PageSetup.LeftHeader = "សួស្តី! (Hello)" ' May not display – use cell reference ' Better: use a cell for header and print that row on each page
' Define PDF output path pdfPath = ThisWorkbook.Path & "\Khmer_Report.pdf" _ Filename:=ThisWorkbook.Path & "\output.pdf"
ws.Range("B3").Value = "កាលបរិច្ឆេទ" ' Date ws.Range("C3").Value = Date
Range("A1").Value = khmerString Range("A1").Font.Name = "Khmer OS" ' Apply Khmer font End Sub Function ReadUTF8File(filePath As String) As String Dim adoStream As Object Set adoStream = CreateObject("ADODB.Stream") adoStream.Open adoStream.Type = 2 ' adTypeText adoStream.Charset = "utf-8" adoStream.LoadFromFile filePath ReadUTF8File = adoStream.ReadText adoStream.Close Set adoStream = Nothing End Function Sub ImportKhmerAndPDF() Dim khmerText As String Dim ws As Worksheet Set ws = ThisWorkbook.Sheets(1)