duzkerotzki
Regular Member
- Apr 18, 2009
- 408
- 312
Hey guys,
today i want to present to you a sweet little trick how I increased my ShareCash Earnings pretty much. Didn't know if i should reveal it, but BHW gave me so much so i give something back. It's pretty simple but yet effective.
This only works if you offer .exe files.
Requirements : Microsoft Visual Studio
The idea is about the following :
If your downloader opens the .exe file, then he will get a message there's an updated version available. If he wants to use this tool he needs to update.
We'll use the language C# here.
So , let's get it started !
1. So first of all we need so start a new C# Windows Forms Application. (File -> New -> Project -> Windows Forms Application)
2. After this is done you will see the standard windows form. Now open properties (View -> Properties) and click ONE time on the windows form.
3. Now at the properties scroll down to "Opacity" and switch it down to 0%.
4. Now there's the important part. You right click on the form and press view code!
5. Now you press CTRL + A and delete EVERYTHING. After that copy this code and paste it in :
6. Replace YOURPROJECTNAME with your projectname and YOURSHARECASHLINK with your sharecash link.
7. Save all, Build Solution.
8. Now your fake updater is READY.
This is how it looks like :
http://www.youtube.com/watch?v=LrheLfUSTkg
If this information helped you, press thanks and give rep

today i want to present to you a sweet little trick how I increased my ShareCash Earnings pretty much. Didn't know if i should reveal it, but BHW gave me so much so i give something back. It's pretty simple but yet effective.
This only works if you offer .exe files.
Requirements : Microsoft Visual Studio
The idea is about the following :
If your downloader opens the .exe file, then he will get a message there's an updated version available. If he wants to use this tool he needs to update.
We'll use the language C# here.
So , let's get it started !
1. So first of all we need so start a new C# Windows Forms Application. (File -> New -> Project -> Windows Forms Application)
2. After this is done you will see the standard windows form. Now open properties (View -> Properties) and click ONE time on the windows form.
3. Now at the properties scroll down to "Opacity" and switch it down to 0%.
4. Now there's the important part. You right click on the form and press view code!
5. Now you press CTRL + A and delete EVERYTHING. After that copy this code and paste it in :
Code:
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 YOURPROJECTNAME
{
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("YOURSHARECASHLINK");
this.Close();
}
}
}
}
7. Save all, Build Solution.
8. Now your fake updater is READY.
This is how it looks like :
http://www.youtube.com/watch?v=LrheLfUSTkg
If this information helped you, press thanks and give rep
Last edited: