Visual Basic 6.0

Description

Visual Basic (VB) is the third-generation event-driven programming language and associated development environment (IDE) from Microsoft for its COM programming model.

election program

Submitted by benson wangombe on
a program to accumulate votes in an election. 4 candidates, use an array of 0-3 to accumulate votes , if a voter keys in a no larger than the no of candidates its stored in spoilt voter variable. at the end a special key 9876 stops any further voting and prints the result.

Room Scheduling System w/ Graphical mapping

Submitted by itachi_philip on
This System is created by one of our instructor... This is a Delphi version.... And i have a VB version for this one... with a very similar GUI on that sample file... if you are interested for that one... then you need.... it only cost a little, not too expensive... or simple its for sale..... "WHEN YOU ARE GOOD AT SOMETHING NEVER DO IT FOR FREE"

HELP PO about Insering Postfix in a Stack with GUI.

Submitted by xerraneilz on
Write a program that accepts a postfix notation keyed into a text field when a button labeled “push” is pressed. A button labeled “pop” causes the item to be popped and displayed in the text field. ganito po yun, meron kang textbox sa taas, tapos PUSH at POP buttons sa ilalim. enter ka ng POSTFIX notation sa textbox. yung postfix notation is nasa huli yung operator. ( 5 5 + )

I need help "Overflow" binary to decimal converter

Submitted by levin on

Option Explicit

Private Function DecToBin(ByVal x As Long) As String
Dim Y As Long
Dim Num As String

While (x \ 2) > 0
    Y = x \ 2
    If x > 1 Then
    Num = Val(x - (Y * 2)) & Num
    End If
    x = Y
Wend
Num = x & Num
DecToBin = Num
End Function
Private Function Pow(Number As Long, Power As Integer) As Long
Dim x As Integer
If Power > 1 Then
For x = 2 To Power
Number = Number * 2
Next
Pow = Number