-5

How to make C # or Visual Basic strobe light that flashes according to the microphone?

Filburt
  • 17,626
  • 12
  • 64
  • 115
  • 2
    Wrote some code, put in an application, publish it. Anything else you need explained? – rmn36 Sep 29 '15 at 21:17

1 Answers1

0

Add a picture box to your form and then write this in the code behind :) (Without the microphone function)

var request = WebRequest.Create("http://www.djinmelbourne.com/lighting_effect.gif");

using (var response = request.GetResponse())
using (var stream = response.GetResponseStream())
{
    pictureBox1.Image = Bitmap.FromStream(stream);
}

Psst.. Please read the rules/FAQ's before you ask a question next time!

Joakim Hansson
  • 544
  • 3
  • 15