|
Quick links:
F-IN-BOX .NET Edition Home Page
| Buy license
| Welcome to our forum!
| Ask your question
| Help on the Web
F-IN-BOX .NET Help >> Classes >> AxCode >> Properties Version
Syntax
[ C# ]
[ VB.Net ]
public Version Version; Description
Returns the flash version.
See Version for more information about Version class.
[ C# ]
[STAThread]
static void Main()
{
if (!f_in_box__lib.Global.IsFlashInstalled)
{
System.Windows.Forms.MessageBox.Show("The application needs Flash 8 or higher\nFlash is not installed");
return;
}
if (f_in_box__lib.Global.InstalledFlashVersion.MajorPart < 8)
{
System.Windows.Forms.MessageBox.Show("The application needs Flash 8 or higher\nCurrent flash version is: " + f_in_box__lib.Global.InstalledFlashVersion.ToString());
return;
}
Application.Run(new MainForm());
}
Copyright © 2004 - 2008 Softanics. All rights reserved. F-IN-BOX is a trademark of Softanics. Macromedia and Shockwave Flash are trademarks of Adobe
Quick links:
F-IN-BOX .NET Edition Home Page
| Buy license
| Welcome to our forum!
| Ask your question
| Help on the Web
|