Video Edit Gold SDK ActiveX

Video Edit Gold SDK ActiveX 9.1

Platform : Windows 9X, XP, Vista, Window 7

For Windows Developers who need to add picture in picture effect, video mixing, audio mixing and add subtitle on video, create subtitle file, video audio editing in Adobe Director, ASP, ASP.net, php, c++ , c#, vb.net , vb, delphi, vfp.

How to add Video Edit Gold ActiveX Playing event in C# 2005 Project

Step 1: Assume you installed Video Edit Gold ActiveX and imported it.

Step 2: Add text box and label on form.

Step 3: Select Form1.Designer.cs , double click it.

Step 4: Found  "// axVideoEdit1" string and add  following code

 this.axVideoEdit1.OnPlaying = new AxVIDEOEDITLib._DVideoEditEvents_OnPlayingEventHandler(this.axVideoEdit1_OnPlaying);
 

Step 5: Add following code in Form1.cs

 private void axVideoEdit1_OnPlaying(object sender, AxVIDEOEDITLib._DVideoEditEvents_OnPlayingEvent e)
{

this.textBox1.Text = e.iCurrent.ToString();

}


Step 6: Now you can run the sample. You will see the current position value changed.