| Thread | Last Post | Replies |
|
| Building your own controls | 09 May 2007 11:20 GMT | 5 |
I would like to build my own controls from the ground up. Just as if the Combobox didn't excist and I wanted to create this 'new control' with all is glorious functionality. Is there a technology used for this purpose in .net. Regards
|
| How to create generic class constructor | 09 May 2007 09:59 GMT | 7 |
public class BusinessObjectGeneric<EntityType> : BusinessObject where EntityType : BusinessEntity, new() { public BusinessObjectGeneric<EntityType> () { }
|
| Controlling one instance of the application from another? | 09 May 2007 09:43 GMT | 4 |
Let's say I have a program.exe file. When I run it, one instance of it will be created. If I run it again, then another instance will be created. Question is, is it possible for instance #2 to issue command to instance #1, or
|
| Strange problem with XmlSerializer creating duplicate end tags | 09 May 2007 09:07 GMT | 3 |
I have several objects that I'm saving to disk via the XmlSerializer. 80% of the time this works fine, but occasionaly it will create a file like this: <?xml version="1.0"?> <SystemOptions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| Deleting all breakpoints? | 09 May 2007 09:04 GMT | 8 |
Hi. I'm using VS2005 Express for C#. How do you clear all breakpoints without having to find them one at a time. In previous versions of the C/C++ IDE I could just use Ctrl+Shift+F9, but that has no effect now in the C# version. Thanks
|
| List.Exists Predicate | 09 May 2007 08:58 GMT | 5 |
How do I use this, the example in msdn is basically worthless unless you want to check something against a static string or something. I need to check in my list if there is a duplicate entry, how do I do that? I have a collection of supplier objects.
|
| How can I create Docs from my source files? | 09 May 2007 08:37 GMT | 2 |
I'm looking for a way to generate documents from my source files. Like in Javadocs. Anyone? (Thanks in advance)
|
| reset pc | 09 May 2007 08:05 GMT | 5 |
is there a way to reboot my PC with a c# command? I don't mean 'shutdown -s' or some other command. I mean a hard interrupt (INTxx), like pushing the resetbutton on my PC. Thanks for your help
|
| Data Object should nt return DataView | 09 May 2007 07:51 GMT | 12 |
In an attempt to sparate my database, business logic and GUI, I am trying to have only my Data Object having database goodies. So, for example, my GUI app wants to get a list of users to put ito a combo box. It makes a call, 'GetListOfUsers'. The Business layer has a
|
| Serializing / Deserializing string array problems | 09 May 2007 07:14 GMT | 2 |
I know this will sound like a lot of hand waving, and I'll be glad to supply some sample code if necessary, but I thought something obvious might jump out at someone without doing so. Anyway, I have a structure that has several members including an array of strings. I assign ...
|
| Selecting and dragging text on a TextBox | 09 May 2007 07:11 GMT | 2 |
In a normal Windows.Forms.TextBox control, I want to be able to select a text (ie highlight, this is by default possible) and than be able to drag that text through my mouse pointer to another textbox, or any control, than drop it. How do v do this?
|
| Modal Window Mouse Capture Outside of Bounds? | 09 May 2007 04:54 GMT | 10 |
If Form1 opens Form2 modally, how do I capture clicks on Form1 when Form2 is open? I want to click on Form1 and read the mouse co-ordinates into Form2. Since Form2 is open modally, Form1 mouse-events do not fire. What events on Form2 fire?
|
| Install custom action fails when assembly signed w/ strong name ke | 09 May 2007 03:31 GMT | 10 |
I have a solution that contains a C# application that is installed and runs as a service. The solution also contains several DLLs, some of which are C# assemblies and some are C++ DLLs. The service application references the DLLs. The service app also has an installer class ...
|
| How to convert a byte array to a singe integer | 09 May 2007 01:40 GMT | 5 |
Let's suppose we have this: byte[] buffer = new byte[3]; buffer[0] = 0x04; buffer[1] = 0xF1;
|
| Comparing types | 09 May 2007 00:15 GMT | 3 |
Hi..need help comparing types example method istypeof(object someobj) {
|