| Thread | Last Post | Replies |
|
| Who can tell me about how to change the border color of groupbox controls??? | 12 Dec 2005 17:23 GMT | 1 |
Who can tell me: how to change the border color of groupbox controls(VS2003)???
|
| error on build | 12 Dec 2005 17:03 GMT | 4 |
When i build my project i get this error warning CS1668: Invalid search path 'C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\Lib\' specified in 'LIB environment variable' -- 'The system cannot find the path specified. '
|
| C#.exe "talks" to C++.exe | 12 Dec 2005 16:56 GMT | 2 |
Thanks for your help first, I wonder is there any link to sample or documentation that explain how to make .exe in C++ communicate to .exe in C#? I know there is some way like Share Memory, COM but I really need a place that I could get jump start
|
| DataGrid loading password protected MSAccess DB | 12 Dec 2005 16:53 GMT | 1 |
I am trying to load a password protected Access 2003 database into a C# app and whenever I execute the application, it displays this exception: System.Data.OleDb.OleDbException: Not a valid password. In the developer (C# 2005 express edition) it is able to pull the column names ...
|
| How to fix the height size of Panel1 on SplitContainer? | 12 Dec 2005 16:41 GMT | 1 |
How to fix the height size of Panel1 on SplitContainer?
|
| Implementing IEnumerable<T> in as abstract | 12 Dec 2005 16:25 GMT | 3 |
I am developing an abstract class which implements IEnumerable<T>. I need the actual implemented methods here to be abstract as well - they will be implemented by MY subclasses. However, I cannot seem to get the explicit interface method to accept being
|
| ComboBox question - display more than one field | 12 Dec 2005 16:23 GMT | 1 |
In MS ACCESS 2000 it is possible to set the rowsource to display two or many fields from the tblCustomers in a combobox. How can I do the same with a ComboBox in C# (SQL DB) say...on a frmOrder where I have a combobox that looks up values from
|
| Creating Generic object at runtime | 12 Dec 2005 16:18 GMT | 3 |
I would like to know whether we can create a generic object at runtime using the type obtained using reflection. Type myType = Type.GetType("Namespace.Class"); MyClass<myType> test1 = new MyClass<myType>();
|
| MD5 Hashing a file for download checks | 12 Dec 2005 16:00 GMT | 4 |
I've nearly finished my personal auto updater and the only thing left to implement is a hash check against the downloaded file to make sure it's good before extracting it. Right now I havn't released it so I've tested that the selected update components download correctly and
|
| Type Conversion | 12 Dec 2005 15:55 GMT | 4 |
is that possible in c#? : i have for example a simple field class, which contains a value, like this: public class Field
|
| Console Application Hangs and loss of memory allocation | 12 Dec 2005 15:52 GMT | 1 |
I have this console app that runs 24/7. When it first starts up it's around 14 megs. I come in today and the app is hung and is at around 1 meg. I know this is a broad question but I'm looking to brainstorm any ideas of what might of caused this.
|
| configuration element and collection | 12 Dec 2005 15:49 GMT | 1 |
I am doing some complex configuration handling, and I have similiar setup: <DataSchema version="1.0"> <modules name="Assets"> <tables>
|
| Pass param to an invoked method | 12 Dec 2005 15:47 GMT | 1 |
I'm dynamically loading a child form saved in a DLL. I have this code working and it's pretty straightforward. What I'd like to do is pass an object type to an invoked method in the child form as soon as it's loaded. It seems I can get the invoke working just
|
| Horizontal splitter? | 12 Dec 2005 15:04 GMT | 4 |
I am designing a GUI and I need to split the screen into two parts (one on top of the other) - i.e. I need a "horizontal" splitter. The splitter control that comes out of the box with VC71 appears to cater for only vertical splitting (i.e. screens side by side). Anyone knows how ...
|
| switch, case, and how it sometimes lets you fallthrough | 12 Dec 2005 15:02 GMT | 15 |
I'm confused as to how fallthrough is limited in switch. For example the following works: string switch_test = "a"; switch (switch_test)
|