Technology and Online Community For All
welcome JOIN US NOW AND FEEL THE DIFFERENCE headbang
Technology and Online Community For All
welcome JOIN US NOW AND FEEL THE DIFFERENCE headbang
Technology and Online Community For All
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Technology and Online Community For All

What You See Is What You Get
 
HomeGalleryLatest imagesSearchRegisterLog in
May 2024
SunMonTueWedThuFriSat
   1234
567891011
12131415161718
19202122232425
262728293031 
CalendarCalendar
Latest topics
» Uniblue PowerSuite
RSC for Talking Calculator Icon_minitimeMon Apr 09, 2012 7:27 pm by BlitzKrieG

» Ova Drive Hider
RSC for Talking Calculator Icon_minitimeFri Mar 02, 2012 8:48 am by CodeWarrior

» Ova Folder Security
RSC for Talking Calculator Icon_minitimeMon Feb 27, 2012 5:06 pm by CodeWarrior

» SPSBox
RSC for Talking Calculator Icon_minitimeSun Feb 26, 2012 4:24 am by CodeWarrior

» Norton [all here]
RSC for Talking Calculator Icon_minitimeThu Feb 23, 2012 8:01 am by BlitzKrieG

» OvaSystemSolution CVRS System
RSC for Talking Calculator Icon_minitimeSat Feb 18, 2012 6:06 am by CodeWarrior

» Avril Lavigne - Smile
RSC for Talking Calculator Icon_minitimeSat Jan 28, 2012 7:14 am by ^PiNKHeRMioNe

» Hot N Cold- Katy Perry
RSC for Talking Calculator Icon_minitimeSat Jan 28, 2012 7:11 am by ^PiNKHeRMioNe

» America's next top model (All Stars) Lisa D'Amato
RSC for Talking Calculator Icon_minitimeSat Jan 28, 2012 6:55 am by ^PiNKHeRMioNe

Search
 
 

Display results as :
 
Rechercher Advanced Search
Who is online?
In total there are 2 users online :: 0 Registered, 0 Hidden and 2 Guests

None

