Click here to Skip to main content
15,910,277 members
Home / Discussions / C#
   

C#

 
QuestionRe: RectangleF to and back from string? Pin
Chesnokov Yuriy31-May-11 0:45
professionalChesnokov Yuriy31-May-11 0:45 
AnswerRe: RectangleF to and back from string? Pin
Pete O'Hanlon31-May-11 1:27
mvePete O'Hanlon31-May-11 1:27 
AnswerRe: RectangleF to and back from string? Pin
Chesnokov Yuriy31-May-11 1:54
professionalChesnokov Yuriy31-May-11 1:54 
GeneralRe: RectangleF to and back from string? Pin
Pete O'Hanlon31-May-11 2:36
mvePete O'Hanlon31-May-11 2:36 
AnswerRe: RectangleF to and back from string? [modified] Pin
DaveyM691-Jun-11 0:35
professionalDaveyM691-Jun-11 0:35 
QuestionSerialcomm dialing voice over modem Pin
Chuck Richards30-May-11 11:17
Chuck Richards30-May-11 11:17 
AnswerRe: Serialcomm dialing voice over modem Pin
Luc Pattyn30-May-11 12:25
sitebuilderLuc Pattyn30-May-11 12:25 
GeneralRe: Serialcomm dialing voice over modem Pin
Chuck Richards1-Jun-11 3:02
Chuck Richards1-Jun-11 3:02 
So I have made some EXCELLENT progress. Practically done. What is left is finessing the audio into place. Right now. I take a wav file, and break it into blocks as per some examples. But when I listen to it over the phone it plays for the first couple seconds, then it starts to sound like it's skipping.

PS:I will help anyone who reads this. Email me @ dotnetcoder@hotmail.ca.

But if I can get help here is my audio loop.

BinaryReader rdr = new BinaryReader(strm);
Utils.Write("4");

while (!MSwitch)
{
byte[] bt = new byte[1024];
bt = rdr.ReadBytes(1024);
if (bt.Length == 0)
{
MSwitch = true;
break;
}
comPort.Write(bt, 0, bt.Length);
}

Before this, I read the stream after the 44th byte. Starts fine, but I think the program is writing too fast?
AnswerRe: Serialcomm dialing voice over modem Pin
Luc Pattyn1-Jun-11 3:13
sitebuilderLuc Pattyn1-Jun-11 3:13 
GeneralRe: Serialcomm dialing voice over modem Pin
Chuck Richards1-Jun-11 9:41
Chuck Richards1-Jun-11 9:41 
AnswerRe: Serialcomm dialing voice over modem Pin
Luc Pattyn1-Jun-11 14:12
sitebuilderLuc Pattyn1-Jun-11 14:12 
GeneralRe: Serialcomm dialing voice over modem Pin
Chuck Richards2-Jun-11 9:15
Chuck Richards2-Jun-11 9:15 
AnswerRe: Serialcomm dialing voice over modem Pin
Luc Pattyn2-Jun-11 9:31
sitebuilderLuc Pattyn2-Jun-11 9:31 
GeneralRe: Serialcomm dialing voice over modem Pin
Chuck Richards3-Jun-11 3:13
Chuck Richards3-Jun-11 3:13 
GeneralRe: Serialcomm dialing voice over modem Pin
Chuck Richards2-Jun-11 9:22
Chuck Richards2-Jun-11 9:22 
AnswerRe: Serialcomm dialing voice over modem [modified] Pin
Chuck Richards2-Jun-11 7:34
Chuck Richards2-Jun-11 7:34 
Questionproblem with calling folderbrowingDialog in a child thread. Pin
prasadbuddhika30-May-11 6:25
prasadbuddhika30-May-11 6:25 
AnswerRe: problem with calling folderbrowingDialog in a child thread. Pin
Luc Pattyn30-May-11 6:45
sitebuilderLuc Pattyn30-May-11 6:45 
GeneralRe: problem with calling folderbrowingDialog in a child thread. Pin
prasadbuddhika30-May-11 15:10
prasadbuddhika30-May-11 15:10 
GeneralRe: problem with calling folderbrowingDialog in a child thread. Pin
prasadbuddhika30-May-11 15:30
prasadbuddhika30-May-11 15:30 
GeneralRe: problem with calling folderbrowingDialog in a child thread. Pin
BobJanova30-May-11 22:33
BobJanova30-May-11 22:33 
AnswerRe: problem with calling folderbrowingDialog in a child thread. Pin
Shameel31-May-11 1:01
professionalShameel31-May-11 1:01 
QuestionOleDbDataReader - reading order Pin
Islorvat30-May-11 4:21
Islorvat30-May-11 4:21 
AnswerRe: OleDbDataReader - reading order Pin
Luc Pattyn30-May-11 5:43
sitebuilderLuc Pattyn30-May-11 5:43 
GeneralRe: OleDbDataReader - reading order Pin
Islorvat30-May-11 6:36
Islorvat30-May-11 6:36 

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.