Click here to Skip to main content
15,896,118 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How to make Scrollable Panel Pin
Joshua Quick20-Feb-06 15:45
Joshua Quick20-Feb-06 15:45 
QuestionConsole windows in vb Pin
coder4520-Feb-06 12:40
coder4520-Feb-06 12:40 
AnswerRe: Console windows in vb Pin
progload20-Feb-06 15:15
progload20-Feb-06 15:15 
AnswerRe: Console windows in vb Pin
Joshua Quick20-Feb-06 15:41
Joshua Quick20-Feb-06 15:41 
QuestionUsing a string as a variable Pin
penguin500020-Feb-06 10:47
penguin500020-Feb-06 10:47 
AnswerRe: Using a string as a variable Pin
Joshua Quick20-Feb-06 16:05
Joshua Quick20-Feb-06 16:05 
GeneralRe: Using a string as a variable Pin
penguin500021-Feb-06 10:12
penguin500021-Feb-06 10:12 
QuestionSounding Pin
atillakurucan20-Feb-06 10:26
atillakurucan20-Feb-06 10:26 
Dear Friends, I need to save some sounds like "a" and "b" sound. Then I want my software to play them together without any break between those two sounds. Do you have any clue about this? For example I can play 2 recorded sounds by this code below. But there is some break between them. Can I prevent that break? Thanks for help.

Private Sub Command2_Click()
Dim Array1(1 To 10) As String
Dim Yol As String
Dim Tur As String

Yol = "C:\Proje\Sounds\"
Tur = ".wav"

Array1(1) = "a"
Array1(2) = "b"
Array1(3) = "c"

For i = 1 To 3
Call Play(Yol, Array1(i), Tur)
Next i
End Sub
Sub Play(Yol As String, Ses As String, Tur As String)
OLE2.SourceDoc = Yol + Ses + Tur
OLE2.Action = 1
OLE2.Action = 7
End Sub

-- modified at 16:27 Monday 20th February, 2006
Question[VB.NET 2005] Sorting a combobox Pin
Kim Mostinckx20-Feb-06 10:03
Kim Mostinckx20-Feb-06 10:03 
AnswerRe: [VB.NET 2005] Sorting a combobox Pin
Chiari20-Feb-06 14:08
Chiari20-Feb-06 14:08 
QuestionStoring to access database........ Pin
daviiie20-Feb-06 7:07
daviiie20-Feb-06 7:07 
AnswerRe: Storing to access database........ Pin
Dave Kreskowiak20-Feb-06 7:15
mveDave Kreskowiak20-Feb-06 7:15 
GeneralRe: Storing to access database........ Pin
shiroamachi20-Feb-06 16:17
shiroamachi20-Feb-06 16:17 
GeneralRe: Storing to access database........ Pin
mayhem_rules20-Feb-06 17:04
mayhem_rules20-Feb-06 17:04 
GeneralRe: Storing to access database........ Pin
Dave Kreskowiak20-Feb-06 17:27
mveDave Kreskowiak20-Feb-06 17:27 
QuestionImage Stream Pin
Vanderson Andrade20-Feb-06 5:36
Vanderson Andrade20-Feb-06 5:36 
AnswerRe: Image Stream Pin
Guffa20-Feb-06 8:52
Guffa20-Feb-06 8:52 
AnswerRe: Image Stream Pin
ToddHileHoffer20-Feb-06 9:08
ToddHileHoffer20-Feb-06 9:08 
Questionconvert from Java to VB6 or VB .Net Pin
y4hoo8220-Feb-06 5:25
y4hoo8220-Feb-06 5:25 
AnswerRe: convert from Java to VB6 or VB .Net Pin
progload20-Feb-06 6:17
progload20-Feb-06 6:17 
GeneralRe: convert from Java to VB6 or VB .Net Pin
y4hoo8220-Feb-06 17:21
y4hoo8220-Feb-06 17:21 
GeneralRe: convert from Java to VB6 or VB .Net Pin
progload20-Feb-06 17:35
progload20-Feb-06 17:35 
Questionhow to read the data from an image Pin
Murtuza Husain Miyan Patel20-Feb-06 5:06
professionalMurtuza Husain Miyan Patel20-Feb-06 5:06 
AnswerRe: how to read the data from an image Pin
Dave Kreskowiak20-Feb-06 7:13
mveDave Kreskowiak20-Feb-06 7:13 
QuestionAbout Skinning to forms Pin
Harshad Pednekar20-Feb-06 1:17
Harshad Pednekar20-Feb-06 1:17 

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.