| Thread | Last Post | Replies |
|
| How to create a form form its class name stored in a string | 09 Dec 2005 09:47 GMT | 4 |
I would like to create a form dynamically from its class name stored in a string. For ex. in pseudo-code: class MyForm : Form
|
| Convert.ToBoolean("1") leads to exceptions | 09 Dec 2005 07:04 GMT | 2 |
from MSDN http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cp conconvertingstringstonetframeworkdatatypes.asp String to Boolean The following table shows what type is generated for the given input
|
| exception inside lock before lock body | 09 Dec 2005 06:10 GMT | 1 |
exception inside lock before lock body lock(foo()){bar();} what will happen if foo() throws an exception? will there be a lock on the exception?
|
| Performance slower in .Net FW 2.0 | 09 Dec 2005 05:00 GMT | 5 |
I am creating a new VB.Net Windows App project in VS 2005 and VS 2003 and copying the code below into the Form1 class. If I compile as Release, and run, I am seeing this app when run under .Net 2.0 (VS 2005) performing 3-4 times slower than the one compiled under .Net 1.1 SP 1 ...
|
| double buffer in C# | 09 Dec 2005 02:04 GMT | 2 |
Hello Gurus! I really need this one to finish a module in my thesis. PLease please help me. I need a double buffer class in C# so i can call it and use it anytime i want,
|
| Debugging external classes | 09 Dec 2005 00:49 GMT | 3 |
I'm having troubles getting the debugging process to work consistenly for external classes. I got it to work once and then I turned it off. But now I can't get re-enabled. Here is what I'm doing. If someone could tell me what I'm missing that would be great.
|
| .Net datetime comparisons to Javas getMilliseconds UTC time | 08 Dec 2005 22:28 GMT | 4 |
I don't seem to be able to find anything in .NET that will return a value that I can compare to this. I'm being passed the msec from the java call and need to compare it to my system date for security reasons. How can I go about this? How to get an equivalent in .NET or ...
|
| How do I make a MailMessage with multiple recipients? | 08 Dec 2005 21:01 GMT | 3 |
System.Net.Mail.MailMessage has a constructor that takes two string parameters (from and to). To is described as: "A String that contains the addresses of the recipients of the e-mail message."
|
| .NET 2.0 Wizards | 08 Dec 2005 19:01 GMT | 2 |
Visual Studio 2005 includes a library Microsoft.WizardFramework for creating wizards but I can't find any documention on it. Does anyone know anything about this namespace, or if there some documentation out there somewhere? As far as I know it's not supported yet.
|
| Is .Net Framework biult on top of COM? | 08 Dec 2005 16:56 GMT | 2 |
I'm just wondering what's behind of .Net Frameworks. Is .Net Framework biult on top of COM? Larry
|
| Access | 08 Dec 2005 16:12 GMT | 2 |
OK, I have an access addin. On startup, I can open my database and enumerate the tables in the database: ...
|
| Data property in System.Exception (2.0) | 08 Dec 2005 16:08 GMT | 1 |
The Data property in System.Exception in .NET 2.0 allows you to add serializable objects to it. However when the exception crosses app domian boundaries, the contents (of Data property) are not serialized. The Data property of the exception in the received app domain is empty and ...
|
| App.Config change doesn't affect My.Settings? | 08 Dec 2005 15:14 GMT | 2 |
I'm using the Settings.settings of VB.NET to define a Connectionstring (Scope = application). When I deploy the Solution, and change this Setting in the app.config-file, it seems that itdoesn't affect the Application at all! It still uses the old value. Are the Settings.Setting ...
|
| Socket Error? | 08 Dec 2005 10:37 GMT | 1 |
I wrote a few lines of code to send a UDP packet to a remote machine. What worries me is the program code says it sends the data regardless of the remote IP or port. If the IP is ok , a sniffer verifies the packet was sent. However, if I give the sendto statement a bogus IP or port ...
|
| Sharing Config File Between Processes | 08 Dec 2005 10:23 GMT | 5 |
Is there any way to specify the location of the config file that I want the app to use? I have multiple processes that work together and share most of their configuration data. I only want to store it in one location. I have looked at the Configuration App Block, and that is ...
|