User Profile

Collapse

Profile Sidebar

Collapse
ed5195
ed5195
Last Activity: Feb 22 '14, 09:22 AM
Joined: Oct 28 '13
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • ed5195
    started a topic need help!

    need help!

    this for loop runs a set number of times. it is used to execute a group of lines repeatedly. computing the monthly loan payment is a good demonstration for a loop. the monthly loan payment is a fixed sum that is composed of both interest and principle repayment.

    Please help me!


    Code:
    Public Class Form1
    
        Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    
        End Sub
    ...
    See more | Go to post
    Last edited by Rabbit; Nov 1 '13, 12:43 AM. Reason: Fixed code tags

  • Code:
    1.	Public Class Form1
    2.	
    3.	    Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
    4.	        End
    5.	    End Sub
    6.	
    7.	    Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
    8.	        Label1.Text = Nothing
    9.	        TextBox1.Text = Nothing
    10.	    End Sub
    11.	
    12.	    Private Sub Button1_Click(sender As Object, e As
    ...
    See more | Go to post
    Last edited by Rabbit; Oct 28 '13, 08:00 PM. Reason: Please use [CODE] and [/CODE] tags when posting code or formatted data.

    Leave a comment:


  • need help with my first "For Loop" assigment, any suggestion would really help!

    All programming languages have a loop capability. Looping is the program logic’s ability to repeat one or more lines of code either:
    1. A set number of times, a “for loop” (i.e. 10, 100, 500, 763 or more times)
    2. An “unknown” number of times (i.e. loop terminates if a tested condition becomes “true” or as long as the tested condition remains “false”), a “while” loop, a “do until” loop, a “do while” loop....
    See more | Go to post
No activity results to display
Show More
Working...