{"id":4218,"date":"2014-01-07T15:33:03","date_gmt":"2014-01-07T07:33:03","guid":{"rendered":"http:\/\/www.vbtutor.net\/?page_id=4218"},"modified":"2018-06-23T12:35:13","modified_gmt":"2018-06-23T04:35:13","slug":"visual-basic-2013-lesson-6-working-with-list-box-and-combo-box","status":"publish","type":"page","link":"https:\/\/www.vbtutor.net\/index.php\/visual-basic-2013-lesson-6-working-with-list-box-and-combo-box\/","title":{"rendered":"Visual Basic 2013 Lesson 6:  List Box and Combo Box"},"content":{"rendered":"<h4 style=\"text-align: center;\"><a href=\"http:\/\/www.vbtutor.net\/index.php\/working-with-controls\/\">[Lesson 5] <\/a>&lt;&lt; <a href=\"http:\/\/www.vbtutor.net\/index.php\/visual-basic-2013-tutorial\/\">[Contents]<\/a> &gt;&gt; <a href=\"http:\/\/www.vbtutor.net\/index.php\/visual-basic-2013-lesson-7-displaying-images-with-the-picture-box\/\">[Lesson 7]<\/a><\/h4>\n<p>In the previous lesson, we have learned the usage of text boxes and labels. In this lesson, we shall learn to work with the list box and the combo box. Both controls are used to display a list of items. However, they differ slightly in the ways they display the items. The list box displays the items all at once in a text area. On the other hand, the combo box displays only one item initially; the user needs to click on the handle of the combo box to view the rest of the items in a drop-down list.<\/p>\n<h3>6.1 The List Box<\/h3>\n<p>The List Box is to present a list of items where the user can click and select the items from the list.\u00a0<span style=\"font-size: 1rem;\">\u00a0<\/span><span style=\"font-size: 1rem;\">Items can be added at design time or\u00a0at runtime. The items can also be deleted\u00a0at design time or\u00a0at runtime.<\/span><\/p>\n<h4>6.1.1 Adding Items to a List Box<\/h4>\n<p><span style=\"font-size: 1rem;\">To add items at design time, start a new project and insert a list box on the form. Right-click on the list box to access the properties window. Next, click on collection of the Item property to bring up the String Collection Editor. Now, enter the items in the editor as shown in Figure 6.1:<\/span><\/p>\n<p><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script><br \/>\n<ins class=\"adsbygoogle\" style=\"display: block; text-align: center;\" data-ad-layout=\"in-article\" data-ad-format=\"fluid\" data-ad-client=\"ca-pub-3033628290023372\" data-ad-slot=\"3914691604\"><\/ins><br \/>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script><br \/>\n<a href=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.1.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4231\" src=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.1.jpg\" alt=\"vb2013_figure6.1\" width=\"570\" height=\"363\" \/><\/a><br \/>\n<strong>Figure 6.1: String Collection Editor\u00a0<\/strong><\/p>\n<p>After clicking on the OK button, the items will be displayed in the text box, as shown in Figure 6.2<\/p>\n<p><a href=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.2.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4234\" src=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.2.jpg\" alt=\"vb2013_figure6.2\" width=\"300\" height=\"300\" \/><\/a><strong>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 Figure 6.2<\/strong><br \/>\n<script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script><br \/>\n<ins class=\"adsbygoogle\" style=\"display: block; text-align: center;\" data-ad-layout=\"in-article\" data-ad-format=\"fluid\" data-ad-client=\"ca-pub-3033628290023372\" data-ad-slot=\"3914691604\"><\/ins><br \/>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script><br \/>\n<span style=\"font-size: 1rem;\">*Items can also be\u00a0<\/span><span style=\"line-height: 1.714285714; font-size: 1rem;\">added at runtime using the\u00a0<\/span><b style=\"line-height: 1.714285714; font-size: 1rem;\">Add( ) method<\/b><span style=\"line-height: 1.714285714; font-size: 1rem;\">. <\/span><\/p>\n<p><span style=\"line-height: 1.714285714; font-size: 1rem;\">Before proceeding further, we need to know that Visual Basic 2013 is an\u00a0object-oriented programming language. Therefore, visual basic 2013 comprises objects. All objects have methods and properties, they are differentiated and connected by the hierarchy. For a list box, an Item is an object subordinated to the object ListBox. An Item comprises a method called <strong>Add()<\/strong> that is used to add items to the list box. To add an item to a list box, you can use the following syntax:<\/span><\/p>\n<p><strong>ListBox.Item.Add(&#8220;Text&#8221;)<\/strong><\/p>\n<p>For example, if you wish to add a new item to ListBox1 above, you can use\u00a0the following statement<\/p>\n<pre style=\"font-size: 110%;\">Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click\r\n ListBox1.Items.Add(\"Nokia\")\r\nEnd Sub\r\n<\/pre>\n<p>The item &#8220;Nokia&#8221; will be added to the end of the list, as shown in Figure 6.3<\/p>\n<p><a href=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.3.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4237\" src=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.3.jpg\" alt=\"vb2013_figure6.3\" width=\"300\" height=\"300\" \/><\/a><\/p>\n<p style=\"text-align: center;\"><strong>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 Figure 6.3\u00a0<\/strong><\/p>\n<p>You can also let\u00a0the user add their own items using the<strong> InputBox<\/strong> function, as follows:<\/p>\n<pre style=\"font-size: 110%;\">Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click\r\nDim myitem\r\n myitem = InputBox(\"Enter your Item\")\r\n ListBox1.Items.Add(myitem)\r\nEnd Sub\r\n<\/pre>\n<p>* The keyword <strong>Dim<\/strong> is to declare the variable myitem. You will learn more about variables in coming lessons<\/p>\n<h4>6.1.2 Removing Items from a List Box<\/h4>\n<p>To remove items at design time, simply open the String Collection Editor and delete the items line by line or all at once using the Delete key.<\/p>\n<p>To remove the items at runtime, use the <strong>Remove<\/strong> method, as illustrated in the following example. In this example, add a second button and label it &#8220;Remove Items&#8221;. Click on this button and enter the following code:<\/p>\n<pre style=\"font-size: 110%;\">Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click\r\n ListBox1.Items.Remove(\"Ipad\")\r\nEnd Sub\r\n<\/pre>\n<p>The item &#8220;Ipad&#8221; will be removed after running the program. You can also let the user choose which item to delete.<\/p>\n<p>To clear all the items at once, use the clear method, as illustrated in the following example. In this example, add a button and label it &#8220;Clear Items&#8221;<\/p>\n<pre style=\"font-size: 110%;\">Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button2.Click\r\n ListBox1.Items.Clear()\r\nEnd Sub\r\n<\/pre>\n<h3>\u00a06.2 Combo Box<\/h3>\n<p>In Visual Basic 2013, the function of the Combo Box is also to present a list of items where the user can click and select the items from the list. However, the user needs to click on the handle(small arrowhead) on the right of the combo box to see the items which are presented in a drop-down list.<\/p>\n<h4>6.2.1 Adding Items to a Combo Box<\/h4>\n<p>To add items to the list at design time, you can also use the String Collection Editor. You will also need to type an item under the text property in order to display the default item at runtime.<\/p>\n<p><a href=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.1.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4231\" src=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.1.jpg\" alt=\"vb2013_figure6.1\" width=\"570\" height=\"363\" \/><\/a><\/p>\n<p style=\"text-align: center;\">\u00a0<strong>Figure 6.4\u00a0<\/strong><\/p>\n<p><a href=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.4.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4243\" src=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.4.jpg\" alt=\"vb2013_figure6.4\" width=\"300\" height=\"300\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<p style=\"text-align: center;\"><strong>Figure 6.5<\/strong><\/p>\n<p>&nbsp;<\/p>\n<p>After clicking the handle of the right side of the combo box, the user will be able to view all the items.<\/p>\n<p><a href=\"http:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.5.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4245\" src=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.5.jpg\" alt=\"vb2013_figure6.5\" width=\"300\" height=\"300\" \/><\/a><\/p>\n<p style=\"text-align: center;\">\u00a0<strong>\u00a0 Figure 6.6<\/strong><\/p>\n<p>Besides, you may add items using the\u00a0<b>Add() method<\/b>. For example, if you wish to add a number of items to Combo box 1, you can use\u00a0the following statement<\/p>\n<p>Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click<br \/>\nComboBox1.Items.Add(&#8220;Nokia&#8221;)<br \/>\nEnd Sub<\/p>\n<p style=\"text-align: center;\"><a href=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.6.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4246\" src=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.6.jpg\" alt=\"vb2013_figure6.6\" width=\"300\" height=\"300\" \/><\/a><strong>\u00a0Figure 6.7<\/strong><\/p>\n<p>You can also allow the user to add their own items using the InputBox function, as follows:<\/p>\n<pre style=\"font-size: 110%;\">Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click\r\nDim myitem\r\n myitem = InputBox(\"Enter your Item\")\r\n ComboBox1.Items.Add(myitem)\r\nEnd Sub\r\n<\/pre>\n<h4>6.2.2 Removing Items from a Combo Box<\/h4>\n<p>To remove items at design time, simply open the String Collection Editor and delete the items line by line or all at once using the Delete key.<\/p>\n<p>To remove the items at runtime, use the\u00a0<strong>Remove<\/strong>\u00a0method, as illustrated in the following example. In this example, add a second button and label it &#8220;Remove Items&#8221;. Click on this button and enter the following code:<\/p>\n<pre style=\"font-size: 110%;\">Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click\r\n ComboBox1.Items.Remove(\"Ipad\")\r\nEnd Sub\r\n<\/pre>\n<p>The item &#8220;Ipad&#8221; will be removed after running the program. You can also let the user choose which item to delete.<\/p>\n<p>To clear all the items at once, use the <strong>clear<\/strong> method, as illustrated in the following example. In this example, add a button and label it &#8220;Clear Items&#8221;<\/p>\n<pre style=\"font-size: 110%;\">Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button2.Click\r\n ComboBox1.Items.Clear()\r\nEnd Sub\r\n<\/pre>\n<div><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script><br \/>\n<ins class=\"adsbygoogle\" style=\"display: block;\" data-ad-format=\"autorelaxed\" data-ad-client=\"ca-pub-3033628290023372\" data-ad-slot=\"2306771905\"><\/ins><br \/>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script><\/div>\n<h4 style=\"text-align: center;\"><a href=\"http:\/\/www.vbtutor.net\/index.php\/working-with-controls\/\">[Lesson 5]\u00a0<\/a>&lt;&lt;\u00a0<a href=\"http:\/\/www.vbtutor.net\/index.php\/visual-basic-2013-tutorial\/\">[Contents]<\/a>\u00a0&gt;&gt; <a href=\"http:\/\/www.vbtutor.net\/index.php\/visual-basic-2013-lesson-7-displaying-images-with-the-picture-box\/\">[Lesson 7]<\/a><\/h4>\n","protected":false},"excerpt":{"rendered":"<p>[Lesson 5] &lt;&lt; [Contents] &gt;&gt; [Lesson 7] In the previous lesson, we have learned the usage of text boxes and labels. In this lesson, we shall learn to work with the list box and the combo box. Both controls are used to display a list of items. However, they differ slightly in the ways they &hellip; <a href=\"https:\/\/www.vbtutor.net\/index.php\/visual-basic-2013-lesson-6-working-with-list-box-and-combo-box\/\" class=\"more-link\">Continue reading <span class=\"screen-reader-text\">Visual Basic 2013 Lesson 6:  List Box and Combo Box<\/span><\/a><\/p>\n","protected":false},"author":23013,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"categories":[],"tags":[],"class_list":["post-4218","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Visual Basic 2013 Lesson 6: List Box and Combo Box - Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB<\/title>\n<meta name=\"description\" content=\"This article discusses the usage of list box and combo box in visual basic 2013\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/www.vbtutor.net\/vb2013\/vb2013_lesson6.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Visual Basic 2013 Lesson 6: List Box and Combo Box - Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB\" \/>\n<meta property=\"og:description\" content=\"This article discusses the usage of list box and combo box in visual basic 2013\" \/>\n<meta property=\"og:url\" content=\"http:\/\/www.vbtutor.net\/vb2013\/vb2013_lesson6.html\" \/>\n<meta property=\"og:site_name\" content=\"Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Vbtutor\" \/>\n<meta property=\"article:modified_time\" content=\"2018-06-23T04:35:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.1.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@liewvk\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.vbtutor.net\/index.php\/visual-basic-2013-lesson-6-working-with-list-box-and-combo-box\/\",\"url\":\"http:\/\/www.vbtutor.net\/vb2013\/vb2013_lesson6.html\",\"name\":\"Visual Basic 2013 Lesson 6: List Box and Combo Box - Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB\",\"isPartOf\":{\"@id\":\"https:\/\/www.vbtutor.net\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/www.vbtutor.net\/vb2013\/vb2013_lesson6.html#primaryimage\"},\"image\":{\"@id\":\"http:\/\/www.vbtutor.net\/vb2013\/vb2013_lesson6.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.1.jpg\",\"datePublished\":\"2014-01-07T07:33:03+00:00\",\"dateModified\":\"2018-06-23T04:35:13+00:00\",\"description\":\"This article discusses the usage of list box and combo box in visual basic 2013\",\"breadcrumb\":{\"@id\":\"http:\/\/www.vbtutor.net\/vb2013\/vb2013_lesson6.html#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/www.vbtutor.net\/vb2013\/vb2013_lesson6.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/www.vbtutor.net\/vb2013\/vb2013_lesson6.html#primaryimage\",\"url\":\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.1.jpg\",\"contentUrl\":\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.1.jpg\",\"width\":570,\"height\":363},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/www.vbtutor.net\/vb2013\/vb2013_lesson6.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.vbtutor.net\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Visual Basic 2013 Lesson 6: List Box and Combo Box\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.vbtutor.net\/#website\",\"url\":\"https:\/\/www.vbtutor.net\/\",\"name\":\"Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB\",\"description\":\"Start learning Visual Basic from beginner to advanced. Includes VB.NET, VBA, and classic VB tutorials for students and professionals.\",\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Visual Basic 2013 Lesson 6: List Box and Combo Box - Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB","description":"This article discusses the usage of list box and combo box in visual basic 2013","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"http:\/\/www.vbtutor.net\/vb2013\/vb2013_lesson6.html","og_locale":"en_US","og_type":"article","og_title":"Visual Basic 2013 Lesson 6: List Box and Combo Box - Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB","og_description":"This article discusses the usage of list box and combo box in visual basic 2013","og_url":"http:\/\/www.vbtutor.net\/vb2013\/vb2013_lesson6.html","og_site_name":"Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB","article_publisher":"https:\/\/www.facebook.com\/Vbtutor","article_modified_time":"2018-06-23T04:35:13+00:00","og_image":[{"url":"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.1.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_site":"@liewvk","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.vbtutor.net\/index.php\/visual-basic-2013-lesson-6-working-with-list-box-and-combo-box\/","url":"http:\/\/www.vbtutor.net\/vb2013\/vb2013_lesson6.html","name":"Visual Basic 2013 Lesson 6: List Box and Combo Box - Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB","isPartOf":{"@id":"https:\/\/www.vbtutor.net\/#website"},"primaryImageOfPage":{"@id":"http:\/\/www.vbtutor.net\/vb2013\/vb2013_lesson6.html#primaryimage"},"image":{"@id":"http:\/\/www.vbtutor.net\/vb2013\/vb2013_lesson6.html#primaryimage"},"thumbnailUrl":"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.1.jpg","datePublished":"2014-01-07T07:33:03+00:00","dateModified":"2018-06-23T04:35:13+00:00","description":"This article discusses the usage of list box and combo box in visual basic 2013","breadcrumb":{"@id":"http:\/\/www.vbtutor.net\/vb2013\/vb2013_lesson6.html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/www.vbtutor.net\/vb2013\/vb2013_lesson6.html"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/www.vbtutor.net\/vb2013\/vb2013_lesson6.html#primaryimage","url":"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.1.jpg","contentUrl":"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2014\/01\/vb2013_figure6.1.jpg","width":570,"height":363},{"@type":"BreadcrumbList","@id":"http:\/\/www.vbtutor.net\/vb2013\/vb2013_lesson6.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.vbtutor.net\/"},{"@type":"ListItem","position":2,"name":"Visual Basic 2013 Lesson 6: List Box and Combo Box"}]},{"@type":"WebSite","@id":"https:\/\/www.vbtutor.net\/#website","url":"https:\/\/www.vbtutor.net\/","name":"Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB","description":"Start learning Visual Basic from beginner to advanced. Includes VB.NET, VBA, and classic VB tutorials for students and professionals.","inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/pages\/4218","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/users\/23013"}],"replies":[{"embeddable":true,"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/comments?post=4218"}],"version-history":[{"count":69,"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/pages\/4218\/revisions"}],"predecessor-version":[{"id":13062,"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/pages\/4218\/revisions\/13062"}],"wp:attachment":[{"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/media?parent=4218"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/categories?post=4218"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/tags?post=4218"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}