| Thread | Last Post | Replies |
|
| SaveFileDialog Changing Environment.CurrentDirectory | 09 May 2008 21:42 GMT | 2 |
Correct me if I'm wrong, but it appears that saving a file with the SaveFileDialog changes the Environment.CurrentDirectory property. How can I prevent this? Thanks,
|
| Mismatched behaviour between regular compiler and refactoring compiler | 09 May 2008 21:32 GMT | 10 |
The included program compiles without errors, but produces an error when you attempt to use a refactoring tool: J:\TypeofTest\TypeofTest1\Program.cs(3,27): error CS0246: The type or namespace name 'Bar' could not be found (are you missing a using
|
| WPF and C++ | 09 May 2008 21:13 GMT | 1 |
We're moving a project from Borland C++ to MS. We're planning to use C# for the GUI work but have a lot of events and functions already in form files/units in Borland that are in C++. What's the best way to integrate the two languages? (To call a C++ function from a C# unit,
|
| How to access a run time generated PictureBox on the form | 09 May 2008 20:46 GMT | 4 |
In C# on Form1 I genetate an array of PictureBoxes and populate each with an image as seen in the code below. Later on I want to access a specific PictureBox to change its image, but I keep getting the error "The name 'PictureBox1' does not exist in the current
|
| What is Select Command in Retrieving Time | 09 May 2008 20:24 GMT | 2 |
Hi and Hello. Good Day. I have a problem in retrieving time in database. I have Table name "SAMPLE" and have field name "DATES"
|
| What type connection is the fastest in C# to SQL Server | 09 May 2008 20:22 GMT | 3 |
Can someone give me some insight in what type of connection is the fastest to connect to SQL Server. Thx in Advance
|
| namespaces | 09 May 2008 19:39 GMT | 11 |
Are these equivalent? ------------------ using System; namespace SomeNamespace
|
| Windows Service Installation With Visual Studio 2008 | 09 May 2008 19:33 GMT | 1 |
I have a Windows service that I wrote with Visual Studio 2008, and I would like to create a deployment file for my client. There used to be an option "Add Installer" in the properties window when I created the service, which apparently has been moved or removed. I looked
|
| indexOf question | 09 May 2008 18:49 GMT | 3 |
vs2005 c# string var = string.Empty; why "76090,76091,76092,G0202,G0204,G0206".IndexOf(var) returns 0 ?
|
| Print a page in 70% of it's size | 09 May 2008 18:45 GMT | 4 |
I've a document which i'm creating and printing. i want to print 2 copies: 1. regular A4 copy 2. 70% of A4 size (like in copy machine, where you can choose the size of
|
| Using a namespace between 2 partial classes | 09 May 2008 18:28 GMT | 2 |
im using c# vs2008 is it possible to define two partial classes in two different named code modules in this case the class and its attched designer class, and have a using statement at the top of the main class that allows
|
| inherited class instead of expected class in interface implementation | 09 May 2008 16:26 GMT | 2 |
Why should the following not compile? ( it does not) interface ISomething { Apples a {get;set;}
|
| How best can I create a panel which allows zoom on a drawing? | 09 May 2008 16:23 GMT | 5 |
I would like to create a panel, or other widget, on which I can draw, say, a triangle, and use the wheel on the mouse to zoom in and out on the drawing. A vector drawing. I know this can be done because I have seen apps that do this. They
|
| Drawing xor line on picture box. HELP! | 09 May 2008 14:27 GMT | 6 |
Please help me, how I can make a line drawing on PictureBox similar to MS paint. I thinking about this: click and hold button, move mouse and relase button. I'm trying useing this g.DrawLine(..), but I have a lot of line.
|
| Structure C# internals | 09 May 2008 09:00 GMT | 7 |
I know structure is a value type and derived from System.ValuType. So I have the following questions,. 1 - C# won't allow to derive one structure from other. Then how come it is derived from System.ValueType ?
|