December 18th, 2012 01:53 PM
Greetings!
In MS Visual Studio (I'm using 2008, but I've seen this in other versions), I can drop an invisible control, such as a update timer or a file open dialog box, onto a form. It will show...
December 3rd, 2012 12:42 PM
There are read-only settings, but they need to be changed for different test configurations. App.config and its automatic overwriting of myprogram.app.config makes it unsuitable for that purpose.
December 3rd, 2012 07:55 AM
Thank you for that reply.
Unfortunately, that is not going to help. I think that the use of app.config in this application was a poor choice. The problem is that the configuration parameters are...
November 27th, 2012 10:05 AM
Here's a very rough pseudocode example using old-style coding (not using ADO.Net):
SomeDatabaseClass db = SomeDatabaseClass.Open("my database name");
SomeTableClass table = db.Open("my table...
November 27th, 2012 09:50 AM
A colleague wrote an application named "cranesimulator" in C# and Visual Studio 2008 that contains settings in a configuration file. There is a file in the project named "app.config". When the...
November 19th, 2012 08:13 AM
Greetings!
I am looking for an automatic build testing application that meets the following criteria:
1. Well-written, comprehensive manual
2. Easy setup of the tool itself
3. Easy...
October 21st, 2012 10:02 PM
Please put code inside a code block ("[ c o d e ]" (no spaces) in front of it and "[ / c o d e ]" (again, no spaces) behind it), and please indent your code. Without those, it is very difficult to...
October 21st, 2012 09:08 PM
Greetings!
Visual Studio 2012 Express
I want a WebBrowser control to show data contained in CSV format on a web page. I just want it to show the data (so I can import it as text into my C#...
October 11th, 2012 02:38 PM
Many thanks for your clear answer!
RobR
October 10th, 2012 01:53 PM
I don't even know how to come up with a good title for this question.
I am using VS 2008. I have a little user control that has a method whose argument is of type List<String>. I have a list of...
October 5th, 2012 04:25 PM
I often see a control that consists of two vertical lists side by side with arrows on buttons between them. The left list typically shows available items and the right list typically shows active...
September 14th, 2012 09:58 AM
Update: If I do not specify an explicit list of fields, I can pass the query object into a data view control, and the control will display the contents of the table as expected. If I want to use...
September 14th, 2012 09:15 AM
Greetings!
I am a complete newbie at LINQ. I am trying to get my first simple little application using it to run. It's built in Visual Studio 2008, using DevArt's LinqConnect product to talk...
September 5th, 2012 01:57 PM
Thanks very much for your reminders and suggestions.
RobR
September 5th, 2012 09:16 AM
Greetings!
I have the following code:
Base class header file:
class ADODIRECT_API CADODirectRecordset : public CADORecordset
{
public:
September 5th, 2012 08:58 AM
Which do you recommend I use? I mainly ask out of curiosity, since I already found an answer. I don't know if it's the best answer. I had been using "MFC Class from ActiveX Control". That gave me...
September 4th, 2012 01:02 PM
Accidental double-post. I don't see how to delete the second one.
September 4th, 2012 01:00 PM
Greetings!
I am using Visual Studio 2008.
I need to generate a wrapper class for an ActiveX control that has public methods and a public property. The generated class has no methods for...