Part of the Khronos Group
OpenGL.org

The Industry's Foundation for High Performance Graphics

from games to virtual reality, mobile phones to supercomputers

Results 1 to 3 of 3

Thread: questions for visual basic

  1. #1
    Junior Member Newbie
    Join Date
    Sep 2003
    Location
    Kigali;Rwanda
    Posts
    1

    questions for visual basic

    Q1. a.What are the different ways to start a Visul Basic application?
    b.What is an IDE?
    c.What are properties,events and methods?

    Q.2 .a. What are the advantages of using coding conventions?
    b.Distinguish between determinate and indeterminate loops with example?

    Q.3 What are the data types in Visual Basic?

    Q.4 Why do we make comments on the program?Comment each line of the following program and give the program output.
    Option Explicit
    Dim number()
    Dim big As Integer
    Dim cnt As Integer

    Private Sub CmdClick_Click()
    number=Array(17,18,19,15250,187)
    big= number(0)
    For cnt=1To4
    If big<number(cnt)Then
    big =number(cnt)
    End If
    Next cnt
    LblNumbers=number(0)&","& number(1)&","& number(2)&","& number(3))&","& number(4)
    LblGreastest=big

    End Sub

    Q5. Explain the most common events in programming in Visual Basic associeted with
    a. Mouse
    b. Keyboard

  2. #2
    Guest

    Re: questions for visual basic

    Q6. Why dont you do your homework yourself?

    Besides, your are asking at the wrong place anyway.

  3. #3
    Intern Contributor
    Join Date
    Sep 2003
    Posts
    60

    Re: questions for visual basic

    Originally posted by Your teacher:
    Q6. Why dont you do your homework yourself?

    Besides, your are asking at the wrong place anyway.

    LOL!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •