Click here to Skip to main content
15,899,679 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: remove the same rows from a table Pin
Member 933127812-Aug-12 2:21
Member 933127812-Aug-12 2:21 
AnswerRe: remove the same rows from a table Pin
Eddy Vluggen13-Aug-12 1:27
professionalEddy Vluggen13-Aug-12 1:27 
QuestionConvert a .Wav File to .mp3 Pin
iismoove11-Aug-12 6:20
iismoove11-Aug-12 6:20 
AnswerRe: Convert a .Wav File to .mp3 Pin
Kenneth Haugland12-Aug-12 13:18
mvaKenneth Haugland12-Aug-12 13:18 
GeneralRe: Convert a .Wav File to .mp3 Pin
iismoove12-Aug-12 14:16
iismoove12-Aug-12 14:16 
AnswerRe: Convert a .Wav File to .mp3 Pin
Eddy Vluggen13-Aug-12 3:22
professionalEddy Vluggen13-Aug-12 3:22 
GeneralRe: Convert a .Wav File to .mp3 Pin
iismoove13-Aug-12 3:32
iismoove13-Aug-12 3:32 
GeneralRe: Convert a .Wav File to .mp3 Pin
Eddy Vluggen13-Aug-12 3:40
professionalEddy Vluggen13-Aug-12 3:40 
iismoove wrote:
What do you mean by "forking"?

Applications sometimes do multiple stuff at once; in that case you often need threading. I'm more of a fan of "forking", where one runs an executable and fetches the result. An independent executable can be tested without the rest of the crap, makes maintenance a bit easier.

iismoove wrote:
I also noticed that there are about 20 or so instances of "lame.exe" running in the task manager

Aight, that means it works. It's best not to start all 20 conversions at once, but one after another. You're probably using the Process class to launch those, and you'd have to wait after launching until it is done before moving on to the next one.

Call the Process.WaitForExit[^] method in your loop to block execution until the external application finishes.
Bastard Programmer from Hell Suspicious | :suss:
if you can't read my code, try converting it here[^]

GeneralRe: Convert a .Wav File to .mp3 Pin
iismoove13-Aug-12 5:03
iismoove13-Aug-12 5:03 
GeneralRe: Convert a .Wav File to .mp3 Pin
Eddy Vluggen13-Aug-12 5:14
professionalEddy Vluggen13-Aug-12 5:14 
GeneralRe: Convert a .Wav File to .mp3 Pin
iismoove13-Aug-12 5:22
iismoove13-Aug-12 5:22 
GeneralRe: Convert a .Wav File to .mp3 Pin
Eddy Vluggen13-Aug-12 5:54
professionalEddy Vluggen13-Aug-12 5:54 
GeneralRe: Convert a .Wav File to .mp3 Pin
iismoove13-Aug-12 6:10
iismoove13-Aug-12 6:10 
GeneralRe: Convert a .Wav File to .mp3 Pin
Eddy Vluggen13-Aug-12 6:21
professionalEddy Vluggen13-Aug-12 6:21 
GeneralRe: Convert a .Wav File to .mp3 Pin
iismoove13-Aug-12 6:31
iismoove13-Aug-12 6:31 
GeneralRe: Convert a .Wav File to .mp3 Pin
Eddy Vluggen13-Aug-12 7:11
professionalEddy Vluggen13-Aug-12 7:11 
GeneralRe: Convert a .Wav File to .mp3 Pin
iismoove13-Aug-12 8:14
iismoove13-Aug-12 8:14 
GeneralRe: Convert a .Wav File to .mp3 Pin
Eddy Vluggen13-Aug-12 9:19
professionalEddy Vluggen13-Aug-12 9:19 
AnswerRe: Convert a .Wav File to .mp3 Pin
Kenneth Haugland13-Aug-12 8:32
mvaKenneth Haugland13-Aug-12 8:32 
GeneralRe: Convert a .Wav File to .mp3 Pin
iismoove13-Aug-12 10:10
iismoove13-Aug-12 10:10 
GeneralRe: Convert a .Wav File to .mp3 Pin
Kenneth Haugland13-Aug-12 10:12
mvaKenneth Haugland13-Aug-12 10:12 
GeneralRe: Convert a .Wav File to .mp3 Pin
iismoove13-Aug-12 10:20
iismoove13-Aug-12 10:20 
GeneralRe: Convert a .Wav File to .mp3 Pin
Kenneth Haugland13-Aug-12 10:23
mvaKenneth Haugland13-Aug-12 10:23 
QuestionSaving File without SaveDialog Pin
jitforce258510-Aug-12 12:03
jitforce258510-Aug-12 12:03 
AnswerRe: Saving File without SaveDialog Pin
908236510-Aug-12 12:45
908236510-Aug-12 12:45 

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.