Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
Loading an Encrypted Form/Program.cs opens the protected file and exports the decrypted form to PDF:var form = new StiForm();
form.LoadEncryptedForm(@"Data\SoftwareEvaluationSurvey.mdx", "secterKey");
var exporter = new StiPdfExporter();
var pdf = exporter.ExportForm(form);
string path = "form.pdf";
File.WriteAllBytes(path, pdf);
Process.Start(new ProcessStartInfo(path) { UseShellExecute = true });