| Thread | Last Post | Replies |
|
| String Manipulation - C# | 07 Feb 2007 10:35 GMT | 7 |
I have a POSTCODE field which allows values for example: SE12 8JA B3 1AB G1 1ET
|
| adding controls at runtime | 07 Feb 2007 10:02 GMT | 2 |
i am trying to add a datagrid control to a web page dynamically. i am able to do it while i used the following code in the page load event of the form in which i am going to add the control. DataGrid dG = new DataGrid();
|
| how do I start my service on install? | 07 Feb 2007 09:34 GMT | 1 |
I created a setup program using .NET Studio IDE to install my Service. How do I configure it to start up my Service once it finishes installing?
|
| Type or namespace could not be found | 07 Feb 2007 09:24 GMT | 2 |
As I am taking my first steps in C#.NET i wrote this but I always receive an error message. <%@ Page Language="C#" %> <script runat="server"> void Submit_Click(object obj, Eventargs e) {
|
| C# intialization of member variable trouble | 07 Feb 2007 07:22 GMT | 4 |
Look at this code: class test { private bool bInitialized = false;
|
| Auto Complete Folder Combobox | 07 Feb 2007 07:16 GMT | 3 |
Does anyone have some sample code for building a combobox that will automatically list the remaining folders while you type? I'm looking for functionality similar to the "Look in:" combobox in the Search Companion panel in Windows Explorer. If you type "C:\" it will open the drop ...
|
| Structure to Byte Array - Which is better? Marshal Copy or Fixed Byte Assignment | 07 Feb 2007 02:25 GMT | 2 |
I have a structure named EntityState with an explicit layout. The following two operations exist within the class to return a byte array representing the current object. Upon executing them each a million times, I've learned that the ToRaw2() operation is twice as fast
|
| need help going from Graphics to Image | 07 Feb 2007 00:36 GMT | 1 |
I recognize that the need for this spells a serious flaw in the program design, but I need to copy a portion out of a Graphics object and put that into an Image object. How do I do it generically? I have some existing code that does it using BitBlt from a DLLImport, but I
|
| COM Object Name | 06 Feb 2007 23:06 GMT | 3 |
Does anyone how to set the name of the COM object in VS2005 for a C# project that creates a COM object. I can't figure out what windows uses as the name when you bring up the "References" window in Excel, for example. My COM Object's name seems to be the project name. How do
|
| create a variable to hold all forms created in a solution | 06 Feb 2007 22:46 GMT | 3 |
im planning to create a lookup usercontrol where i need to specify a custom property (a form) to be loaded up once a button is pressed. usercontrol contains: textbox
|
| Web Post problems | 06 Feb 2007 22:34 GMT | 3 |
I'm trying to do a simple web post to a web server with C# and am having lots of problems. Here is the code: try {
|
| How do I know when my work threads have completed their tasks? | 06 Feb 2007 22:28 GMT | 10 |
Hi, I'm using vs2005 and .net 2.0. I started 2 threadpool threads. How do I know when they're done with their tasks? Thanks. ThreadPool.QueueUserWorkItem(new WaitCallback(PopulateContextTable)); ThreadPool.QueueUserWorkItem(new WaitCallback(PopulatAdTable));
|
| Sorted List by value | 06 Feb 2007 21:59 GMT | 12 |
I´ve a problem with my Key-Value SortedList. Is there a way to sort a list (or any other data structure) by value? I have a list with 1000 key-value pairs and want to get the pairs with the 20st highest values.
|
| release and debug mix during testing | 06 Feb 2007 21:52 GMT | 2 |
Does C# have problems when running a mix of release and debug builds of projects? I'm talking about something similar to the DLL hell you could get into with VC6 and the MFC shared library. If not, why do the debug and release projects write to \Debug and \Release ...
|
| Vista - UAC and Click Once | 06 Feb 2007 21:37 GMT | 3 |
This is a continuation of a question I was working with Willy and Kevin last week (both provided excellent information). I am still having troubles in final stages. I am trying to get an OCX to register on Vista with my ClickOnce app. Willy
|