|
"you should capture the audio stream from the modme speaker's audio line"
please tell me how to do this ?
And how this?
"Transfer your voice as an audio stream"
I prefer that do this in managed code in c#
-- modified at 11:34 Tuesday 15th August, 2006
Best wishes
|
|
|
|
|
|
My freind,
I want to capture analog sound from modem ..
"You can not transfer data in a voice call"
I want to recieve voice in voice call(not data call), in my application not on modem speaker
-- modified at 5:37 Wednesday 16th August, 2006
Best wishes
|
|
|
|
|
Hello
I was only giving you all the possible options in using the modem.
If it's only voice you want to receive then using voice call would work fine. As I told you before you would use TAPI -ie. Telephony Application Programming Interface-.
Read TAPI documentations for details. For more specific help, you may repost.
Regards
|
|
|
|
|
Hi,
I have a variable called 'fromDate' which is a DateTime value and I need to pass it into the following scenario:
DataTable table = myclubDataSet.Tables["TresReports"];<br />
string expression;<br />
expression = "ReportDate = #1/01/2006#";
DataRow[] foundRows;<br />
foundRows = table.Select(expression);<br />
for (int i = 0; i < foundRows.Length; i++)<br />
{<br />
int rowis = (int) (foundRows[i][0]);<br />
totalBF = Convert.ToDecimal(myclubDataSet.Tables["TresReports"].Rows[rowis]["BalanceOH"]);<br />
}<br />
Thanks,
Glen Harvy
|
|
|
|
|
Like this:
expression = "ReportDate = #" + fromDate.ToString("dd/MM/yyyy") + "#"
Verify the date format, though. I had to guess, as you are using a date format that doesn't follow the ISO 8601 standard.
---
b { font-weight: normal; }
|
|
|
|
|
Thanks for the response. I should have remembered this - it's getting late at night here
Format's OK - we're just different here in Australia
Glen Harvy
|
|
|
|
|
In my MasterPage I have this code:
private string _callbackResult = null;
protected void Page_Load(object sender, EventArgs e)
{
string cbReference = Page.ClientScript.GetCallbackEventReference(this, "arg", "Result1", "context");
string cbScript = "function UseCallback1(arg, context)" + "{" + cbReference + ";" + "}";
Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "UseCallback1", cbScript, true);
}
public void RaiseCallbackEvent(string eventArg)
{
string res = AgentLogin(eventArg).ToString();
_callbackResult = res;
}
public string GetCallbackResult()
{
return _callbackResult;
}
When I open the first page - everything is ok! But when I move to the second page I can see that there is no "UseCallback1" JavaScript function in HTML!
Help me please to fix this problem!
-- modified at 4:16 Tuesday 15th August, 2006
|
|
|
|
|
How could i set righttoleft for listbox when im using draw item event and the listbox Drawmode is set as OwnerDrawFixed.
i tried following code in drawitem event:
this.li_author_persian.RightToLeft=RightToLeft.Yes;
but it doesnt work.
|
|
|
|
|
OwnerDraw means your settings on the item do nothing, it's your own code that controls how it is drawn.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
|
|
|
|
|
Thanks, so how can i set it right to left ?!!
|
|
|
|
|
If you're owner drawing, then you're drawing it yourself, aren't you ? Does DrawString have properties to support this ?
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
|
|
|
|
|
Dear Christian
Unfortunatly DrawString have not RightToLeft property?
|
|
|
|
|
I'm sorry, I've never drawn a righttoleft string, all I can tell you for sure is that if you've set the control to be owner drawn, no other property is going to matter, your own code is completely responsible for how it is rendered.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
|
|
|
|
|
How to asynchronously invoke three different tasks and interact with UI simultaneoulsy.
I have three different screens where i should be able connect to same database and interact with UI asynchronously.
Can anyone help me.................
|
|
|
|
|
Hello
pranu_13 wrote: How to asynchronously invoke three different tasks and interact with UI simultaneoulsy.
Using multithreading, but I think you already know that!!
pranu_13 wrote: I have three different screens where i should be able connect to same database and interact with UI asynchronously.
So what is wrong with that?? Each form will make an independent connection to your database. Whether they are 3, or even 100 screens. Each will make its own conection without knowing about other connections or screens.
pranu_13 wrote: Can anyone help me.................
If you still need more help, yes! If you post more details perhaps.
Regards
|
|
|
|
|
hello
i want to get drives in tree shape, how is it possible using tree list or in any other way.
syntax is requires?
muhammad mahmood ilyas
|
|
|
|
|
hello
procedure is required.
muhammad mahmood ilyas
|
|
|
|
|
hi, whenever you run the project , exe file is made. for 2003 , exe is in debug or release folder in the directory of the project.
|
|
|
|
|
i mean from exe is installer. i want to run my program on different machine having no microsoft.net.
so in this context, plz guide me in context
muhammad mahmood ilyas
|
|
|
|
|
|
Not possible. Every machine that runs your program will need to have the .NET framework installed.
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
|
|
|
|
|
thanks
muhammad mahmood ilyas
|
|
|
|
|
hi all i have a pro on hand now..
i have 2 buttons in my application and i want to call up text into the richtextbook..i can do this however after pressing button 1 the text will be clear and display text will button 2.. i want both the text to remain ,how do i do it?
|
|
|
|
|
this.richTextBox.Text += newdata;
Just add your new string behind your old string in richTextBox.
|
|
|
|