Search Results

1
vote
1answer
299 views

.NET Install Package Sometimes Not Completely Removing Previous Versions

I distribute my application using a VS2008 install package, which normally works great. When I create new versions of the app, I go in and increment the Version property on the instal …
4
votes
5answers
1k views

Can I Use a .NET DLL in “Delphi 2007 for Win32”?

Is it possible to use a .NET DLL in Delphi 2007 for Win32? I've tried to import the DLL in the same way I've done for an ActiveX component, but it doesn't appear to work (Component Menu -> Import …
0
votes
3answers
2k views

Change Color of Button in DataGridView Cell

I have a large DataGridView control that has several cells most of which contain a button. How can I change the color of those buttons? This changes the "outline" of the button but not the …
0
votes
3answers
1k views

Listening to Events in Main Form from Another Form in C#

I have an application that has a main form and uses an event handler to process incoming data and reflect the changes in various controls on the main form. This works fine. I also have ano …
2
votes
3answers
135 views

Determine If Changed Event Occurred from User Input Or Not

In C#, the Changed event for a control (say, a numericupdown) gets fired whether the value was change directly by the user or if it was changed programatically as the result of some other event. …
1
vote
2answers
34 views

How to Decide Whether To DataBind a Control or Not?

What are some good guidelines to follow when deciding whether or not to databind a control (for example, bind a combobox to a List)? Are there situations where you should always or never da …
2
votes
2answers
90 views

Location Coordinates On Computer Showing X=-32000, Y=-32000

I have a C# application that saves its state when it is closed and then reads in the saved state when it starts up. One item that is saved is the location of the main form. Normally this works gr …
0
votes
1answer
53 views

Error Connecting to Third Party App via COM: mscorlib Exception from HRESULT: 0x80040202

One particular user is getting an exception when connecting an application I created to a third party app using COM. The connection fails with the following error: Source: mscorlib …