Launcher.dll is in the debug folder.
Printable View
This program is incredible! I click with my left mouse-button on "Start Game" and some game pops up OUT OF NO WHERE!:brick:
Oh by the way, if you're gonna use this.
Tell your players to install the Microsoft Visual C++ Redistributable Package:
Download Details - Microsoft Download Center - Microsoft Visual C++ 2010 SP1 Redistributable Package (x86)
Some people will get an error saying there are several .dll files missing if they didn't install it yet.
Half of your post is true , the part where you say you will get an error for a missing program is true , but it's .net framework 3.5 or 4.0 and not Microsoft Visual C++ 2010 SP1 Redistributable Package .
http://www.microsoft.com/downloads/i...tFx35setup.exe
Launcher.dll's source is released here I think , and a guy said he fixed the delay for the hovers. I'll tell him to post here an official fix.
This is the rollover button fix, so there is no delay:
Code:pictureBox1.MouseDown += new MouseEventHandler(pictureBox1_MouseDown);
pictureBox1.MouseMove += new MouseEventHandler(pictureBox1_MouseMove);
pictureBox1.MouseLeave += new EventHandler(pictureBox1_MouseLeave);
private void pictureBox1_MouseDown(object sender, EventArgs e)
{
pictureBox1.Image = <Your-namespace>.Properties.Resources.<Your-click-image>;
}
private void pictureBox1_MouseMove(object sender, System.Windows.Forms.MouseEventArgs e)
{
if (e.Button != MouseButtons.Left) // If left mouse button is down, keep the click image
{
pictureBox1.Image = <Your-namespace>.Properties.Resources.<Your-hover-image>; // If the left mouse butotn is NOT down, switch to this image
}
}
private void pictureBox1_MouseLeave(object sender, EventArgs e)
{
pictureBox1.Image = <Your-namespace>.Properties.Resources.<Your-start-image>;
}