Name: PutaDonkonIt 2011-06-12 14:44
Trying to get my program to work, but I'm failing. This is ze code:
namespace WindowsFormsApplication3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
axShockwaveFlash1.Movie = "http://aq.battleon.com/Build30/engine/ThirtyFive.801.swf";
axShockwaveFlash1.Base = "http://aq.battleon.com/Build30/game.asp?launchtype=medium";
axShockwaveFlash1.FlashVars = "strGUI=medium&strServer=aq7&strLanguage=&strAutoAd=yes";
}
private void axShockwaveFlash1_Enter(object sender, EventArgs e)
{
}
}
}
Running the program itself seems fine, but when I try to log in I get a 'processing error'. For some reason it isn't connecting to the game - or something along those lines.
How2Fix?
namespace WindowsFormsApplication3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
axShockwaveFlash1.Movie = "http://aq.battleon.com/Build30/engine/ThirtyFive.801.swf";
axShockwaveFlash1.Base = "http://aq.battleon.com/Build30/game.asp?launchtype=medium";
axShockwaveFlash1.FlashVars = "strGUI=medium&strServer=aq7&strLanguage=&strAutoAd=yes";
}
private void axShockwaveFlash1_Enter(object sender, EventArgs e)
{
}
}
}
Running the program itself seems fine, but when I try to log in I get a 'processing error'. For some reason it isn't connecting to the game - or something along those lines.
How2Fix?