blah blah blah is here! blah blah » Close

0
votes
1 answers

Audio Encoding

I am trying to write an application that will decode direct information from a radio antenna. how do I decode the audio waves like a transistor would? How would I encode? TYrying to remove/ add a carier signal.

1
votes
1 answers

foreach on Controls (RadioButtonList) on a .ascx page.

I'm trying to cycle through all of my RadioButtonLists and store their selected values into a list. [code] List<string> responseList = new List<string>(); foreach (Control c in this.Controls) { if (c is R ...

Feedback