| Thread | Last Post | Replies |
|
| System.Net.Mail.SmtpClient error | 14 Dec 2005 12:52 GMT | 2 |
MailMessage message = new MailMessage(); message.From = new MailAddress("ak@eka.com.ar","Alejandro"); message.To.Add("ak@eka.com.ar"); message.Subject = "Something";
|
| passing a helpcontext ID to a chm file | 14 Dec 2005 12:02 GMT | 1 |
How to pass a helpcontext ID to a chm file in a C# windows Dotnet application. i am able to open the chm file and see the list of contents ,but on click of a particular help topic how to pass the helpcontext id ?
|
| GAC Problem | 14 Dec 2005 10:57 GMT | 2 |
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.
|
| Select Max Value | 14 Dec 2005 10:50 GMT | 4 |
Hi I have a table with control_no --------------------
|
| How many can String Array Hold? | 14 Dec 2005 10:35 GMT | 2 |
dim sName() as string = AllNames.Split(" ") How many values can sName() hold? Thanks in advance! :-)
|
| SQL query on in-memory data | 14 Dec 2005 09:38 GMT | 2 |
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
|
| How to set less restrive passwords for the CreateUserWizard control? | 14 Dec 2005 04:30 GMT | 1 |
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
|
| How to marshal to UI thread in managed code | 14 Dec 2005 03:15 GMT | 3 |
I have a worker thread that needs to call a method that only works on the main/UI thread. One way to accomplish this in managed code is to use Control.Invoke. However, in my case I don't have a .NET UI control from which I can call Invoke. I have tried to create a temporary, ...
|
| Service question in c# .Net 2.0 framework | 14 Dec 2005 02:35 GMT | 3 |
I am looking for a way to cleanly stop my service in the event of an error. Within the worker thread, if an unrecoverable error is caught, I would like to stop my service. Exiting the worker thread doesn't seem to do it. Using the SCM to stop the service doesn't feel right. ...
|
| License mechanism for my application | 14 Dec 2005 01:24 GMT | 4 |
I would like to integrate a license mechanism into my application. How can I do that? The application should run only 30 days, if the user hasn't a valid license! Then, he has to insert a valid lincse to use the application again.
|
| Detect .net Framework version running | 14 Dec 2005 00:08 GMT | 2 |
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?
|
| MessageBox.Show | 14 Dec 2005 00:04 GMT | 3 |
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 ...
|
| #develop: The Open Source Development Environment for .NET | 13 Dec 2005 20:42 GMT | 2 |
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/
|
| How do I keep parameters from being mixed up using Multithreading? | 13 Dec 2005 20:23 GMT | 5 |
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
|
| Seeking NNTP Classes..... | 13 Dec 2005 18:38 GMT | 4 |
Have you seen any NNTP classes that I may use or build upon to build a simple newsreader/downloader? Is there such a class in the .Net framework that I have overlooked? If not, inclusion of RFC documented protocols would certainly be a good idea for a
|