Bitcoin Forum

Other => Beginners & Help => Topic started by: Mieljean on May 09, 2013, 11:24:59 PM



Title: standardoutput function not working for poolers cpuminer...
Post by: Mieljean on May 09, 2013, 11:24:59 PM
Too bad I can only post this in the newbie section, but ah well it gets me closer to losing the newbie status anyway.
Here it goes

I'm trying to read the output of minerd.exe (pooler's cpuminer) in vb .net

Code:
...blahblah

AddHandler miner1.OutputDataReceived, AddressOf OutputHandler1
miner1.BeginOutputReadLine()

...blahblah

Private Shared Sub OutputHandler1(ByVal sendingProcess As Object, ByVal outLine As DataReceivedEventArgs)
        MsgBox(outLine.Data)
End Sub

But it's not showing a msgbox with the output. Other programs do show output.

Don't know if anyone can help, but it cant hurt to post either. I'll try some vb .net forums as well

See ya!