CAN U PLEASE SEND THE 70-480 DUMPS TO MY MAIL ID AS muralikrishnatb@rediffmail.com
↧
70-480 dumps
↧
Convert Speech to text in vb.net
hi friends,
i need to develop an application for converting speech to text and also audio file to text in vb.net or csharp.net.if anybody know the solution.
thanks and regards,
thoufi
↧
↧
Face Detection & Matching with another face.......
Hello,
I am making face detection & matching syster without using opencv,EmguCv.
if any one help me improve accuracy so tell me or send me code or algo on my e-mail id sonisandeep@hotmail.com.
Thanks to all readers.
↧
Project Manager skills
What skills are required for Project Manager in IT industry?Is MBA degree the first keyword for this?
↧
c# array
ya i want these questions to be answered
can u help me
1)Accept the names of 10 candidates and sort them alphabettically.
2)display a 4X4 identity matrises
3)product of 2x2 matrises
can u help me
1)Accept the names of 10 candidates and sort them alphabettically.
2)display a 4X4 identity matrises
3)product of 2x2 matrises
↧
↧
Assign Mutex to each Thread
Hello,
I have a function, and i would like to let a list/array of Threads run parallel in it (inorder to protect critical sections in it).
I thought I'd create List<Mutex> and assign each one to a different Thread:
for( int i =0; i<10; i++)
and in the function i would like to lock with a arrmutex.elementAt(someThread).waitOne() -> a specific variable
It tells me that i cannot do that cause my mutex list is not initialize, AND, the lock wouldn't work..
Can you please help me figure out, how to initialize a list/array of mutexes?
and how to assign each thread a mutex?
Thanks,
I have a function, and i would like to let a list/array of Threads run parallel in it (inorder to protect critical sections in it).
I thought I'd create List<Mutex> and assign each one to a different Thread:
for( int i =0; i<10; i++)
{ arrmutex[i] = new mutex(); }
and in the function i would like to lock with a arrmutex.elementAt(someThread).waitOne() -> a specific variable
It tells me that i cannot do that cause my mutex list is not initialize, AND, the lock wouldn't work..
Can you please help me figure out, how to initialize a list/array of mutexes?
and how to assign each thread a mutex?
Thanks,
↧
windows service mouse mileage
Hello.Sorry for my english. On russian sites cant help me.
My task is write a service (c#,visual studio) that calculates mileage mouse.
Guess what I need get coordinates and after a little time to get new coordinates cursor, then calculate the distance between them and add it to the result. How I can get cursor coordinates
from code service? or are there other methods of solution? help please
My task is write a service (c#,visual studio) that calculates mileage mouse.
Guess what I need get coordinates and after a little time to get new coordinates cursor, then calculate the distance between them and add it to the result. How I can get cursor coordinates
from code service? or are there other methods of solution? help please
↧
best way to maximize parallelity in multi Threaded program?
Lets say you have 10 threads, in one function and you want to maximize parallelity between them, what is the best way to do that:
1. with 10 mutexes, assign each mutex to a thread?
2. with semaphore (0, 10) ?
3. with array/list of mutexes?
What would you do?
Thanks,
1. with 10 mutexes, assign each mutex to a thread?
2. with semaphore (0, 10) ?
3. with array/list of mutexes?
What would you do?
Thanks,
↧
Course Registeration
HEY!! i am developing a web based MIS !! but stucked in the problem!! i want to register student course !! that is in 6 courses at a time but how to register??
↧
↧
registry key crashing my app
i added my app in regedit in the auto lunch folder
where skype by example is to auto lunch
when my app is started this way it crash at startup
the debuger states that theres a missing part of the path of a certain file
yet when i start my app normaly it all works even that file works
any idea on what could cause this auto startup to crash my app
where skype by example is to auto lunch
when my app is started this way it crash at startup
the debuger states that theres a missing part of the path of a certain file
yet when i start my app normaly it all works even that file works
any idea on what could cause this auto startup to crash my app
↧
Ask about Building a web based C# compiler using ASP.NET and
I saw this link http://www.c-sharpcorner.com/uploadfile/dommym/building-a-web-based-c-sharp-compiler-using-asp-net-and-tdd/.
I think it has a useful for me to do my senior project.
If i want to show display the output, Could you tell me what should i do ?
↧
calling web service return error in request
I have web service like the following
[ServiceContract][ServiceKnownType(typeof(test))]interfaceItestbService{[OperationContract]IList<test>RetrieveTestList();}publicclassTestWebService:ItestbService{[WebInvoke(UriTemplate="RetrieveTestList",Method="GET",ResponseFormat=WebMessageFormat.Json,RequestFormat=WebMessageFormat.Json)]publicIList<test>RetrieveTestList(){returnnew test().ListOftests();}
then in separate project I hosted it using the following code using svc file using the following line
<%@ServiceHostLanguage="C#"Debug="true"Service="test.WebService.TestWebService"CodeBehind="test.WebService.TestWebService.cs"%>
and this is the web.config
<system.serviceModel><services><servicename="test.WebService.TestWebService"><endpointaddress=""binding="webHttpBinding"contract="test.WebService.ItestbService"behaviorConfiguration="web"></endpoint></service></services><behaviors><endpointBehaviors><behaviorname="web"><webHttp/><dataContractSerializermaxItemsInObjectGraph="2147483647"/></behavior></endpointBehaviors><serviceBehaviors><behavior><dataContractSerializermaxItemsInObjectGraph="2147483647"/><serviceMetadatahttpGetEnabled="true"/><serviceDebugincludeExceptionDetailInFaults="true"/></behavior></serviceBehaviors></behaviors><bindings><webHttpBinding><bindingname="defaultRest"><readerQuotasmaxStringContentLength="2147483647"maxArrayLength="2147483647"maxBytesPerRead="2147483647"maxDepth="64"maxNameTableCharCount="2147483647"/><securitymode="None"/></binding></webHttpBinding></bindings><serviceHostingEnvironmentmultipleSiteBindingsEnabled="true"/></system.serviceModel>
put when call in the browser the method it give bad request
↧
C# Language Extensions
Hi Guys,
What are C# language Extensions to support LINQ?
Share your knowledge with concrete examples.
Thanks.
What are C# language Extensions to support LINQ?
Share your knowledge with concrete examples.
Thanks.
↧
↧
Timespan between two events
I receive a message from serial port that is passed to a variable once every few seconds. The message is generated by a microprocessor and it is basically a simple string containing "1/r" which represent one complete turn of a motor (every time a microswitch is pressed, the micro prints "1/r) on the serial port). In order to show in a text box the revolution per minute of such motor, based on the time interval between the update of the variable, I would like to implement a timespan method. I should therefore obtain the time elapsed between the start and the end of a turn and return the result for further actions to the original method.
This is what I have done so far but does not work:
publicvoid CalcolaRPM (string giriRicevuti, outdouble RPM)
{
Stopwatch stopWatch = newStopwatch();
stopWatch.Start();
{
if (giriRicevuti == "1/r")
{
stopWatch.Stop();
}
}
double elapsedT = stopWatch.ElapsedMilliseconds;
stopWatch.Restart();
RPM = elapsedT;
giriRicevuti = "";
}
}
The result I get is 0.0, how can I get the time in milliseconds between updates of the variable "giriRicevuti"?
↧
convert audio to text in .net
hi friends,
i want to convert audio to text in c# or vb.net.if anybody know the solution please help me.
by thanks,
thoufi
↧
Related DropDownlists
Hi
I have 3 related Dropdownlist in me Edit Form
I'm using the code below to bind the Dropdownlist but it will retrive the full list without the selected value saved and if i'm making a selected statment it will just retrive the selected value.
the dropdownlist is linked to other one so if the Category been saved as "Art" the Subject should retrive the saved Item the user selected earlier with the rest items for update purpose .
private void BindDrp_CAT()
{
using (SqlConnection con = new SqlConnection(myconn))
if (!IsPostBack)
{
SqlCommand com = new SqlCommand("select distinct Cat_name from tblCategory order by Cat_name ", con);
SqlDataReader dr;
con.Open();
Drp_CAT.Items.Clear();
dr = com.ExecuteReader();
while (dr.Read())
{
Drp_CAT.Items.Add(new ListItem(dr[0].ToString()));
}
con.Close();
}
}
![]()
I have 3 related Dropdownlist in me Edit Form
I'm using the code below to bind the Dropdownlist but it will retrive the full list without the selected value saved and if i'm making a selected statment it will just retrive the selected value.
the dropdownlist is linked to other one so if the Category been saved as "Art" the Subject should retrive the saved Item the user selected earlier with the rest items for update purpose .
private void BindDrp_CAT()
{
using (SqlConnection con = new SqlConnection(myconn))
if (!IsPostBack)
{
SqlCommand com = new SqlCommand("select distinct Cat_name from tblCategory order by Cat_name ", con);
SqlDataReader dr;
con.Open();
Drp_CAT.Items.Clear();
dr = com.ExecuteReader();
while (dr.Read())
{
Drp_CAT.Items.Add(new ListItem(dr[0].ToString()));
}
con.Close();
}
}

↧
Dot Net Freshers
how much salary i should expect as freshers tell me sir....if is not so should i change my platform for good salary...
↧
↧
refactoring code in visual studio
Hello everyone,
i have a question about refactoring my code, currently im following all kinds of tutorials for c# in visual studio.
and I see them using the encapsulate field option by right clicking on a field and clicking encapsulate field.
their menu looks like:
-rename
-extract method
-----------------------
-encapsulate field
-extract interface
-remove parameters
-reorder parameters
but mine only shows 2 of them
-rename
-extract method
why cant I see the rest of the items which everyone else does have?
thanks.
↧
SPRequest
What is SPRequest in Sharepoint2010?
↧
general
Hai everyone. can anyone explain about web form model
↧