LibreOffice 25.2 Help
প্রয়োজনবোধে, অন্য একটি অ্যাপ্লিকেশন শুরু করা হয় এবং সংশ্লিষ্ট উইন্ডো শৈলী নির্ধারণ করা হয়।
Shell (Pathname As String[, Windowstyle As Integer[, Param As String[, bSync]]])
Name of the program that you want to start, optionally with complete path and/or arguments.
Optional integer expression that specifies the style of the window that the program is executed in.
Parameter Windowstyle is only effective on Windows systems. On other systems the parameter is ignored.
The following values are possible:
| Windowstyle | Meaning | 
|---|---|
| 0 | গোপন প্রোগ্রাম উইন্ডোতে ফোকাস। | 
| 1 | আদর্শ আকারের প্রোগ্রাম উইন্ডোতে ফোকাস। Not implemented in LibreOffice. | 
| 2 | ন্যূনতম বিস্তারিত প্রোগ্রাম উইন্ডোতে ফোকাস। | 
| 3 | পূর্ণ বিস্তারিত প্রোগ্রাম উইন্ডোতে ফোকাস। | 
| 4 | ফোকাস ব্যয়তিত আদর্শ আকারের প্রোগ্রাম উইন্ডো। Not implemented in LibreOffice. | 
| 6 | ন্যূনতম বিস্তারিত প্রোগ্রাম উইন্ডো, সক্রিয় উইন্ডোতে ফোকাস বিদ্যমান। Not implemented in LibreOffice. | 
| 10 | পূর্ণ-পর্দা প্রদর্শনী। | 
Windowstyle 3 and 10 are equivalent in Windows systems.
String that specifies additional arguments passed to the program.
যদি এই মানটি true হয়, তাহলে Shell কমান্ড এবং সকল LibreOffice কাজ এই shell প্রক্রিয়া সম্পন্ন না হওয়া পর্যন্ত অপেক্ষা করে থাকে। যদি মান false হয়, তাহলে সরাসরি shell প্রদান করে থাকে। ডিফল্ট মান হলো false।
Sub ExampleShellForWin
    Shell("c:\windows\calc.exe",2)
End Sub