|
i need a program in c# that this program write value of sound decibel from sound card in a textarea
i don't need a graphical program . i need program that can getback to me value
|
|
|
|
|
is there any way i can move enumerator back one position
bia
|
|
|
|
|
No. You can only more forward one step or back to the beginning.
---
Year happy = new Year(2007);
|
|
|
|
|
Just curious, why would you need that?
"Throughout human history, we have been dependent on machines to survive. Fate, it seems, is not without a sense of irony. " - Morpheus
|
|
|
|
|
actually im makin an urdu editor and if any arror occurs i ned to move bak to previous word nd i hasd to code a loooong loong process for this thas y
thanks ny ways
|
|
|
|
|
Why not simply maintain a moving cache of the last N entries you iterated through? e.g
foreach (string x in y)
{
/* operations here */
string previousx = x;
}
|
|
|
|
|
I have done one desktop application in visual c#, i want to give
online updations for that software .
i need full flow and coding for this.
we are in illusionary life
|
|
|
|
|
Wow. That's almost a haiku.
Anyway, you want to look at something called ClickOnce[^] deployment.
the last thing I want to see is some pasty-faced geek with skin so pale that it's almost translucent trying to bump parts with a partner - John Simmons / outlaw programmer
Deja View - the feeling that you've seen this post before.
|
|
|
|
|
You can publish your project and use click once method, that is perfect 4 u
|
|
|
|
|
Do anyone know how to read the shapefile formats.
I want to do a simple application to show the map of some places using shapefile. Please help me
Regards
Hari krishnan
|
|
|
|
|
Some libraries exist as part of other applications (see for example here[^]).
If you want to do your own implementation you can read the format specification here.[^]. Notice that it is a bit of a WTF. They where unable to figure out if they should use little endian or big endian, so they made the obvious choice of using both in the same file - one for the file structure information, and another for the data itself.
|
|
|
|
|
thanks for the quick reply.. i was looking for some code using which i can finsh the map drawing quickly
|
|
|
|
|
I have created a progress form with a progress bar(Marquee) which i am trying to display while a stored procedure is run in the background which can take several minutes, the progres form works fine as does the stored procedure but the progress form will not display correctly while the stored procedure is being called, is there a way of forcing the form to display correctly and run while the SP is called in the background.
Any help would be greatly appreciated
many thanks
|
|
|
|
|
RichardContact-1 wrote:
s there a way of forcing the form to display correctly and run while the SP is called in the background.
Did you try to call the SP using another thread?
Regards
|
|
|
|
|
If you are calling the stored procedure from the main thread, it will be busy until the stored procedure completes. As all updates are handled in the main thread, your form will not be updated while the stored procedure is running.
Start a new thread that runs the stored procedure, that way the main thread can update the form while the stored procedure runs.
---
Year happy = new Year(2007);
|
|
|
|
|
Enter the site www.ou.edu.vn/diemthi. There r 2 textbox. Once i add 10360127 for both of username & password and click submit, the score page will occur.
I used the HttpWebRequest and NetworkCredential to send username & password with the request. But all i can recieve is the blank page with the banner only instead of the full score page .
Can u tell me the problem? I used the following URI in HttpWebRequest Create() method: "http://www.ou.edu.vn/EduNet/modules.php?name=diemthi&act=xl_xemdiemthi" Is it correct? If not, what URI should i use ?
|
|
|
|
|
Hi all,
Is there any free html editor available that can be used in ASP.Net, i tried on google,yahoo, i found FCK editor but its not working good.
Many Thanks adnan
|
|
|
|
|
|
Hi,
Thanks for repely.
I dont meant that, i want to get HTML Editor to use ASP.Net web forms.
Many Thanks,
adnan
|
|
|
|
|
FCK works fine. What problems are you having?
|
|
|
|
|
Thanks, when i get value of the fckgrid, it return me html, but when i am trying to store it in database (MS Access 203), it only stores first html tag, like page name , the rest one disapperar some where, i also did debuging the function which is inserting html gets full html, but i dont know y its not inserting .
And one more thing plz, how to deply it on server.
Many Thanks,
adnan
|
|
|
|
|
So, it works fine, and there's a problem in your code.
|
|
|
|
|
there's the Process class and it has this HandleCount property.
is there way to get these handles?
I'm trying to write app like Process Explorer but with logging capabilities.
life is study!!!
|
|
|
|
|
Quoted from MSDN: Handles provide a way for a process to refer to objects. A process can obtain handles to files, resources, message queues, and many other operating system objects. The operating system reclaims the memory associated with the process only when the handle count is zero.
These handles -as you can see-, are to resources, while the process itself has only one handle. You can get that single handle using the Process.Handle property. Other handles used by the resources are quite difficult to obtain.
Regards
|
|
|
|
|
"Other handles used by the resources are quite difficult to obtain"
well I found it quite difficult and thats why I'm writing here
life is study!!!
|
|
|
|