Visual basic

Edition of visual basic:--

1. Learning edition:-  इस edition का use learning purpose के उद्देश्य से किया जाया है |                                     ex. :-  student 

=> इसमें database facility की सुविधा available नहीं होती है | और इसका use development में नहीं किया जा सकता | 

2. Professional edition:-  इस edition का use Visual basic professional द्वारा stand alone software develop करने के लिए किया जाता है | 

=>  इसका use distributed application development में भी किया जाता है | 

=>  ये edition active control को support नहीं करता है | 

3. Enterprise edition:- इस edition का use distributed application development के लिए किया जाता है | इसमें learning और profession दोनों edition के गुण|  available रहते है | 

=>  यह active  control को भी support करता है | 

Program :-- program for creating login ID . 

Design :--  Controls  ( command box , textbox , label  )
       
Label 1 ------> caption ------>Enter name 
Label 2 ------>caption ------->Enter password 
Text 1 -------->Text--------->Clear 
Text 2 --------->Text -------->Clear 
Command 1 ------>Caption ------>Login 

      Coding :----

            private sub command 1 _click ()
           if test 1 .text ="Hariom " AND                                 text 2 .  text ="123 "    Then   
               msgbox "welcome "
             else
            Msgbox "invalid  user "
         end sub 

Output :----

          
             

Comments