Posts

What is Web Hosting?

    What is Web Hosting? A web hosting service is a type of Internet hosting service that allows individuals and organizations to make their website accessible via the World Wide Web(www).  How Does Web Hosting Work? When you want to start a business in the real world, you need a physical location to set up, store, and sell your products. The same rules apply in the digital world when setting up a website. When you set up an online business, you have a series of files, images, and HTML code that make up your website. These files take up space and need a place to live. Without an online home, your files would just sit on your computer and no one would ever see them. A hosting provider will provide a place on a webserver to store all of your files and are responsible for delivering the files of your website as soon as a browser makes a request by typing in your domain name. When you pay for hosting services, you are simply renting storage space on the internet — just like y...

Validate Mobile Number in Java Using Netbeans with Source Code

Image
Validate Mobile Number in Java Using Netbeans with Source Code *** Source Code *** private void jButton2ActionPerformed(java.awt.event.ActionEvent evt)     {                                                     String contact = jTextField1.getText();               if(contact.length()==10)                  {               JOptionPane.showMessageDialog(null,"submitedd");                 }             else                {              JOptionPane.showMessageDialog(null,"Please check your phone number and try again");               }     }  mor...

Hide and Show Password in Java using Netbeans with Source Code

Image
  Hide and Show Password in Java using Netbeans with Source Code   private void jCheckBox1ActionPerformed(java.awt.event.ActionEvent evt)      {                                                   if(jCheckBox1.isSelected())            {          jPasswordField1.setEchoChar((char)0);             }        else           {         jPasswordField1.setEchoChar('*');           }      }            more details    

How to make Splash Screen in Java using Netbeans with Source Code

Image
  How to make Splash Screen in Java using Netbeans with Source Code *** Source Code ***   public static void main(String[] args)       {           loading l =new loading();           l.setVisible(true);           main m= new main();           m.setVisible(false);                      try                    {                 for(int x=0;x<=100;x++)                       {               Thread.sleep(110);               l.jLabel1.setText(Integer.toString(x)+"%");               l.jProgressBar1.setValue(x);                ...

How to Remove Title bar in Java Netbeans ( JFrame )

Image
  How to Remove Title bar in Java Netbeans ( JFrame ) more details

How to make Custom java menu using Netbeans with Source Code

Image
    How to make Custom java menu using Netbeans with Source Code more details

How to add Background image in Jframe Form in Java using Netbeans

Image
  How to add Background image in Jframe Form in Java using Netbeans    more details