فادى سامى قام بنشر مايو 16, 2018 قام بنشر مايو 16, 2018 السلام عليكم ورحمة الله هل يمكن طباعة اليوزرفورم بصيغة (صورة) وشكرا
Ali Mohamed Ali قام بنشر مايو 17, 2018 قام بنشر مايو 17, 2018 يمكنك تجربة هذا الكود Sub JPGActiveSheet() 'www.contextures.com 'for Excel 2010 and later Dim wsA As Worksheet Dim wbA As Workbook Dim strTime As String Dim strName As String Dim strPath As String Dim strFile As String Dim strPathFile As String Dim myFile As Variant On Error GoTo errHandler Set wbA = ActiveWorkbook Set wsA = ActiveSheet strTime = Format(Now(), "yyyymmdd\_hhmm") 'get active workbook folder, if saved strPath = wbA.Path If strPath = "" Then strPath = Application.DefaultFilePath End If strPath = strPath & "\" 'replace spaces and periods in sheet name strName = Replace(wsA.Name, " ", "") strName = Replace(strName, ".", "_") 'create default name for savng file strFile = strName & "_" & strTime & ".jpg" strPathFile = strPath & strFile 'use can enter name and ' select folder for file myFile = Application.GetSaveAsFilename _ (InitialFileName:=strPathFile, _ FileFilter:="jpg Files (*.jpg), *.jpg", _ Title:="Select Folder and FileName to save") 'export to PDF if a folder was selected If myFile <> "False" Then wsA.ExportAsFixedFormat _ Type:=xlTypePDF, _ filename:=myFile, _ Quality:=xlQualityStandard, _ IncludeDocProperties:=True, _ IgnorePrintAreas:=False, _ OpenAfterPublish:=False 'confirmation message with file info MsgBox "jpg file has been created: " _ & vbCrLf _ & myFile End If exitHandler: Exit Sub errHandler: MsgBox "Could not create jpg file" Resume exitHandler End Sub 1
فادى سامى قام بنشر مايو 19, 2018 الكاتب قام بنشر مايو 19, 2018 شكرا للمرور اخى والاهتمام ولكن اعذر جهلى اين يوضع الكرد عند بداية الفورم ولا عند الضغط على الزر
تمت الإجابة Ali Mohamed Ali قام بنشر مايو 19, 2018 تمت الإجابة قام بنشر مايو 19, 2018 تفضل هذا هو الملف وبه الكود Book1.xlsm 1
الردود الموصى بها