Avanti : Find Programs You To Run In Compatibility Mode

Avanti
Avanti is a useful program helps you to identify the programs you use to run in compatibility mode . All you have to do is right click and select analyze :).

Features
  • Analyze 
  • Delete
  • Refresh
Screenshots

Avanti - Analyze & And Display Program That You Set To Run In Compatibility Mode
Main Window
Avanti - Analyze & And Display Program That You Set To Run In Compatibility Mode
Options

Comathi Developer : Simple Notepad for developers

Comathi Developer : Notepad for developers

Comathi Developer is a great tool for developers . Comathi Developer does not require any installations , comes handy with many features :) .

Features

  • Supports html,html,php,js(javascript),css,vb(visual basic),cs(csharp),sln,xml,txt,rtf.
  • Preview html document in your default web browser.
  • Convert text to Upper Case, Lower Case, Binary, Alphanumeric.
  • Load source code of any website by using the website URL.
  • Zoom in and zoom out.
  • Counts characters & words.
  • Multi document(Multi tab feature).
Screenshots
Comathi Developer
Main Window
Comathi Developer
Tools
Comathi Developer
Editing HTML
Comathi Developer
                                                                             File > New,Open,Save,Save as & Exit

Requirements
  • Windows XP , Windows Vista , Windows 7 & Windows 8
  • .Net Framework 4.0 or later
Publishers

  1. Softpedia
  2. SOFT-GO
  3. Brothersoft
  4. CNET


Download Comathi Developer

Free Folder Locking Software : Rabbit Locker


Today we launch Rabbit Locker.
To keep your files / folders safe in seconds.

this will be protected by a password.
watch the video and download the app.

try to run the app as Admin just in case if you find any troubles.
just run the setup and it will install just a .exe file in the folder you want or use the default folder.
this app require internet connection for registration.
thanks.

problems questions don't wait just ask :)

i3c.

Screenshots


Main View Of App[by Softpedia]
another view of Rabbit Locker[by Softpedia]

Image Source http://www.softpedia.com/progScreenshots/Rabbit-Locker-Screenshot-222147.html

Download From Softpedia http://www.softpedia.com/get/Security/Security-Related/Rabbit-Locker.shtml

Free Messaging Client : Rabbit Messenger 2.0

Rabbit Messenger 2.0 is a free application which allows you to send fast and quick a message to your friends.

Without to use any email app. Some may think that rabbit Messenger is a chat application but its not, it even allows you to add friends to contact you. You can even send others a fast message without to be friends.

Features

  • Add Friends
  • Visit there profile
  • Control your own profile
  • Compose messages
  • Save messages into a file
  • Look who's online
  • Birthday view of your friends. and send them a sweet birthday message.
  • Give other Reputation points
  • Faster Reply to messages
  • Notification of a new message every 5 min. (standard time)
  • Complete Members List
  • Delete friends
  • Change your Online Status

Infographic : Brief History About Programming

Here is a Brief History About Programming in a form an infographic which i found while surfing over the web pages :)

brief  Programming



Click here to view the image

Google Chrome Theme For VB.NET


So everyone loves the looks of Google Chrome and wonder why not in vb.net here is a theme that looks like chrome :)

first add a class

Google Chrome Theme For VB.NET
then add these codes inside the class

How Make A PictureBox Bounce Everywhere In C#

How Make A PictureBox Bounce Everywhere In C#
Okay I think you have seen this thing in VB.NET or Visual Basic 5.0/6.0 :) so i was at my class and one of my class guy asked me how he could make a picturebox bounce everywhere in your screen so i was bulbed what i mean from bulb-ed is i got an idea , so i gave him the codes and i wanted to give you all the codes too so lets start you can use a picturebox in this program


Add a image to the picturebox and change the form property Form_BorderStyle = NONE and double and you need a timer so drag and drop one and set it's interval to 0 , now click your form and add these codes ,
        
        //Author : Mohamed Shimran
        //Blog : http://ultimateprogrammingtutorials.blogspot.com
        public Boolean top_ = true;
        public Boolean left_ = true;
        public int Speed =25;
        private void timer1_Tick(object sender, EventArgs e)
        {
            try
            {
                if (top_ == true) Form1.ActiveForm.Top += Speed; else Form1.ActiveForm.Top -= Speed;
                if (left_ == true) Form1.ActiveForm.Left += Speed; else Form1.ActiveForm.Left -= Speed;

                if (Form1.ActiveForm.Top >= Screen.PrimaryScreen.Bounds.Height - 40) top_ = false;
                if (Form1.ActiveForm.Left >= Screen.PrimaryScreen.Bounds.Width - 37) left_ = false;
                if (Form1.ActiveForm.Top < -5) top_ = true;
                if (Form1.ActiveForm.Left < -5) left_ = true;
            }
            catch
            {
                timer1.Enabled = false;
            }
        }

        private void pictureBox1_Click(object sender, EventArgs e)
        {
            timer1.Enabled = true;
        }

        private void Form1_Deactivate(object sender, EventArgs e)
        {
            timer1.Enabled = false;
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            Hide();
        }

        private void Form1_Activated(object sender, EventArgs e)
        {
            timer1.Enabled = true;
        }

now debug and see it in action

Useful Google Chrome Extensions For Developers

Useful Google Chrome Extensions For Developers

Google Chrome extensions are also known as Google Chrome apps , so today i will write down some Google Chrome extensions that are useful for developers doesn't matter web dev or software dev .


Web Developer
web developer is an extension created by chrispederick.com , it has vaious web developer tools .

Google Chrome

you can download Web Developer from here


The QR Code Generator
The QR Code Generator helps you to generate your own QR codes with text , phone numbers , URLs , SMS messages etc


Google Chrome


you can download The QR Code Generator from here


How To Make A MP3 Player In VB.NET

How To Make A MP3 Player In VB.NETSomeone requested me to write a tutorial about making a mp3 player in vb.net by the way i actually don't have time to do it but i am here to do a simple one because i don't want to deny his request or late .. first of all right click on your toolbox and select Choose Items and a window will come up move to COM tab page in that window and search for Windows Media Player when you found it tick it and click ok button .

How To Make A MP3 Player In VB.NET

Then you will see any tool in your toolbox that should be this (Windows Media Player)

How To Make A MP3 Player In VB.NET