Click here to Skip to main content
15,893,588 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: steganography Pin
GuyThiebaut12-Feb-15 22:49
professionalGuyThiebaut12-Feb-15 22:49 
QuestionHow do I recognize a wrong password ? Pin
Member 1144766212-Feb-15 5:48
Member 1144766212-Feb-15 5:48 
AnswerRe: How do I recognize a wrong password ? Pin
Dave Kreskowiak12-Feb-15 5:53
mveDave Kreskowiak12-Feb-15 5:53 
GeneralRe: How do I recognize a wrong password ? Pin
Member 1144766212-Feb-15 7:41
Member 1144766212-Feb-15 7:41 
GeneralRe: How do I recognize a wrong password ? Pin
Dave Kreskowiak12-Feb-15 8:18
mveDave Kreskowiak12-Feb-15 8:18 
QuestionHow do I play a song within a program ? Pin
Member 1144766212-Feb-15 4:27
Member 1144766212-Feb-15 4:27 
AnswerRe: How do I play a song within a program ? Pin
Dave Kreskowiak12-Feb-15 5:12
mveDave Kreskowiak12-Feb-15 5:12 
GeneralRe: How do I play a song within a program ? Pin
AccessDeveloper12-Feb-15 5:22
AccessDeveloper12-Feb-15 5:22 
This works:
<br />
<br />
Private Sub cmdPlay_Click()<br />
Const ksBSlash As String = "\"<br />
Dim sFilespec As String<br />
<br />
' Note: This code requires the: WindowsMediaPlayer activex  (wmp.dll)<br />
'       first add it to resorces then add it to a form as an activex componet.<br />
<br />
' cboTuneLU has these fields:<br />
'    ID <br />
'	 Filename<br />
'    Path<br />
<br />
    On Error GoTo ERR_cmdPlay_Click<br />
    <br />
    ' Get the path & filename from cboTuneLookup<br />
    sFilespec = Me.cboTuneLU.Column(2) & ksBSlash & Me.cboTuneLU.Column(1)<br />
    Me![WindowsMediaPlayer7].openPlayer sFilespec<br />
<br />
EXIT_cmdPlay_Click:<br />
    Exit Sub<br />
ERR_cmdPlay_Click:<br />
'Debug.Print CStr(Err) & " " & Err.Description<br />
    ShowError "frmLyrics.cmdPlay_Click"<br />
    Resume EXIT_cmdPlay_Click<br />
    <br />
End Sub<br />

QuestionHow do I run a song on vb ? Pin
Member 1144766212-Feb-15 4:25
Member 1144766212-Feb-15 4:25 
AnswerRe: How do I run a song on vb ? Pin
Dave Kreskowiak12-Feb-15 5:11
mveDave Kreskowiak12-Feb-15 5:11 
GeneralRe: How do I run a song on vb ? Pin
Member 1144766212-Feb-15 5:15
Member 1144766212-Feb-15 5:15 
GeneralRe: How do I run a song on vb ? Pin
Dave Kreskowiak12-Feb-15 5:52
mveDave Kreskowiak12-Feb-15 5:52 
Questionvb code for speech? Pin
Member 1144760612-Feb-15 4:09
Member 1144760612-Feb-15 4:09 
AnswerRe: vb code for speech? Pin
Eddy Vluggen12-Feb-15 5:37
professionalEddy Vluggen12-Feb-15 5:37 
AnswerRe: vb code for speech? Pin
Member 1144787312-Feb-15 5:59
Member 1144787312-Feb-15 5:59 
AnswerRe: vb code for speech? Pin
Chris Quinn13-Feb-15 0:30
Chris Quinn13-Feb-15 0:30 
QuestionOwner drawn ComboBox issues. Pin
D.VanKeuren11-Feb-15 11:35
D.VanKeuren11-Feb-15 11:35 
QuestionHow to detect a mouse click outside a focused control Pin
dilkonika9-Feb-15 18:22
dilkonika9-Feb-15 18:22 
AnswerRe: How to detect a mouse click outside a focused control Pin
Richard MacCutchan9-Feb-15 22:20
mveRichard MacCutchan9-Feb-15 22:20 
GeneralRe: How to detect a mouse click outside a focused control Pin
dilkonika10-Feb-15 4:06
dilkonika10-Feb-15 4:06 
AnswerRe: How to detect a mouse click outside a focused control Pin
Richard Andrew x6410-Feb-15 4:58
professionalRichard Andrew x6410-Feb-15 4:58 
GeneralRe: How to detect a mouse click outside a focused control Pin
dilkonika10-Feb-15 5:03
dilkonika10-Feb-15 5:03 
AnswerRe: How to detect a mouse click outside a focused control Pin
Richard Andrew x6410-Feb-15 5:06
professionalRichard Andrew x6410-Feb-15 5:06 
GeneralRe: How to detect a mouse click outside a focused control Pin
Kenneth Haugland10-Feb-15 7:10
mvaKenneth Haugland10-Feb-15 7:10 
GeneralRe: How to detect a mouse click outside a focused control Pin
Richard MacCutchan10-Feb-15 5:06
mveRichard MacCutchan10-Feb-15 5:06 

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.