Most users ever online was 265 on Wed Sep 22, 2021 9:02 pm
Top posters
trekyboy
RSC for Talking Calculator Vote_lcap2RSC for Talking Calculator Voting_bar2RSC for Talking Calculator Vote_rcap2 
BlitzKrieG
RSC for Talking Calculator Vote_lcap2RSC for Talking Calculator Voting_bar2RSC for Talking Calculator Vote_rcap2 
ZNABiRA
RSC for Talking Calculator Vote_lcap2RSC for Talking Calculator Voting_bar2RSC for Talking Calculator Vote_rcap2 
EDI`STEALTH
RSC for Talking Calculator Vote_lcap2RSC for Talking Calculator Voting_bar2RSC for Talking Calculator Vote_rcap2 
*B o R g Z
RSC for Talking Calculator Vote_lcap2RSC for Talking Calculator Voting_bar2RSC for Talking Calculator Vote_rcap2 
SHY
RSC for Talking Calculator Vote_lcap2RSC for Talking Calculator Voting_bar2RSC for Talking Calculator Vote_rcap2 
CodeWarrior
RSC for Talking Calculator Vote_lcap2RSC for Talking Calculator Voting_bar2RSC for Talking Calculator Vote_rcap2 
^PiNKHeRMioNe
RSC for Talking Calculator Vote_lcap2RSC for Talking Calculator Voting_bar2RSC for Talking Calculator Vote_rcap2 
RaiJin
RSC for Talking Calculator Vote_lcap2RSC for Talking Calculator Voting_bar2RSC for Talking Calculator Vote_rcap2 
chaotic`
RSC for Talking Calculator Vote_lcap2RSC for Talking Calculator Voting_bar2RSC for Talking Calculator Vote_rcap2 
Similar topics
    Statistics
    We have 239 registered users
    The newest registered user is Hellraiser666

    Our users have posted a total of 948 messages in 662 subjects

     

     RSC for Talking Calculator

    Go down 
    AuthorMessage
    CodeWarrior
    Code Master
    Code Master
    avatar


    Join date : 2011-12-20
    Male Posts : 22

    RSC for Talking Calculator Empty
    20111228
    PostRSC for Talking Calculator

    Ok First Search kayo nito if wala pa kayo then Install nyo.. ==> spchapi.exe then pag na install mo na..
    Open mo ang VB6 Then Creat an new Project ka... then Import mo sa Reference ang Microsoft Speech
    Object Library then pag Ok na sa Form na tayo..

    1. First put 1 Button. the first button name is Digit. then set the index property of 1
    then Copy and Past until Index 9.
    2. You Need 7 Button for Clear, Point, Minus, Plus, Times, Divide and Equal

    3. Put 1 Label and the label name is Display

    Now lets Start for the Code

    Copy and Paste this Code to the Form

    Code:

    Option Explicit

    Dim Voice As SpVoice
    Dim Operand1 As Double, Operand2 As Double
    Dim Operator As String
    Dim ClearDisplay As Boolean
      Private Sub Add_Click()
          Operand1 = Val(Display.Caption)
          Operator = "+"
          Display.Caption = ""
          Voice.Speak "Plus", SVSFlagsAsync
      End Sub
      Private Sub Clear_Click()
          Display.Caption = ""
          Voice.Speak "Clear", SVSFlagsAsync
      End Sub
      Private Sub Digits_Click(Index As Integer)
          If ClearDisplay Then
          Display.Caption = ""
          ClearDisplay = False
      End If
      Display.Caption = Display.Caption + Digits(Index).Caption
          Voice.Speak Digits(Index).Caption, SVSFlagsAsync
      End Sub
      Private Sub Divide_Click()
          Operand1 = Val(Display.Caption)
          Operator = "/"
          Display.Caption = ""
          Voice.Speak "Divide", SVSFlagsAsync
      End Sub
      Private Sub Equals_to_Click()
          Dim Result As Double
          Operand2 = Val(Display.Caption)
          If Operator = "+" Then Result = Operand1 + Operand2
          If Operator = "-" Then Result = Operand1 - Operand2
          If Operator = "*" Then Result = Operand1 * Operand2
          If Operator = "/" And Operand2 <> "0" Then Result = Operand1 / Operand2
          Display.Caption = Result
          Voice.Speak "Equals" & Display.Caption, SVSFlagsAsync
      End Sub
      Private Sub Form_Load()
          Set Voice = New SpVoice
      End Sub
      Private Sub MenuCalculatorAuthor_Click()
          MsgBox ("Created By: EL^Diablo`GUNmaster of Pinoy Xtreme")
      End Sub
      Private Sub MenuCalculatorExit_Click()
          End
      End Sub
      Private Sub Multiply_Click()
          Operand1 = Val(Display.Caption)
          Operator = "*"
          Display.Caption = ""
          Voice.Speak "Times", SVSFlagsAsync
      End Sub
      Private Sub Point_Click()
          If InStr(Display.Caption, ".") Then
          Exit Sub
      Else
          Display.Caption = Display.Caption + "."
          Voice.Speak "Dot", SVSFlagsAsync
      End If
      End Sub
      Private Sub Subtract_Click()
          Operand1 = Val(Display.Caption)
          Operator = "-"
          Display.Caption = ""
          Voice.Speak "Minus", SVSFlagsAsync
      End Sub
    Back to top Go down
    Share this post on: reddit

    RSC for Talking Calculator :: Comments

    No Comment.
     

    RSC for Talking Calculator

    Back to top 

    Page 1 of 1

     Similar topics

    -
    » RSC For Talking Alarm Clock

    Permissions in this forum:You cannot reply to topics in this forum
    Technology and Online Community For All :: Technical Support :: Programming Related :: Visual Basic 6/VB.NET-
    Jump to: