Click here to Skip to main content
15,886,963 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How to create DLL Library for VBA(Excel 2010) Pin
Dave Kreskowiak25-Jun-12 5:21
mveDave Kreskowiak25-Jun-12 5:21 
GeneralRe: How to create DLL Library for VBA(Excel 2010) Pin
konarex81226-Jun-12 21:02
konarex81226-Jun-12 21:02 
GeneralRe: How to create DLL Library for VBA(Excel 2010) Pin
Dave Kreskowiak27-Jun-12 1:23
mveDave Kreskowiak27-Jun-12 1:23 
QuestionSine Wave Sound Pin
jignesh14223-Jun-12 0:21
jignesh14223-Jun-12 0:21 
AnswerRe: Sine Wave Sound Pin
javadadabi23-Jun-12 2:30
javadadabi23-Jun-12 2:30 
AnswerRe: Sine Wave Sound Pin
Nick Otten24-Jun-12 20:45
Nick Otten24-Jun-12 20:45 
GeneralRe: Sine Wave Sound Pin
jignesh14225-Jun-12 22:08
jignesh14225-Jun-12 22:08 
GeneralRe: Sine Wave Sound Pin
Nick Otten25-Jun-12 22:28
Nick Otten25-Jun-12 22:28 
try this:

VB
Option Explicit
Option Base 1

Public Class NameYourClass

Private Declare Function Beep Lib "kernel32" (ByVal soundFrequency As Int32, ByVal soundDuration As Int32) As Int32

Private Sub CommandButton1_Click()
Dim Sc(3) as integer
Dim Frequency as int32 = 440
Dim Duration as int32 = 1000 ' in millisecond
Sc(1)=1
Sc(2)=1.125
Sc(3)=1.2
 
For i = 1 to 3
Beep(Frequency, Duration)
next i
End sub
End Class


note: i just putted a class around it so you could see where to paste what.

modified 26-Jun-12 4:42am.

GeneralRe: Sine Wave Sound Pin
jignesh14226-Jun-12 4:46
jignesh14226-Jun-12 4:46 
GeneralRe: Sine Wave Sound Pin
Nick Otten26-Jun-12 11:40
Nick Otten26-Jun-12 11:40 
GeneralRe: Sine Wave Sound Pin
javadadabi27-Jun-12 0:21
javadadabi27-Jun-12 0:21 
Questionedit games Pin
Member 915884022-Jun-12 16:08
Member 915884022-Jun-12 16:08 
AnswerRe: edit games Pin
javadadabi23-Jun-12 2:34
javadadabi23-Jun-12 2:34 
AnswerRe: edit games Pin
ZurdoDev25-Jun-12 4:12
professionalZurdoDev25-Jun-12 4:12 
Questionedit games Pin
Member 915884022-Jun-12 16:02
Member 915884022-Jun-12 16:02 
AnswerRe: edit games Pin
Dave Kreskowiak22-Jun-12 16:10
mveDave Kreskowiak22-Jun-12 16:10 
AnswerRe: edit games Pin
Midnight Ahri22-Jun-12 18:31
Midnight Ahri22-Jun-12 18:31 
GeneralRe: edit games Pin
Richard MacCutchan22-Jun-12 22:35
mveRichard MacCutchan22-Jun-12 22:35 
AnswerRe: edit games Pin
Richard MacCutchan23-Jun-12 2:20
mveRichard MacCutchan23-Jun-12 2:20 
QuestionRe: edit games Pin
Midnight Ahri24-Jun-12 16:07
Midnight Ahri24-Jun-12 16:07 
AnswerRe: edit games Pin
Richard MacCutchan24-Jun-12 21:58
mveRichard MacCutchan24-Jun-12 21:58 
QuestionRe: edit games Pin
Midnight Ahri24-Jun-12 22:04
Midnight Ahri24-Jun-12 22:04 
AnswerRe: edit games Pin
Richard MacCutchan24-Jun-12 22:17
mveRichard MacCutchan24-Jun-12 22:17 
QuestionCannot change text of button on a control. Pin
Ammar_Ahmad22-Jun-12 13:16
Ammar_Ahmad22-Jun-12 13:16 
AnswerRe: Cannot change text of button on a control. Pin
Dave Kreskowiak22-Jun-12 14:38
mveDave Kreskowiak22-Jun-12 14:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.