| Thread | Last Post | Replies |
|
| sending mails bounced to address different from sender address | 15 Apr 2006 13:34 GMT | 2 |
i have a very specific question regarding emails sending and googling doesn't help me is a way exists to send email using .NET framework (System.Web.Mail or something else)
|
| compare byte[] | 15 Apr 2006 07:47 GMT | 4 |
I'm looking for the easiest way to compare the content of two byte[] for equality. Doing a "==" or Equals() compare the reference and not the content. Any ideas? Etienne.
|
| Possible to install .NET Framework via ActiveX? | 14 Apr 2006 23:13 GMT | 1 |
Forgive me if this is naive, but can I install the .NET Framework 2.0 via an ActiveX which is embedded in an HTML page? In addition, I want to register some 3rd-party COM/ActiveX components and then install a few assemblies in the GAC.
|
| DataGridTableStyle Mapping name when using BindingSource | 14 Apr 2006 17:09 GMT | 2 |
I can't figure out what the MappingName property should be set to when the DataGrid is bound to a BindingSource. The bindingSource can be bound to a Foo[] or a List<Foo>. But neither of those settings cause the grid to display the correct TableStyle. Is this feature broken in the ...
|
| I need an workaround for Regex limitation | 14 Apr 2006 16:07 GMT | 1 |
I noticed a strange behaviour, strange from my point of view anyway. Let's say I have the regex expression: "^\w+". When I do: Let's say s = "first second";
|
| Assemblies resigned/recompiled when referenced assembly patched | 14 Apr 2006 15:26 GMT | 1 |
A question from my client concerning assembly signing conventions: In order to get our main code to run inside of .NET Enterprise Services, we need to give it (and all other assemblies referenced by our main code) a strong name key. We know how to do this by running SN -K and ...
|
| Menu / Tool Strips.. | 14 Apr 2006 15:15 GMT | 2 |
Why wasn't the toolbar, menu bar items developed as a single BarItem and then allowed us to build as Toolbar or a MenuBar. This way I could just have one click event. I do have in my code in a method for say a toolbarItem click.. But when I add the same to a menu, I have to ...
|
| Process priority problem! | 14 Apr 2006 14:07 GMT | 1 |
Using set priority option in task manager I've changed priority of my service to RealTime. Now when I try to return to Normal I receive "Access denied" message. I tried to uninstal service, build new version, delete registry entries and when I start that new version the priority ...
|
| Monitor.Wait problem | 14 Apr 2006 10:32 GMT | 6 |
Hi, I am relatively new to NET Threading and learning from net examples and books I got a problem that is not mentioned anyware. Let's say thread1 does following: Monitor.Enter(o);
|
| How to block loading of BHO and band objects into explorer.exe process | 13 Apr 2006 21:20 GMT | 1 |
I have developed a managed BHO and band objects which work almost OK. One of two problems I currently face is that they are always loaded into explorer.exe processs when folder browser window is open (they are not
|
| garbage collection for hastable. | 13 Apr 2006 20:32 GMT | 5 |
I am writing a class to cache xml and dataset objects that would be required frequently by my application. I also have a time to check the last access of the obect... If the object is not used for some time I would like to remove it from the cashe to free memmory. I am using ...
|
| How can I fix Big BUG in PersianCalendar Class? | 13 Apr 2006 18:45 GMT | 3 |
When I try to use example in the PersianCalendar Class help I found this big bug: PersianCalendar jc = new PersianCalendar(); DateTime thisDate = DateTime.Now;
|
| Attempted to read or write protected memory. This is often an indication that other memory is corrupt | 13 Apr 2006 17:45 GMT | 6 |
Have just switch from 1.1 to framework 2.0 and i´m getting this error : Attempted to read or write protected memory. This is often an indication that other memory is corrupt anyone have a clu why ?
|
| "Cross-thread operation not valid" without threading!! | 13 Apr 2006 15:28 GMT | 3 |
In my VB.NET 2005 application I'm generating and sending emails using the outlook-object model (2003). When a mail is Send (MailObject_Send), I raise an event in a global class, that is caught by all my forms that than refresh the lists with emails.
|
| HashTable stores whole object as Key NOT the result of calling GetHashCode on the object when you do myHashTable.Add? | 13 Apr 2006 14:31 GMT | 3 |
I was testing my understanding of Hashtables and I thought that if I override GetHashCode then i could add an object to hashTable like so: Dim ht As New Hashtable ht.Add(s1, s1)
|