Tuesday 21 January 2014

Cust 26: File Dialogs: VB.Net Part 1

In this tutorial you learn using VB.Net:

  • How to setup and display the Solid Edge file open dialog.
  • How to setup and display a Windows standard file open dialog  using the .Net API.
  • How to adjust various settings for the file dialogs in both types viz:
    • Title
    • Filter
    • Multiple filters
    • Composite filters
    • Default filter
    • Initial directory
    • Selecting single file
    • Selecting multiple files.
    • Opening single and multiple files in Solid Edge.
  • Display the file save dialogs using both Solid Edge API and .Net
  • Relative advantages of one type over the other.

Note:

This tutorial should be read progressively beginning with the first post in the programming series.

Full index of programming tutorials on this blog is here.

Start Visual Studio and add a VB.Net Windows Forms Application project.

Add three Buttons and a listbox to the form as below:

image

Declare a variable for Solid Edge:

   1:  Public Class Form1
   2:   
   3:  Dim oApp As SolidEdgeFramework.Application
   4:  Dim oDoc As SolidEdgeFramework.SolidEdgeDocument
   5:  Dim oDocs As SolidEdgeFramework.Documents




In the Form’s Load event, connect to a running instance of Solid Edge using:


oApp = Marshal.GetActiveObject("SolidEdge.Application")


To create a file open dialog, add the following code for the first button Windows File Dialog:


Dim dlg As OpenFileDialog = New OpenFileDialog()


Before displaying the file dialog, set properties for the dialog box as below:


dlg.Title = "Select a Solid Edge File"


This sets the title of the dialog as shown below:


image


Also set the default file name to appear in the File name field:


dlg.FileName = "SomeFile.par"


The dialog can start where the compiled executable for this VB application:


dlg.InitialDirectory = System.Windows.Forms.Application.StartupPath


This is seen in image above.


Or simply specify a hardcoded path as below:


dlg.InitialDirectory = "C:\\SolidEdgeFiles\\"


Note: The double \\ are necessary as path separator and a single \ is not allowed.


To let the user see only Solid Edge files, specify a file filter a below:


dlg.Filter = "Solid Edge Part Files (*.par)|*.par”


Where the string is made of two parts Solid Edge Part Files (*.par)  and *.par which are separated by a pipe | character.


image


The part of the string to the left of the pipe is what appears in the list for the file types.


The part of the string on the right of the pipe is the actual filter.


Using this filter displays only Solid Edge part files from a folder.


Note that mentioning the *.par in the left portion of the filter is not required nor the case is important. The actual filter is on the right side of the pipe (|) character.


You may as well write the filter as "Text files|*.par" which would display Text files in the dialog but the actual files that are displayed are par files due to the *.par extension specified on the right side of the pipe.


Similarly, you may write the filter as “Solid Edge Part Files|*.txt” which will display Solid Edge Part Files in the file dialog but text files will get filtered and will be displayed.


To specify multiple types, specify the filter as below:


dlg.Filter = "Part Files (*.par)|*.par|Assembly Files (*.asm)|*.asm|Drawing Files (*.dft)|*.dft";


Using this filter, all three types of files are displayed in a selected folder and the file type selection itself looks as below:


image


This string has three file filters for Solid Edge Part, Assembly and Draft files. Each one is a pair separated by pipes and each pair is again separated by a pipe.


However, the *.par filter written first remains the default filter and the user has to pull down this list to select another filter.


To set the second filter *.asm as the default, set the filter index to:


dlg.FilterIndex = 2


This will set *.asm as the default filter when the file dialog is displayed.


To display all three file types as a single filter, specify the filter as below:


dlg.Filter = "All Solid Edge Files|*.par;*.asm;*.dft|Part Files (*.par)|*.par|Assembly Files (*.asm)|*.asm|Draft Files (*.dft)|*.dft"


image


Here, three file types are specified in a single filter separated by a semi-colon.


Now its time to actually display the dialog on screen using:


Dim dResult As DialogResult = dlg.ShowDialog()


the ShowDialog method displays the file dialog upon clicking the button Windows File Dialog and the user starts interacting and browsing files.


If the user picks a file and click OK the ShowDialog function returns OK, else if the user cancels the dialog by clicking Cancel or by clicking the red cross button in the title bar top-right corner, the dialog returns Cancel which is stored in the the dResult variable of type DialogResult.


Check the value returned in dResult as below and store the file name in a string and subsequently open it in Solid Edge:


If dResult <> DialogResult.Cancel Then
  Dim sFileName As String = dlg.FileName
  oDoc = oApp.Documents.Open(sFileName)
End If


To allow selection of multiple files, set the property of the dialog before displaying it as below:


dlg.Multiselect = True


This will allow user to pick multiple files using Shift and Ctrl buttons and also by dragging around multiple files in the dialog as below:


image


and also all files picked will be listed in the file name field :


image


Next, display all selected files in the a listbox:


First, show the dialog from the button’s Click event:


Dim dResult As DialogResult = dlg.ShowDialog()


If the user has not cancelled the dialog, declare a string array and store all the selected files using the Filenames property of the file dialog:


   1:   If dResult <> System.Windows.Forms.DialogResult.Cancel Then
   2:    Dim sFileNames() As String = dlg.FileNames
   3:   
   4:    For i As Integer = 0 To sFileNames.Length - 1
   5:      listBox1.Items.Add(sFileNames(i))
   6:      oDoc = oApp.Documents.Open(sFileNames(i))
   7:    Next
   8:  End If



Finally in a For loop, add each filename to the list box or simply open each file in Solid Edge as shown above or both.


image


 


Continued to Part 2…


 


 clip_image002_thumb1_thumbDrop a comment below if you need the Visual Studio project files and if you liked the depth of this discussion, similar in-depth techniques are discussed in cMayoCAD where you create your own, brand new, fully functional CAD system with scripting capabilities using a geometric modeling kernel.

Download the detailed course contents for cMayoCAD here.
cMayoCAD2
















No comments:

Post a Comment