all groups > dotnet general > december 2005 > threads for tuesday december 13
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
Thread safe
Posted by Newbee at 12/13/2005 9:02:29 PM
Looking for some suggetions on the following..
I have an array that gets filled by multiple application. Same instance
of this array(static array) will be accessed by multiple applications.
ie there will be applications that fill this array and som application
applications that retrieves ele... more >>
System.Net.Mail.SmtpClient error
Posted by Alejandro Kwiatkowski at 12/13/2005 7:27:26 PM
MailMessage message = new MailMessage();
message.From = new MailAddress("ak@eka.com.ar","Alejandro");
message.To.Add("ak@eka.com.ar");
message.Subject = "Something";
message.Body = "Something else";
NetworkCredential nc = new NetworkCredential("ekaak", "xxx");
SmtpClient mailClie... more >>
MessageBox.Show
Posted by Kiyomi at 12/13/2005 6:05:05 PM
Hello,
I use in my application MessageBox.Show and it works perfectly when I run
this application on my local computer (http://localhost). When I diployed
this application on the server, however, it does not work. It does not give
me even an error message, but the screen is just freezed (it ... more >>
Detect .net Framework version running
Posted by George at 12/13/2005 3:28:18 PM
I have an app that was built with .net 1.1.
It loads but does not work with 2.0.
On starting the application I want to add a check to see the version of
framework that is running and if it is 2.0 add an error. how do I do this?... more >>
Java...it's so Nineties!
Posted by John A. Bailo at 12/13/2005 3:01:02 PM
http://yahoo.businessweek.com/technology/content/dec2005/tc20051213_042973.htm
"Reports by Evans Data Corp., which does annual surveys of the
activities of software developers, show Java use is slipping as LAMP and
Microsoft's (MSFT) .NET technology gain traction. In North America, the
pe... more >>
Server & Trace in a Helper Class?
Posted by WB at 12/13/2005 11:19:04 AM
Hi,
How can I access Server and Trace within a helper class?
I have a webform that allows user to select a PDF file (on the web server)
and render a jpeg image of that PDF file. The helper class has a method like
this:
public void ProcessFile(string virtualPath, string outputFilename)
... more >>
#develop: The Open Source Development Environment for .NET
Posted by John A. Bailo at 12/13/2005 10:57:22 AM
I've been following these guys for a while and use their GPL'd
ICSharpZip library quite a bit.
The #develop seems to be getting better and better.
http://icsharpcode.net/OpenSource/SD/
#develop (short for SharpDevelop) is a free IDE for C# and VB.NET
projects on Microsoft's .NET p... more >>
SQL query on in-memory data
Posted by ajay at 12/13/2005 9:09:01 AM
Hi
I need to read data from flat files in memory and execute SQL query on
the in-memory data. I do not have an option of using a database and I
am using c# .Net to build my application. Does anyone know whether it
is possible to make SQL query on datasets or on XML data for that
matter. Or is... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
How do I keep parameters from being mixed up using Multithreading?
Posted by mrkbrndck NO[at]SPAM newsgroup.nospam at 12/13/2005 8:46:04 AM
Please see the code below as I am trying to use multithreading for copying
files to a new location in a way that improves performance of the client
windows application.
The problem occurs when 2 or more threads are created, the ImportOneFile
method attempts to add a previously added file. ... more >>
Visual Studio 2005 Trial Edition
Posted by Tim C at 12/13/2005 8:21:03 AM
I have a simple question...Is the visual studio 2005 trial edition that may
be ordered (that is currently on backorder) simply the beta 2 release? Or is
there any other changes that were made.
The reason that I ask is that all of the order confirmations state "beta 2"
and "visual 2005 trial... more >>
How to set less restrive passwords for the CreateUserWizard control?
Posted by Ron at 12/13/2005 7:32:56 AM
I am using the CreateUserWizard control in my asp.net2.0 app.
For my needs the enforced password strenght is to strong; I want to
allow users to be able to create
passwords with only text and not force them to use a non-alfanumeric
character as well as a digit.
Setting the EmailRegularExpress... more >>
How do I get the Machine Number?
Posted by Steve at 12/13/2005 5:56:02 AM
C#
As the title says.....How do i obtain the Machine Number of the machine my
code is running on in C#??
Thanks
Steve... more >>
Wish: How to generate image of possible browser view for HTTP Resp
Posted by Rajiv Das at 12/13/2005 5:17:03 AM
C# 2.0
XP SP2
In My Code, I am using HttpWebRequest to visit a particular URL. I am
required to generate a snapshot image (if this request were made through say
IE) and save as jpeg. About .1 million such requests are made in a cycle.
What's the possible solution ?
-----------------... more >>
GAC Problem
Posted by bbembi_de NO[at]SPAM lycos.de at 12/13/2005 3:46:17 AM
Hello everyone,
I have a application that uses IIOP.Net to communicate between Java and
..Net.
I use a exe that references to my dll with the remoting interfaces.
That works fine.
Now if I put the dll with the remoting interfaces in the GAC it doesn't
work anymore.
I get a ClassCastExceptio... more >>
|