6
votes
7answers
831 views
Best Place to Store Config Files and Log Files on Windows for My Program?
I need to store log files and config files for my application. Where is the best place to store them?
Right now I'm just using the current directory, which ends up putting them in the Prog …
1
vote
1answer
286 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 …
2
votes
5answers
2k views
Get DateTime For Another Time Zone Regardless of Local Time Zone
Regardless of what the user's local time zone is set to, using C# (.NET 2.0) I need to determine the time (DateTime object) in the Eastern time zone.
I know about these methods but there do …
0
votes
4answers
1k views
Invalid Variant Operation Exception Trying to Access OleVariant in Delphi - Works in C#
I'm trying to access an OleVariant in a callback that is coming from an ActiveX library.
Here's what the event handler is defined as in the TLB:
procedure(ASender: TObject; …
0
votes
3answers
168 views
Opening New Form From Event Handler in Main Form Hangs App
I'm trying to open a new form from within an event handler in the main form in a C# program. The event handler gets called properly and it opens the new form, but the new form is frozen and doesn' …
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
970 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
132 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
4answers
106 views
Format for Passing a Collection to a Method
I'm using an API that has a method that requires this type of argument:
System.Collections.ObjectModel.Collection<GenericTickType> genericTickList
How do I i …
0
votes
4answers
162 views
App That Uses SDK BSODs in Delphi 2007 But Works in C#
I'm coding an application that uses a third party SDK (OCXs). I use the SDK in C# and it works just fine. However, I can create the simplest test application with the same objects from the SDK in …
3
votes
8answers
635 views
Create a C# DLL That Can Be Imported in a Delphi App Using stdcall - Possible?
I have a program that I need to create a DLL for, hopefully in C#. The program is written in Delphi and I have an interface file to code to. The interface uses the stdcall calling convention. …
1
vote
4answers
97 views
Make an Existing Windows Form Inheritable
I didn't realize at the time I create this particular application that I'd need to reuse some of the components - some Windows forms and a class or two.
Now that I've already created the fa …
0
votes
5answers
149 views
Passing Argument To Method that Requires “ref System.Array”
I'm using a third party library. One of the methods requires passing an array via ref that will be populated with some info. Here's the definition for the method:
int GetPositionL …
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 …
0
votes
1answer
197 views
Why is Databinding for a CheckedListBox “Hidden”?
The DataSource property on a CheckedListBox is hidden from Intellisense. Why? You can use the binding properties to make it work, but I'm worried that it's hidden for a reason and that I shouldn' …
