all groups > dotnet framework > february 2006 > threads for friday february 10
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
Xml-Rpc + Mysql.NET = Threading problem
Posted by # Cyrille37 # at 2/10/2006 4:08:27 PM
Hello all,
I come to you to getting help for managing multi threading and database connection.
My project use Xml-Rpc to receive messages, so each call come from a different
thread.
Incoming calls are executing SQL on a MysqlConnection.
MysqlConnection does not like when concurents calls a... more >>
Regular Expression Question
Posted by Axel Dahmen at 2/10/2006 3:54:20 PM
Hi,
I want a regular expression to be any word character except "1".
Unfortunately I can't think of a pattern to use. Although it could be
/[a-zA-Z_02-9]/ I guess there must be a Unicode-proof version using /\w/.
Anyone?
Your help is quite appreciated.
Best regards,
Axel Dahmen
... more >>
Assembly Versioning for Multiple Frameworks and Platforms
Posted by Bill Henning at 2/10/2006 3:23:44 PM
I have been searching high and low for an answer to this but can't find it.
Any help is greatly appreciated. My company develops .NET user interface
controls. We have customers who want builds of our products in .NET 2.0 and
others who want builds for native 64-bit. Additionally we have to ... more >>
Visual Studio will not allow me to unsign my projects
Posted by anonymous at 2/10/2006 2:25:16 PM
I"m working in Visual Studio 2005. We decided to sign our assemblies, and I
did so through the properties page for each project. Unfortunately we've run
into problems since I signed the assemblies, and we've decided to not sign
them for now. So I went into each project to unsign the assembl... more >>
Detecting/grouping a series of files
Posted by Neil West at 2/10/2006 1:50:27 PM
Given a directory full of digital photos with file names like
new york skyline 1.jpg
new york skyline 2.jpg
new york skyline 3.jpg
new york skyline 4.jpg
new york skyline 5.jpg
statue-of-liberty-1.jpg
statue-of-liberty-2.jpg
statue-of-liberty-3.jpg
statue-of-liberty-3.jpg
statue-of-liber... more >>
How can I get a list of web sites hosted by IIS?
Posted by Michael Bray at 2/10/2006 12:45:13 PM
I need to be able to list web sites hosted on the local machine by IIS so
that I can install my web app to the correct directory (I don't want to
install to the 'Default Web Site'.)
-mdb... more >>
Run Winapplication from shared directory or Net Map Drive
Posted by Alvaro at 2/10/2006 12:38:30 PM
Hi;
I have a winapplication placed on shared directory of Linux server using
Samba.
The application reaised System.Security.SecurityException.
How can i solve this problem?
regards...... more >>
Framework v2.0 - File.Copy Bug - Could someone confirm this?
Posted by Simon Murrell at 2/10/2006 12:36:27 PM
Hello
I recently copied some code over from a project in .NET Framework v1.1
to v2.0. And found that when I copied a file and then tried to delete it
afterwards,
an exception ocurred saying that the file was being used by another process.
I then used the .NET Reflector tool and went into th... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Launching file associated with an application?
Posted by Marlon R at 2/10/2006 10:53:51 AM
What is the object and method (Win32 Api if there is no framework classes)
to use to start an application by using the non executeable file?
e.g. Starting Word by launching a word file (.doc)
... more >>
File in use
Posted by vul at 2/10/2006 10:46:49 AM
I'm developing Windows Service which is going to listen MS Fax service
events and update the database when Fax Job changed its status.
I need to read OutboxLOG.txt which is used by MS Fax service.
I either would like to copy it and to work with its copy to use its data
for a database update o... more >>
VS8 can not connet to the source safe server
Posted by csharpdevp NO[at]SPAM yahoo.ca at 2/10/2006 7:41:28 AM
Hi
When I tried loading my project in VS8 today, it gave the following
error:
"could not find the visual sourcesafe internet web service connection
information"
I find this strange as I never set up any sort of web service
connection and was just connecting to a server on another compute... more >>
Using C# XML comments to document
Posted by Andrew at 2/10/2006 7:13:28 AM
C# XML comments are great, and I way prefer in-code documentation to
out-of-code documentation, but what're some of the ways to generate
out-of-code docs?
I used to use NDoc, but support isn't great for C# 2.0
I remember an HTML document generator in VS 2003, but I can't seem to find
it ... more >>
Problem with removing file.dll from application
Posted by Robert at 2/10/2006 6:58:28 AM
Helo
The Application makes kod.cd file.
After that I use:
CodeDomProvider provider = new CSharpCodeProvider();
and so on - as NSDN shows - Ctr+C and Ctr+V -> working fine.
After good compilation I call SYM object
public class SYM : KOD
{
call some function from K... more >>
Textbox viewstate
Posted by Griff at 2/10/2006 6:56:31 AM
I have read that the values of disabled and readonly textboxes are not saved
to the viewstate on postbacks in .NET 2 for security reasons.
However if the value of the textbox is set on the server on page load
shouldn't this value be persisted during postbacks? It doesn't seem to be at
the mo... more >>
compiling other languages? or mixing with gcc?
Posted by Lloyd Dupont at 2/10/2006 12:00:00 AM
I have a project which includes some langage not supported by Microsoft (but
supported by GCC, namely ObjectiveC), as well as C#.
I have huge problem debugging sometimes.
Does anyone have a tip about a tool I could use to have a seamless compiling
/ debugging experience which mix both langua... more >>
|