| Thread | Last Post | Replies |
|
| Can you detect when your assembly is loaded? | 19 Jul 2005 00:09 GMT | 2 |
I'm writing a class library that will be consumed by other applications, both web and form, and may also be loaded dynamically. I need the assembly to perform some validation immediately after it is loaded, and possibly shut itself down. I cannot find an event or mechanism to ...
|
| GDI+ and World transformations | 18 Jul 2005 23:44 GMT | 2 |
I need to draw some graphics in a control, and I want the Y-axis to grow form down to top. The matrix I'm using is a combination of translation, scaling and translation, But when I try to combine with a reflection in the Y-axis, the transformation get "sheared", and the graphics ...
|
| Strange Problem with Interface | 18 Jul 2005 22:59 GMT | 4 |
Ok, I have a strange problem. I have a DLL that defines a couple of interfaces. They just have a few properties and a couple of functions in them. Now, I create a new Windows Forms project and add a reference to that DLL. Now, before I do anything, I run the project. A blank ...
|
| How to know whether a serviced component comes from a pool or not | 18 Jul 2005 21:38 GMT | 6 |
For debugging purposes, it may be useful to know whether an object that has been constructed from a client (via a new XX) is going to come from a pool (assuming pooling is enabled for that serviced component) or not. All I have been able to find is ServicedComponent.Activate which ...
|
| usage of listview control in asp.net | 18 Jul 2005 18:55 GMT | 1 |
is it possible to use listview control in asp.net. if so hot to use it i want som eexample code ********************************************************************** Sent via Fuzzy Software @ http://www.fuzzysoftware.com/
|
| Installer example in northwind or duwamish7? | 18 Jul 2005 18:50 GMT | 1 |
I am trying to build one installer for my WEB application, and want to take a look at northwind or duwamish7 installer samples, can anyone know where I can get the sorucecode of northwind or duwamish7? Thanks in advance,
|
| User interface from service in .Net | 18 Jul 2005 17:46 GMT | 4 |
Can a .Net service be given a user interface? Even if I create it as a 'Windows Service', Visual Studio does not link in the System.Windows.Forms namespace; and if I do so manually, then the service hangs inside a WaitOne() inside the invoked delegate for a form
|
| Directory Name is Invalid - Repost | 18 Jul 2005 17:08 GMT | 2 |
This compiler problem is keeping us from rolling out any .NET applications. When I browse to a simple .aspx page, I get the error: Unable to create temp file in path 'c:\windows\system32\inetsrv\%SystemRoot%\TEMP\': The directory name is
|
| Uninstall .net application problem | 18 Jul 2005 14:11 GMT | 1 |
I have installed my multi assembly windows application on any computer. Then changed one assembly in installed folder to this assembly highest version, after this return the previously version. Now I cannot uninstall my application. Get Error by uninstall.
|
| Printing a Document | 18 Jul 2005 13:46 GMT | 2 |
I'm using the PrintPageEventArgs with the Graphics namespace, and when the code gets to the point where it sets HasMorePages to true, it loops in a while loop to being the new page. The problem is that all of the next page still prints on the first page. I can't figure out why ...
|
| Interop with OpenOffice? | 18 Jul 2005 12:20 GMT | 2 |
In my application I would like to have a powerfull text editor. RichTextBox falls a bit short of it. I cannot assume my application's user would have MS-Word (it's not standart part of the OS, hey!)
|
| References problem | 18 Jul 2005 10:44 GMT | 13 |
In windows forms application I have an object MyObject with an event SomeEvent. I pass this object to a form to display its data. In this form I attach an event hadler for SomeEvent.
|
| System::String::Concat | 18 Jul 2005 08:37 GMT | 1 |
I need to concatinate two strings using Managed C++ code. It does not work. Pls let me know any thing wrong in this. ---sample---- System::String* px("dfgdf");
|
| ClickOnce & user accessibility? | 18 Jul 2005 03:09 GMT | 2 |
Let says my application is for the average end user at home. I want to install the application so all the user of the computer could use it (like when an MSI as: would you like to install this application for you only? or all user accessing this computer?)
|
| Copy the contents of one StringCollection to another | 18 Jul 2005 00:31 GMT | 2 |
This is probably something I have completely missed, but how do I copy the contents of one StringCollection to another? Do I have to go from StringCollection to array to StringCollection to do this? I thought there'd be a simple StringCollection.Clone() or something
|