all groups > c# > july 2007 > threads for sunday july 8
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
When thread routine returns, that means it was closed ?
Posted by Boki at 7/8/2007 11:35:29 PM
Hi All,
When thread returns, that means the thread is closed ?
What is the standard way to kill it ?
threadA= null ;
Thank you for advice!
/* CODE BEGIN */
public partial class Form1 : Form
{
private static Thread thread_Interent;
...
public void B... more >>
FileSystemWatcher monitor newly created file
Posted by Daniel at 7/8/2007 9:20:02 PM
I'm working with the FileSystemWatcher which has a Created event. But this
event is raised as soon as the new file begins to be written on disk. What I
want is a notification after a file being entirely written. Is there anyway
to achieve this?
Thanks.
Daniel... more >>
copy from pointer to pointer
Posted by Jason Who at 7/8/2007 7:04:45 PM
I need to make a quick raw copy of a large block of data from one pointer to
another.
Marshal.Copy let me copy from pointer to array and another call can take it
from aray to pointer. That is obviously not optimal.
I can however not find any way of copying BLOCKS of data from pointer to
po... more >>
WAVEOUTCAPS problem
Posted by cnickl at 7/8/2007 2:00:01 PM
Hi,
I trying to get something that seems to be simple to work: I’m using VS
2005/C#. I want to get the information of my WaveOut devices. The WAVEOUTCAPS
structure is defined in C++ as:
typedef struct {
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
TCH... more >>
How to "disable" add and delete button on toolbar
Posted by Troy Bull at 7/8/2007 12:16:28 PM
I have a simple application, that I use the built in navigation bar. I
set the add and delete buttons enabled property to false, and it looks
good, until.. Once I click on the arrow to navigate to a different
record these two buttons re-enable. I have the save button enable set
to false a... more >>
how to repaint a form manually?
Posted by linuxadmin NO[at]SPAM yandex.ru at 7/8/2007 9:23:21 AM
hello!
i want to be able to repaint a class, derived from a form, by myself.
it works automatically, when i do:
protected override void OnPaint(PaintEventArgs e){
base.OnPaint(e);
Graphics g=e.Graphics;
// draw something
}
but how i can call OnPaint by myself?
i tried "OnPaint(... more >>
Monitoring memory usage ...
Posted by Remote_User at 7/8/2007 8:02:22 AM
Hi All,
I am trying to check the memory usage for a process using C#
(.NET 1.1). I found out several properties in the Process class that
was useful. But, my question is after i tried that out and compared
the result with that indicating in the Windows Task Manager they
didn't match?
... more >>
Exception: A socket operation has encountered a dead network
Posted by weird0 at 7/8/2007 2:34:18 AM
I am a beginner to socket programming to in c#. I know the concepts
as to how to program them. I get the above exception when i tried
writing the code for the server side on the line tcpListener.Start()
when i passed the localhost ip and port no. 4000:
Please help...
namespace Server
{
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
|