all groups > dotnet framework > october 2004 > threads for thursday october 21
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
Is it a bug in dotnet.framework? (about GC collection in 1.1 and 2
Posted by Yingkun Hu at 10/21/2004 11:29:06 PM
I tried a small program, found that some local objects can't be automatically
collected by GC. I tried both in 1.1 and 2.0, get the same result.
Below the program, just try it, you will found that the last 3 objects
didn't been released. Does anyone have some idear on it?
namespace TestMem... more >>
XmlSerializer and IDictionary
Posted by Jon Shemitz at 10/21/2004 6:32:53 PM
Why can't the XmlSerializer serialize IDictionary members?
--
programmer, author http://www.midnightbeach.com
and father http://www.midnightbeach.com/hs... more >>
how to convert byte array to float?
Posted by assaf at 10/21/2004 6:31:50 PM
hi all
i am looking for something like:
BitConvertor.ToFloat();
but all i can find is:
BitConvertor.ToDouble();
how can i convert my byte array to float?
assaf
... more >>
Significant Bug with MS Portal Starter Kit
Posted by billd at 10/21/2004 4:53:02 PM
There seems to be a significant bug with the C# Visual Studio version of the
Portal Starter Kit
(http://www.asp.net/starterkits/downloadportal.aspx?tabindex=0&tabid=1).
When adding new tabs you often get duplicate tabs added. Also, the change
tab order feature does not work.
It appears... more >>
Create a network account from program?
Posted by Brent at 10/21/2004 4:07:51 PM
Hi,
We're developing a new HR Recruitment program, and I'm wondering if it is
possible to automatically create a new Windows Network profile for a new
employee? (Active Directory I think). If not through C#, maybe some sort of
batch program or even some sort of mouse recording and capture wit... more >>
.NET Runtime Error, Event ID: 1000
Posted by Aleks A. at 10/21/2004 3:56:50 PM
Greetings all,
I'm getting the following 2 errors, back to back, ever couple of days.
Anyone encountered anything of the sort? After these 2 errors occur, the
asp.net application stops responding. I have to restart the service to get
it up and running again. Any way to trace the problem... more >>
Get Client Socket from TcpClient
Posted by Joshua Ellul at 10/21/2004 3:29:47 PM
Hi,
I have a TcpClient object... I would like to get the remoteendpoint from
this object... how can I do this?
Joshua
... more >>
How to change the Startup Type of a Service with VB.NET?
Posted by DraguVaso at 10/21/2004 2:23:04 PM
Hi,
How do you change the Startup Type of a Windows Service with VB.NET?
When using the ServiceController you can Start and Stop a Service, but I
can't find anywhere how to change the Startup Type?
Thanks a lot in advance,
Pieter
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Failed .NET Framework Install
Posted by Keith C at 10/21/2004 1:27:04 PM
Hi,
I've several unsuccessful attempts to install the 1.1 Framework on an XP SP2
(with non-essential servives stopped, firewall disabled, virus checker
disabled, etc). The end result is always an error at the end of the process:-
'Error 1937. An error occurred during the installation of asse... more >>
Application, IDataObject, Dataformats, Clipboard not declared/defined in a Class Library?
Posted by DraguVaso at 10/21/2004 1:04:10 PM
Hi,
I made some application (VB.NET 2005) based on classes in Windows Forms. I
made a new Class Library Project and copied all of my classes and modules in
it, to make a DLL that I could import afterwarths in Windows Forms
applciations.
The problem is that I get several errors indication th... more >>
Event Log Replacement Parameters and WriteEntry() - Are replacement parameters deprecated?
Posted by mszak50 NO[at]SPAM hotmail.com at 10/21/2004 1:00:33 PM
In the win32 function ReportEvent() function has a parameter in which
one can pass replacement parameters that will be substituted in the
message text.
Is there an equivalent function in the .NET framework? Is this style
of event log recording going to be deprecated?
Or am I just missing so... more >>
garbage collection
Posted by Sebastiaan Olijerhoek at 10/21/2004 11:47:44 AM
Garbage collection in .NET works fine. But as soon as two objects have
strong references to eachother (e.g. if you add an eventhandler) then the
references must be destroyed manually (e.g. in the Dispose methode) before
the garbage collection will remove the objects.
For the older C++ compiler... more >>
How to know the Version of a DLL used in the application?
Posted by DraguVaso at 10/21/2004 10:16:47 AM
Hi,
Does anyone knows how to determine the version o a dll used in a
application?
I have an application that uses a dll from another company, but
unfortunately that dll is sometimes more than one a a pc, and I want to knwo
which one (which directory) it is using, and which version. It's the... more >>
Extending intrinsic classes
Posted by A Traveler at 10/21/2004 9:53:07 AM
Hello all,
i was just curious if anyone whos been playing with VS2005 could tell me...
In javascript (and java??) you can alter the prototypes for an object in
your project. I dont remember the syntax exactly, but basically you do
something like:
function String.prototype.mySplit(myArgs... more >>
File locking issue in mscorlib.dll
Posted by Dr Q at 10/21/2004 9:45:08 AM
After accessing an image file in my VB.Net application, then disposing of the
form which accessed the file and loading another form in the same app, I'm
attempting to copy said image file into an instance of the XPBurn component.
This is throwing an exception with the following text:
An unha... more >>
How to configure Visual studio to load web project from port 8000 as default?
Posted by Rudy Ko at 10/21/2004 9:05:19 AM
Dear All,
I have Apache using port 80. So I changed IIS to use port 8000 as
default web service. After that all my .net projects were not able to load
into Visual Studio .net. Do you know how to configure Visual Studio .net to
load web projects from port 8000? Thanks for the help!!!
Tha... more >>
c# vmi sql
Posted by StefanT at 10/21/2004 4:09:07 AM
Hi,
I would like to set or to get some information from a ms sql server, E.g.
setting the culture of the server for date.
What can I use to do that ?
Best regards,
Stefan... more >>
Monitor.Wait(object, timeout) confusion
Posted by felix666007_no_solicitation NO[at]SPAM yahoo.com at 10/21/2004 3:02:27 AM
I am a little new to windows synchronization, and I was very confused
for a bit by the documentation for Monitor.Wait.
It currently reads:
//Releases the lock on an object and blocks the current thread until
it reacquires //the lock or a specified amount of time elapses.
public static bool ... more >>
|