Home » All posts
Comathi Developer : Simple 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).
Main Window |
Tools |
Editing HTML |
File > New,Open,Save,Save as & Exit Requirements
|
Free Folder Locking Software : Rabbit Locker
in
app,
rabbit,
review,
science and technology,
security,
software
- By
Mohamed Shimran
- on 6/03/2013
- 5 comments
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.
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
in
c#,
c++,
c++/c,
html/php,
infographic,
java,
java programming,
php,
programming,
python,
ruby,
vb.net
- By
Mohamed Shimran
- on 6/03/2013
- No comments
Here is a Brief History About Programming in a form an infographic which i found while surfing over the web pages :)
Click here to view the image
Click here to view the image
Labels:
c#,
c++,
c++/c,
html/php,
infographic,
java,
java programming,
php,
programming,
python,
ruby,
vb.net
Google Chrome Theme For VB.NET
first add a class
then add these codes inside the class
How Make A PictureBox Bounce Everywhere In C#
in
balls,
bounce,
c#,
picturebox,
pictures,
tutorial
- By
Mohamed Shimran
- on 5/29/2013
- 3 comments
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 ,
now debug and see it in action
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
in
best google chrome extensions,
Chrome,
chrome extension,
chrome extensions,
Google,
google chrome,
google chrome beta,
google chrome extension,
google chrome frame,
how to use google chrome extensions
- By
Mohamed Shimran
- on 5/26/2013
- 4 comments
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 .
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
you can download The QR Code Generator from here
How To Make A MP3 Player In VB.NET
Someone 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 .
Then you will see any tool in your toolbox that should be this (Windows Media Player)