| Thread | Last Post | Replies |
|
| File locking issue in mscorlib.dll | 21 Oct 2004 21:57 GMT | 3 |
After accessing an image file in my VB.Net application, then disposing of the form which accessed the file and loading another form in the same app, I'm attempting to copy said image file into an instance of the XPBurn component. This is throwing an exception with the following ...
|
| Strong Named Assemblies and Non Strong Named assemblies | 21 Oct 2004 19:55 GMT | 1 |
I have a third party .net assembly that I do not have the code for and it also does not have a strong name. I want to strongly name my assemblies but I keep getting an error saying that the 3rd party assembly is not signed.
|
| garbage collection | 21 Oct 2004 19:28 GMT | 3 |
Garbage collection in .NET works fine. But as soon as two objects have strong references to eachother (e.g. if you add an eventhandler) then the references must be destroyed manually (e.g. in the Dispose methode) before the garbage collection will remove the objects.
|
| Get Client Socket from TcpClient | 21 Oct 2004 18:52 GMT | 1 |
I have a TcpClient object... I would like to get the remoteendpoint from this object... how can I do this? Joshua
|
| Installer Custom Actions - Missing InstallState on rollback | 21 Oct 2004 18:09 GMT | 4 |
When installing an MSI installation containing a number of custom actions, if the installer fails on the first custom action, during rollback, the installer will display an error dialog complaining that it cannot find the InstallState files for each custom action. And no wonder, ...
|
| embed resource file to output | 21 Oct 2004 17:48 GMT | 2 |
I am writting an application that uses the ResourceManager to access resources. For the default resource assembly I am trying to embed the MyApp.resources file to the exe. If I do this on the command line: csc /t:winexe /res:MyApp.resources /out:MyApp.exe MainForm.cs
|
| Ontologies - OWL | 21 Oct 2004 13:24 GMT | 3 |
Anyone doing other than XML Schemas in dotNET Framework? I'm intrested in an editor that does OWL variants, and (badly needed) something like the Protege project with its extensibility. Is this going to happen with Visio or an add-in to Visual Studio, sometime
|
| how to abort a blocked thread? | 21 Oct 2004 10:39 GMT | 7 |
I´d like to know if there is a way to finish a running thread in a blocking operation. If i don´t abort thread, what happens with thread when parent application finish?
|
| ICryptoTransform.TransformFinalBlock behavior (bug?) | 21 Oct 2004 07:16 GMT | 1 |
When using RijndaelManaged in CBC mode, I believe that ICryptoTransform.TransformFinalBlock() is behaving "wrong". After a call to TransformFinalblock is made, it seems like the class is resetting the CBC state with the intial IV. This makes it act more
|
| Capitalization style of methods and properties | 21 Oct 2004 07:05 GMT | 1 |
I've just started using .net, so I can use ECMA scripting across all the sites I develop (in the browser with JScript/JavaScript, Flash with ActionScript and server side with JScript). However, apart from the .Net framework all the other objects and class
|
| GUI Application Design - Multiple apps | 21 Oct 2004 06:49 GMT | 1 |
I have been considering how to personalize mini functional applications and I was wondering if there is an easy way to do the following for an client application design a) User runs myapp.exe
|
| How to send events from one windows app to another windows app | 21 Oct 2004 03:52 GMT | 1 |
I have a context menu program and am wanting to send information from it to a windows application. The Windows app has the delegate method defined to catch the event The Context Menu App is wired to send the event with the exception of
|
| Currency type in .NET | 21 Oct 2004 02:00 GMT | 3 |
Is there a currency type in the .net framework similar to the COM CURRENCY type ? I have not been able to find one and before I create my own, I wanted to check.
|
| whidbey runtime installation | 20 Oct 2004 23:05 GMT | 2 |
Just doing some ahead planning... where can I get just a runtime installation of the .NET framework 2.0.
|
| windows v.s. C# data types | 20 Oct 2004 21:59 GMT | 2 |
I am wondering if anyone knows a site that list all the corresponding windows data types in C#. I often confuse what data type to use when importing a function from Win32 DLL. Windows data types =
|