In this tutorial i'm going to tell you how to change file extensions.
Dim type As String = ".mp4"
MsgBox(TextBox1.Text + " is changed into a " + type + " file.")
Dim oldFile As String = Mid(TextBox1.Text, 1, Len(TextBox1.Text) -...
Home » Archives for November 2012
How To Make Fade Effect In VB.NET

fade in / out , fade in when your app starts and fade out when your app getting closed .
you just need to add these codes , fade in for form_load and fade out for form_closing.
Public Class Form1
Private Sub Form1_FormClosing(ByVal sender As Object,...
How To Get The Source Code Of A Website Using Web Browser And HttpWebRequest In VB.NET
this is going to be a simple tutorial , there are two ways to get the source code of a website in vb.net you know what are they so lets start making them
Web Browser
1.open your visual basic 2008/2010
2.create a new project and name it whatever
3.add...
How To Get IP Address From Host Name In VB.NET
This tutorial is about coding a Host To IP Address Program , how this works ? this finds the ip address of the host or i can say it converts the domain name to ip address so lets begin making this
1.open your visual basic 2008/2010
2.create a new...
How To Make A Credit Card Determiner In VB.NET
Today, we are going to make a Credit Card Determiner in VB.NET.
First if all open your Visual Studio or Visual Basic, create a new Project, add two text boxes & a button, change the button text property to check or whatever you want.
I recommend...
How To Delete/Copy/Move A File In VB.NET
Deleting A File
Deleting a file is pretty easy , to delete a file you can use the delete method of System.IO
Dim DeleteFile As String
DeleteFile = "C:/users/shim/desktop/test.png"
If System.IO.File.Exists(DeleteFile) = True...
How To Make A CPU Performance Meter In VB.NET
just thought to write this , this tutorial is about making a cpu performance meter in vb.net so lets get started
1.open visual basic 2008/2010
2.create a new project and name it whatever you want
3.now if you want to change the form text property...
How To Make A Loan Calculator In VB.NET
this tutorial is about making a loan calculator its just a simple one so you dont have to waste alot time to make it so lets get started
1.open your visual basic 2008/2010
2.make a new project and name it whatever you want
3.add 4 labels and change...
How To Make A Simple Task Manager In VB.NET
this tutorial is about making a simple task manager in vb.net . lets get started
1.open visual basic 2008/2010
2.create a new project and name it whatever you want
3.add a listbox
4.add two buttons
5.change the text property of the two buttons...
How To Make Scrolling Text In Textbox And Label In VB.NET
this is a good snippet and this will be very useful for you , lets start
1.open visual basic 2008/2010
2. create a new project
3. add a textbox and a timer
4. enable the timer
5.write something in the textbox (textbox1 > properties...
How To Make A Application Launcher In VB.NET
this is a simple thing this works like run which you can find on windows xp,windows vista,windows 7,etc
you can use this to open programs,folders,documents and website etc
so lets get started
1. open visual basic 2008/2010
2. create a...
How To Make A Simple Web Browser In C#
This is my first c# tutorial and its about making a web browser . this web browser doesnt have advanced controls this is just a simple one
lets begin making a simple web browser
1. open your visual c# 2008/2010
2.create a new project and name it whatever...
How To Make A Drop-Down Effect In VB.NET
oh after a little bit time i am here to write a tutorial i am glad about it , this tutorial is about making a drop down effect in visual basic . net its pretty simple , lets make it
1 .open your most favorite visual studio 2008/2010
2 . create...
How To Make A Sharecash Mirror Link Creator In VB.NET
in
sharecash mirror link creator,
tutorial,
vb.net
- By
Mohamed Shimran
- on 11/05/2012
- No comments
sharecash is a best PPD (pay per download) website where you upload your files and get paid for downloads now you gonna learn how to make a sharecash mirror link creator in vb.net its pretty easy but its very useful it works like this for example...
How To Use Themes In VB.NET : Using Ghost Theme
today i am up with a small thing i know all of you hate the windows GUI so i have decided to write here how to use themes in vb.net nowadays many programmers make themes and release them on the internet ok lets get started
just open your favourite visual...