کلینیک فوق تخصصی اکسس ( کاربرد vba در اکسس )

کلینیک فوق تخصصی اکسس ( کاربرد vba در اکسس )

به اشتراک گذاری اطلاعات کسب شده در اکسس از سایت آفیس و سایت های تخصصی خارجی
کلینیک فوق تخصصی اکسس ( کاربرد vba در اکسس )

کلینیک فوق تخصصی اکسس ( کاربرد vba در اکسس )

به اشتراک گذاری اطلاعات کسب شده در اکسس از سایت آفیس و سایت های تخصصی خارجی

پارامترهای هنگام باز کردن Pdf با A/

برای باز کردن فایل pdf از تابع Shell استفاده کنید یا تابع Shell Execute  اگر Shell بکار ببرید  در ابتدا مسیر Acrobat.exe که در سیستم های 32 و 64 بیت فرق میکند را باید حتما ذکر کنید حتی مسیر اپلیکیشن اصلی Word یا Access ؛  از ساخت آبجکت Shell.Application هم به احتمال زیاد می توانید بهره ببرید 


ObjShell.Shell.Open fileName


<Acrobat path> /A "<parameter>=<value>" "<PDF path>



Navpanes=1|0Turns the navigation panes and tabs on or off
Scrollbar=1|0Turns scrollbars on or off
Statusbar=1|0Turns the status bar on or off
Messages=1|0Turns the document message bar

باید بین  معرفی مسیر فایل اجرایی ،  پارامتر و نام فایل از 
  استفاده کرد  Chr(34) 

 "Zoom=%100&navpanes=0&toolbar=0"












Open a PDF file:

    AcroRd32.exe PdfFile

Open a PDF file in a new instance of Adobe Reader:

    AcroRd32.exe /N PdfFile

Open a PDF file at page 7:

    AcroRd32.exe /A "page=7=OpenActions" PdfFile

Open a PDF file with navigation pane active, zoom out to 50%, and search for and highlight the word "batch":

    AcroRd32.exe /A "zoom=50&navpanes=1=OpenActions&search=batch" PdfFile

Print a PDF file with dialog:

    AcroRd32.exe /P PdfFile

Print a PDF file silently:

    AcroRd32.exe /N /T PdfFile PrinterName [ PrinterDriver [ PrinterPort ] ]

پرینت فایل ذکر شده بصورت هیدن یا ریموت 

"C:\Program Files\Adobe\Acrobat 5.0\Reader\AcroRd32.exe" /p /h "c:\filename.pdf"


ShellExecute Method

  • با ساخت آبجکت Shell.Application

Key
   application   The file to execute (required)
   parameters    Arguments for the executable
   dir           Working directory
   verb          The operation to execute (runas/open/edit/print)
   window        View mode application window (normal=1, hide=0, 2=Min, 3=max, 4=restore, 5=current, 7=min/inactive, 10=default)