C# - Mass Backlinker v1.01

0 replies
C# - Mass Backlinker v1.01

Here is a C# based back linking software I had written a while back where a user enters a website and it submits to a list of websites to get automatic backlinks, i will soon work on a better version which uses custom link lists or paul and mindy links.



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;
using System.Net;
using System.Threading;
namespace XRiBE_BacklinkeR
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private void Form1_Load(object sender, EventArgs e)
        {
            status.Text = "XRiBE's Auto BacklinkeR v1.01 :: Loaded";
            w.Navigate("http://theweb20on20.com/xribe_backlinker/");
            startToolStripMenuItem.Enabled = false;
            System.Threading.Thread.Sleep(5000);
            startToolStripMenuItem.Enabled = true;
        }
        private void exitToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.Close();
        }

        private void Form1_Resize(object sender, EventArgs e)
        {
            //On minimize mode, show the form in System Tray only
            if (FormWindowState.Minimized == WindowState)
            {
                Hide();
            }
        }

        private void startToolStripMenuItem_Click(object sender, EventArgs e)
        {
            MessageBox.Show("This will take approx 20minutes,\nSo We'll minimize this application for you.\nOnce it's complete it will reappear.", "Heads up!");
            status.Text = "Backlinking started, will take approx 20minutes.";
            w.Document.GetElementById("url").SetAttribute("value", txtURL.Text);
            w.Document.GetElementById("keyword").SetAttribute("value", txtKeywords.Text);
            w.Document.GetElementById("keyword").Focus();
            SendKeys.Send("{ENTER}");
            notifyIcon1.BalloonTipText = "Mass Backlinker has been minimized!\nIt Will reappear when backlinkg is complete.";
            notifyIcon1.BalloonTipTitle = "[XRiBE] Mass Backlinker v1.0";
            //Display the Notify Baloon for 1 second
            notifyIcon1.ShowBalloonTip(2000);
            //Set the WindowState in Minimized Mode
            WindowState = FormWindowState.Minimized;
            System.Threading.Thread.Sleep(1200000);
            WindowState = FormWindowState.Normal;
            Show();
            status.Text = "Backlinking complete.";
        }
        private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e)
        {
            //Display the Form in normal state
            WindowState = FormWindowState.Normal;
            Show();
        }

        private void viewHelpToolStripMenuItem_Click(object sender, EventArgs e)
        {
            MessageBox.Show("1. Simply enter URL like this: 'yourdomain.com'.\n2. Enter a few keywords.\n3. Click File->Start.\n4. Wait till status bar at the bottem says 'complete'.","View Help");
        }
        private void creditsToolStripMenuItem_Click(object sender, EventArgs e)
        {
            MessageBox.Show("All credits go to XRiBE(me), I designed and coded this, 100%.", "Credits");
        }
        private void aboutMassBacklinkeRToolStripMenuItem_Click(object sender, EventArgs e)
        {
            MessageBox.Show("XRiBE's Mass BacklinkeR\n\nThis small utility was developed, designed, and coded by,\nXRiBE for users to be able to get upto over 2000+ Free High Quality backlinks. \n\nWe Update these backlink URL's constantly to make sure our software stays unique, and has high standards, and provides the best service possible.\n\n We use Paid Backlinks and high EDU, .GOV urls.\n We also use Pauls, and many others.\n\n XRiBe(me), will the best I can to maintain and keep this software updated, donations will motivate me to keep it more useful by implementing more features.", "About Mass BacklinkeR");
        }
    }
}
Original Source:
http://www.coderzspot.com/index.php?..._pid__9#entry9
#backlinker #mass #v101

Trending Topics