all groups > c# > december 2003 > threads for sunday december 7
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
Thoughts on garbage collection
Posted by Rein Petersen at 12/7/2003 10:38:20 PM
Is there any way to adjust thread priority for the garbage collector?
Would be nice if I could tune the thread priority rules for the garbage
collector too...
From my readings of the process, when memory becomes limited, the garbage
collector is moved up in priority. I believe they must be o... more >>
Creating ACH-style text files from Datasets in C#
Posted by Todd_M at 12/7/2003 10:17:47 PM
I was wondering what anyone might suggest as "best practice" patterns for
streaming out fixed formatted text files with C#? Let's say we get our data
in a dataset table and we need to iterate over thousands..potentially tens
of thousands of rows to create a properly formatted text file -- like an... more >>
UDP Listen on same port by two apps at same time
Posted by mBird at 12/7/2003 9:02:28 PM
I wrote a service that listens for broadcast messages from my firewall (UDP
snmp trap messages) and parses and puts the data in an database.
I'd also like to write an app that is a simple form that can listen in when
it runs (so I can see messages in a form as they occur.)
So I need the abil... more >>
Find out if a program is running
Posted by Pengyu Hong at 12/7/2003 7:41:11 PM
How to find out if a program already has an instance running?
Thank you very much in advance
Pengyu
... more >>
logout the previous session for the same user
Posted by vincent at 12/7/2003 7:33:52 PM
Hi,
If i login to the site again (may be in the same pc or
different pc), system must allow me in and end my previous
session.
How do i go about doing this?
This is to ensure that an user can have only one session
at a time.
thanks
Vincent... more >>
Escaping parts of a URI
Posted by Paul E Collins at 12/7/2003 6:52:19 PM
I need to escape character strings for use in a URI (as described in RFC
2396).
Uri.EscapeString does what I want, but it is inaccessible due to its
protection level.
How can I achieve this?
P.
--
www.CL4.org
... more >>
GetMethod
Posted by Picho at 12/7/2003 1:21:10 PM
Hi all,
when using the GetMethod method to discover object methods at runtime, we
are suposed to pass an array of types as parameters.
My simple question is this:
how do you state that one of the parameters is by reference (i.e. void
myMethod(ref object) )?
in other words, if I have the ... more >>
Get Function name
Posted by Mike Oliszewski at 12/7/2003 12:33:30 PM
Is it possible for a c# function to get it's own name ? We have LOTS of
logging calls for which the programmer has to manually add the name of the
function as part of the output, often people copy code from one area to
another and then forget to update the name. It would be really slick if we
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
What is the best way to remove all references of an object?
Posted by Robert Zurer at 12/7/2003 9:46:06 AM
I have a large pool of business objects all referencing one another in
various ways.
In the client application I want to do something like
employee.Delete();
Behind the scenes, I want to remove all references to the object
allowing it to be garbage collected. I then want to remove the ... more >>
Application.ThreadException
Posted by Rakesh at 12/7/2003 4:45:42 AM
Hi,
I am catching unhandled exception by attached an event
handler on the Application.ThreadException event. This
will ensure that I could handle all uncaught exceptions
on the main thread.
But, suppose I create a new thread within my app and an
unhandled exception is generated in tha... more >>
How to Link a Win32 DLL?
Posted by James at 12/7/2003 3:09:53 AM
Does anybody knows how a link a win32 dll to c#? I'm particularly
interested in linking the Opengl32.dll,glu32.dll to c#. I have seen the
CsGL and tao Project however i would like to know how to do it without the
tao or csgl.
Thanks
James
... more >>
how to avoid child form create twice
Posted by pei_world at 12/7/2003 2:27:33 AM
I have two forms, one parent form, one child form.
... more >>
Add NTFS/FAT Shares.
Posted by Dan Amiga at 12/7/2003 1:18:19 AM
Seeking for a way to create/remove a share on local computer using the .NET.
10x,
@miga.
... more >>
how to cancel a form to closing
Posted by pei_world at 12/7/2003 12:34:00 AM
I have a Window form app, How can I stop its exiting...
thanks
... more >>
Regular expression : Grouping decimal values and double quote
Posted by Ahmad A. Rahman at 12/7/2003 12:26:24 AM
Hi all,
I have a problem constructing a regular expression using .net.
I have a string, separated with comma, and I want to group the string
together but, I failed to group a numeric character with decimal values.
Example string : 1, 2.3, "two"," three"
So, I want to group this string i... more >>
|