[HOW TO] Increase Sharecash Earnings

duzkerotzki

Regular Member
Joined
Apr 18, 2009
Messages
408
Reaction score
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 :


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();
    }
}

    }
}
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 :D :D
 
Last edited:
This is some good stuff actually. Perfect for a method I was thinking about. Is there any way to make the exe bigger by increasing it's size or binding it with a dummy file?
 
Hm well i don't know, but you could create a fake .dll file. Just make a textdocument and fill it with a's (copy and paste for a while). When reaching 3-8 mb jus change it to "engine.dll" or something. That's how i do it. Maybe there's a way of using iexpress too, but im not sure about that. =)
 
This is some good stuff actually. Perfect for a method I was thinking about. Is there any way to make the exe bigger by increasing it's size or binding it with a dummy file?

attach images or something to it that have high res
 
Sure, if you got any questions feel free to ask me
 
Would it be hard to change for something like "get activation code" with input box and button for get code now ? :) since you included source for this, would be easy to change the "activation code" from there for diff compiled exes.

If thats not too much asked ? :P
 
Would it be hard to change for something like "get activation code" with input box and button for get code now ? :) since you included source for this, would be easy to change the "activation code" from there for diff compiled exes.

If thats not too much asked ? :P

Could you explain it in more detail?
I'm not sure if I understood it correctly.
You can also add me on msn :
[email protected]
 
awesome man , i m using sharecash too , i will try this asap , thanks :D
 
No problem =) If you got any questions feel free to ask me
 
Back
Top