Desktop Products:

Process Automation:

Software Development:

 
PDF-naar-Word-converter Klanten
 
Ontvang onze nieuwsbrief
 
 

Solid Framework Code Sample

This is a concise sample to help get Solid Framework up and running. It has been tested with the Free Developer License for Solid Framework using different versions of Microsoft's Visual Studio.

Using OpenFileDialog

The code below shows you how to use the OpenFileDialog method.

Steps to Use the OpenFileDialog Method

  1. Import the trial Developer License:


    License.Import(new StreamReader(@"C:\Users\Joe\license.xml"));

  2. Locate TIFF Files using OpenFileDialog:


    OpenFileDialog dialog = new OpenFileDialog();
    //show only Tiff Files
    dialog.Filter = "TIFF files (*.tif)|*.tif";
    dialog.Multiselect = true;

    if (dialog.ShowDialog() != System.Windows.Forms.DialogResult.OK)
    {
      dosomethingwiththefile(dialog.FileName);
    }

    private void dosomethingwiththefile(string p)
    {
      throw new NotImplementedException
    }
    ...

  3. Do something useful with your files:
    Now you are ready to do something useful with your TIFF files like converting them into a PDF file.

 


Sitemap
©2000-2013 Solid Documents Limited - Alle rechten voorbehouden