<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'multiplication table in visual basic' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'multiplication table in visual basic' posted on the 'Visual Basic' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Tue, 18 Jun 2013 00:25:28 -0700</pubDate>
    <lastBuildDate>Tue, 18 Jun 2013 00:25:28 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>multiplication table in visual basic</title>
      <link>http://www.programmersheaven.com/mb/VBasic/402600/402600/multiplication-table-in-visual-basic/</link>
      <description>Hello people&lt;br /&gt;
please can you help me out urgently i need to make a multiplication table in visual basic using a for loop that displays the entire multiplication table for example if 5 is entered into the textbox the label will display the following:&lt;br /&gt;
5 * 1 = 5&lt;br /&gt;
5 * 2 = 10&lt;br /&gt;
5 * 3 = 15&lt;br /&gt;
5 * 4 = 20&lt;br /&gt;
5 * 5 = 25&lt;br /&gt;
5 * 6 = 30&lt;br /&gt;
5 * 7 = 35&lt;br /&gt;
5 * 8 = 40&lt;br /&gt;
5 * 9 = 45&lt;br /&gt;
5 * 10 = 50&lt;br /&gt;
5 * 11 = 55&lt;br /&gt;
5 * 12 = 60&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/VBasic/402600/402600/multiplication-table-in-visual-basic/</guid>
      <pubDate>Wed, 07 Oct 2009 10:45:51 -0700</pubDate>
      <category>Visual Basic</category>
    </item>
    <item>
      <title>Re: multiplication table in visual basic</title>
      <link>http://www.programmersheaven.com/mb/VBasic/402600/409619/re-multiplication-table-in-visual-basic/#409619</link>
      <description>Please check this&lt;br /&gt;
&lt;a href="http://www.programmersheaven.com/download/44186/download.aspx"&gt;http://www.programmersheaven.com/download/44186/download.aspx&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
thanks&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/VBasic/402600/409619/re-multiplication-table-in-visual-basic/#409619</guid>
      <pubDate>Thu, 19 Nov 2009 23:20:17 -0700</pubDate>
      <category>Visual Basic</category>
    </item>
    <item>
      <title>Re: multiplication table in visual basic</title>
      <link>http://www.programmersheaven.com/mb/VBasic/402600/431062/re-multiplication-table-in-visual-basic/#431062</link>
      <description>Dim n, n1, i As Integer&lt;br /&gt;
        n = Val(TextBox1.Text)&lt;br /&gt;
        n1 = Val(TextBox2.Text)&lt;br /&gt;
&lt;br /&gt;
        For i = 1 To n1&lt;br /&gt;
            Label1.Text += n &amp;amp; " * " &amp;amp; i &amp;amp; " = "&lt;br /&gt;
            Label1.Text += i * n &amp;amp; vbNewLine &amp;amp; ""&lt;br /&gt;
        Next&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/VBasic/402600/431062/re-multiplication-table-in-visual-basic/#431062</guid>
      <pubDate>Wed, 23 Jan 2013 22:53:14 -0700</pubDate>
      <category>Visual Basic</category>
    </item>
  </channel>
</rss>