hi,
when i used launcher option, wow launcher appear but as it is in windowed mod.....
see upper bar in screen
using UU 2.5 and UA 0.7.5
french wow client
thx
private void LaunchWoW()
{
if (retrdatafromsite.Checked && chWtoWOWbeforeWOWLaunch.Checked)
{
doWebsiteToWow();
}
string InstPath = GetInstallPath();
if (InstPath != null)
{
try
{
string Arguments = "";
if (windowmode.Checked)
{
Arguments += "-windowed ";
}
if (OpenGl.Checked)
{
Arguments += "-OpenGL ";
}
Arguments += launchWoWargs.Text;
string exe;
if (chUseLauncher.Checked)
{
if (File.Exists(InstPath + "\\Launcher.exe"))
{
exe = InstPath + "\\Launcher.exe";
}
else
{
exe = InstPath + "\\WoW.exe";
}
}
else
{
exe = InstPath + "\\WoW.exe";
}
System.Diagnostics.ProcessStartInfo start = new System.Diagnostics.ProcessStartInfo(exe,Arguments);
//--------------------------->start.WindowStyle = System.Diagnostics.ProcessWindowStyle.Maximized;
System.Diagnostics.Process.Start(start);
}
catch (Exception e)
{
DebugLine("LaunchWoW: "+e.Message);
}
}
else
{
DebugLine(_WOWNOTFOUND);
}
}
Users browsing this forum: No registered users and 1 guest