Skip to main content

Posts

Can I create tab control in vb.net without using toolbox control?

First we create a form in vb and we are going to add a tab by coding. Code is Here tab is created when form loads..... the output is as follows.. Now we can add some controls to each tab. in tab page1 a text box in tab page2 a combobox in tab page3 a listbox in tabpage4 a button. The code is The output is as follows
Recent posts

Is there any direct bus from Kannur to Madikeri?

KANNUR -MADIKERI  Via Mattannur, Iritty, Koottupuzha, Virajpet TIMINGS Stop Depart            KANNUR BS (KNR) 11:00:00 MATTANNUR 11:55:00 ULLIYIL 12:10:00 IRITTY 12:20:00 VALLITHODE 12:50:00 KOOTTUPUZHA 13:00:00 VIRAJPET 14:15:00   MADIKERI 15:45:00   Reffered on https://www.aanavandi.com/search/route/id/17748/destination/352 Question asked on quora.com

What are the properties of TextBox in Visual Basic?

         VB.Net - TextBox Control Text box controls allow entering text on a form at runtime. By default, it takes a single line of text, however, you can make it accept multiple texts and even add scroll bars to it. Let's create a text box by dragging a Text Box control from the Toolbox and dropping it on the form.     The Properties of the TextBox Control The following are some of the commonly used properties of the TextBox control − Sr.No. Property & Description 1 AcceptsReturn Gets or sets a value indicating whether pressing ENTER in a multiline TextBox control creates a new line of text in the control or activates the default button for the form. 2 AutoCompleteCustomSource Gets or sets a custom System.Collections.Specialized.StringCollection to use when the AutoCompleteSourceproperty is set to CustomSource. 3 AutoCompleteMode Gets or sets an option that controls how automatic compl...

What is debugging in VB?

Breakpoints and Debugging Tools Actually bugs or errors are of two types. They are logic and syntax errors. In VB.net syntax errors are notified by the interpreter while trying to run the program.  In VB breakpoints are used to understand the logic errors in our program.  Now we can look into Breakpoints and its concepts.   VB NET Breakpoints A breakpoint is like a note to VB.NET to stop your programme at a particular place. You add one to your code by clicking in the margins. A brown circled then appears, indicating where the code will break. The following two images show how to add one:                    When you click in the margins, to the left of a line of code, a brown circle appears:                                          No...

How do I pass values from textbox in one form to listbox of another form in vb.net?

Consider the TextBox1 is in Form1 ListBox1 in Form2. If the event is Button click then the code will be Form2.ListBox1.Items.add(TextBox1.text) First you design GUI as Then create second form as Then code  as follows If you want an Example Vb.net project of this problem  Click the below link                                 DOWNLOAD             

What are the uses of VB.net?

Visual Basic... A name everybody knows for a rich, easy and GUI based programming language, making each & every task easier and improves programmer's productivity. VB has won the best RAD ( Rapid Application Development ) Tool award for three times and still keeping itself at top. Microsoft first started Visual Basic in early 1990s and the project name was "Thunder". After the launch of VB 5.0, it crosses all the boundaries and won the best RAD Tool award by beating PowerBuilder in 1998. VB 5.0 came out with some great enhancements but definitely this time VB.NET has come with revolutionary changes to make it suitable for next generation of application development.  Many developers today talk about new generation programming languages and don't count VB 6.0 as a powerful tool for developing good programs, but i would like to present the surprising data about VB developers given by Bill Gates(The founder and chief software architect of M...

How do I create a child form in VB.NET?

STEP 1: CREATE A SIMPLE FORM   STEP 2: IF YOU HAVE AN MDI CONTAINER PARENT FORM THEN YOU CAN SIMPLY MAKE THIS FORM AS THE PARENT OF FORM YOU HAVE PREVIOUSLY ADDED. THE CODE is  'IF Child form of name Form1 then in Form load event you have to write the following code Form1.mdiparent=mdiformname if you have no mdi container you can make another form called Form2 and make the Form1 as child of Form2 as .. Form1.parent=Form2 asked on Quora