i had a problem so i found a way to solve it i wanted to share it with you all so if you have two textboxes and if you want to check if both are blank use this code
Home » All posts
How To Make A Image Slider With PHP/HTML And Jquary
this is something very cool by the way we gonna make it with some simple jquery ok now follow the steps
first open your php editor and make a new php file now add the css style and save it as SlideShow.php
first open your php editor and make a new php file now add the css style and save it as SlideShow.php
How To Switch Off Your LCD Monitor With VB.NET
this is something very cool , this will switch off your monitor i tested this on LCD so just you can add a button and double click the form and erase everything and add this and try it out
How to Create a Custom Button Control in VB.NET
Reusable classes and controls are a very important part of any object-oriented programming language. More so is the ability to create your own controls or customize existing ones. In this tutorial, we'll learn how to create a custom button using the pre-existing Button class.
Firstly, as for any VB.NET project, launch Microsoft Visual Basic or Microsoft Visual Studio. From the start menu, select "New Project", then "Class Library" from the dialog. Name your project and confirm.
Firstly, as for any VB.NET project, launch Microsoft Visual Basic or Microsoft Visual Studio. From the start menu, select "New Project", then "Class Library" from the dialog. Name your project and confirm.
How To Make A Tabbed WebBrowser In VB.NET
this is going to be very good , i will teach you to make a advanced web browser in vb.net . just create a new project
add a webbrowser and set the webbrowser behind the form
now add this codes i mean just erase everything and add this
drag and drop 7 buttons from the toolbox and change the text property as below
button1-back
button2-forward
button3-refresh
button4-stop
button5-go
button6-add tab
button7-close tab
add a textbox
now add a tabcontrol from toolbox and delete all the tabpages(tabpage1>tabpage2))
like this
add a webbrowser and set the webbrowser behind the form
now add this codes i mean just erase everything and add this
How To Make Web Browser Using GeckoFX In VB.NET
gecko is firefox . we're going to make a fastest web browser using gecko firefox , i will tech you the basics only ok lets get started
first of all download this archive - download
finish downloading and extract the archive in c drive just extract it dont do anything and now create a new project and when form loaded right click in toolbox and select choose items
Window State In VB.NET
there are three window states , they are Minimize,Maximize,Normal so we can do them with code easily you can add 3 button and you can change the text properties to Minimize,Maximize,Normal and add the codes to them
How To Clean Recycle Bin Using VB.NET
this is simple snippet , i am using a function to do this work ok now add this functions and a sub included
How To Get Local IP In C#
this is a simple code to get the local ip on c# first add imports system.net; namespace and add this sub
//Author : Mohamed Shimran //Blog : http://www.ultimateprogrammingtutorials.blogspot.com public string GetIp() { System.Net.IPAddress[] IP = System.Net.Dns.GetHostAddresses(System.Net.Dns.GetHostName()); for (int n = 0; n < IP.Length; n++) { return IP[n].ToString(); } }now you can add this code to a click event or any other events to get the ip address