| Thread | Last Post | Replies |
|
| Missing X509Certificate2UI class | 30 Dec 2005 01:42 GMT | 1 |
I can not seem to find the X509Certificate2UI class. I have read: http://download.microsoft.com/download/e/3/8/e38818ae-31e5-462b-b9ad-e6d3cd6ad7c 1/Breaking%20Changes%20Beta2%20to%20RTM.doc I can not find the methods to display a certificate in the OLD locations either.
|
| 'System.Web.Mail.SmtpMail' is obsolete | 29 Dec 2005 23:39 GMT | 1 |
Hi... I'm trying to convert a 1.1 application to 2.0. Trying to send email using code like this: Dim strTo As String = "eMail@server.com"
|
| Closing a window | 29 Dec 2005 23:17 GMT | 4 |
Hopefully, someone can help out: I'm working on a program to close a specific application after X minutes of inactivity. I have all of the code working to identify the main window and close it, but I'm having an issue identifying when any
|
| Assembly serialization | 29 Dec 2005 20:22 GMT | 2 |
There is many topics about the subj but no one answering the question... Is there any way to serialize an assembly? The case of reading from disk as stream seems like bad solution because
|
| Assembly.Load() cause BadImageFormatException | 29 Dec 2005 20:16 GMT | 7 |
FileStream fs = new FileStream(fileName, FileMode.Open, FileAccess.Read); Byte[] body = new Byte[(int)fs.Length]; fs.Read(buffer, 0, buffer.Length);
|
| C++ sytnax for thread locking | 29 Dec 2005 19:30 GMT | 3 |
All, I have a WindowsForm app and am happily getting data from my DLL which is on a different thread than my UI. I have now arrived at the situation where I need to lock the data that is being communicated.
|
| Console Writes from Multiple Threads | 29 Dec 2005 18:34 GMT | 2 |
In a VB 2005 Console Application, can multiple threads write to the console without causing problems? I know this is a quick way to destabilize a Windows Forms application. Mike Ober.
|
| System.Timers.Timer | 29 Dec 2005 09:35 GMT | 4 |
Is it true that System.Timers.Timer runs on a seperate thread, using the thread pool. if so, it means that the elapsed callback will never be on the context that the timer was created in.
|
| DataGridView (.NET 2.0 Control) question about formatting | 29 Dec 2005 09:26 GMT | 4 |
I have what I think should be a simple question about formatting a column in my datagridview control as currency. I used Visual Studio 2005 to add a column to my DataGridView control named "Price". I set the DefaultCellStyle.Format value to "C2" indicating that I
|
| Assembly.Load(Byte[] buffer) creates duplicity | 29 Dec 2005 08:36 GMT | 1 |
I'm trying to load in run-time some assembly with its referenced assemblies. If i calling to Assembly.LoadFrom() function all works clear. The problems start when I use buffering.
|
| Help needed on implementing timer functionality in web application | 29 Dec 2005 04:46 GMT | 2 |
I'm developing an online fun game called tambola... The requirement is as follows Each logged user will have a ticket generated for him.. The system should display the numbers from 1 to 99 after every 10 secs....
|
| set autosize of datagrid to no | 29 Dec 2005 04:23 GMT | 1 |
How can I set the datagrid autosize properties to be zero? as I don't find this properties in datagrid. The situation is that I have set the datagrid width to be 200px but when I auto create columns in datagrid and it occur the whole width of the page in
|
| How can I "script" changes to .net trust levels? | 29 Dec 2005 00:31 GMT | 2 |
I am trying to "fix" a program for a friend of mine. He has an applet that starts a TWAIN scanner through a web interface. Problem is, for some reason, his software will only work if the .NET security for "my computer", "local intranet" "internet" Trusted sites" and "untrusted ...
|
| Login Control used with existing SQL DB | 28 Dec 2005 21:19 GMT | 1 |
I'm creating my first 2.0 web application. I want to use the login control to validate users using my existing SQL 2000 database (using email address and password) I can't find a tutuorial to do this...they always seem to want me to
|
| The parameter is incorrect error | 28 Dec 2005 19:54 GMT | 2 |
I have a VB6 COM object. The COM object is working fine when I use it in VB.net. But when I use the same code in ASP.net 1.1 I am getting "The parameter is incorrect" error. I have the AspCompat="True" on my web page. Any help on this would be
|