| Thread | Last Post | Replies |
|
| A forms drawing problem | 18 Jan 2008 22:16 GMT | 8 |
I have a window drawing problem that I hope someone may be able to help with. I basically have a form and a control in the form which is docked to fill. I want to resize the form and get the docked control to resize
|
| get all class attributes | 18 Jan 2008 22:08 GMT | 6 |
Trying to get all attributes from a class (class1), I got them through properties, is it a simple way to get all class atributes not using their properties?? public void GetAllClassAttributes()
|
| C# utlity automating Microsoft Project - need to show a hidden fie | 18 Jan 2008 21:40 GMT | 1 |
I have written a C# utility that creates an MS Project file and it's great, the only thing is I populate one of the fields (text1) that is not displayed by default in a new file. I cannot find a way of displaying or hiding fields via code.
|
| Datatridview with linklabel | 18 Jan 2008 21:38 GMT | 1 |
I know there is a possibility to add a DataGridViewLinkColumn as a type of column to a DataGridView. Is this type of column having a LinkLabel inside? Why do I ask: I have linklabels (partly containing text, partly containing links --> as is possible with the LinkArea
|
| Registering for COM Interop | 18 Jan 2008 21:27 GMT | 2 |
I have an assembly i need to register for COM interop. This assembly has other assembly dependencies that need not be visible to COM. Although, when i turn on "Register for COM Interop" in the project setting for the target assembly and compile, it gives me an error "COM Interop ...
|
| Baby Scroller 101 Help Please | 18 Jan 2008 21:00 GMT | 7 |
My user defined vertical scroll bar does not respond properly. :( public VScrollBar vs; ... vs = new VScrollBar();
|
| How do you kill a completly locked up thread? | 18 Jan 2008 20:52 GMT | 22 |
Because C# has no native SSH class, I am using SharpSSH. Sometimes, for reasons I do not know, a Connect call will totally lock up the thread and never return. I am sure it has something to do with weirdness going on with the server I am talking to. Anyhow, this locked up ...
|
| Is this pattern OK? | 18 Jan 2008 20:31 GMT | 10 |
Hi Gurus, Working with a .NET 2 C# web application. Using System.DirectoryServices a lot to read information from AD. There seemed to be several bugs in the .NET 1.1 implementation of that DLL
|
| Outlook Calendar Day text | 18 Jan 2008 20:00 GMT | 1 |
In Outlook (2003 + 2007) when you select the Calendar button in the NavigationPane, a small calendar is displayed at the top of the NavigationPane. In XP the days of the week are displayed as:
|
| BIT banging help | 18 Jan 2008 19:00 GMT | 9 |
I want to store the maximum amount of permissions in a bit mask. From what I know, I should use the C# long data type and use the bigint in sqlserver. How would I initialize a variable of type long to represent a 64bit
|
| DataSet bug | 18 Jan 2008 18:39 GMT | 2 |
I'm using Dataset in my project. In design time I configure TableAdapter in the Dataset and set to the adapter as an Insert query following sql: INSERT INTO UserInterface.ViewFields (createdBy, createdOn, modifiedBy, modifiedOn, viewId,
|
| Membership User ID is uniqueidentifier, could I use INT and map the to fields? | 18 Jan 2008 16:37 GMT | 7 |
I am developing an application that has to scale and be very efficient, and I am using asp.net membership in my application. I set things up in my Users table (it has extra columns that I need over and above what aspnet_users has):
|
| Creating ActiveX component for Pocket PC | 18 Jan 2008 16:28 GMT | 1 |
We are trying to develop an ActiveX Control for the Pocket PC... HTML code for installing and calling object: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html>
|
| Resume Exception After Handling Exception in C# | 18 Jan 2008 16:27 GMT | 9 |
We are writing a performance critical application. As a result, we use Array instead of List or any other more sophisticated container types to store temporary data. However, the array type is of fixed length, and therefore there is a chance for the index to be out of range. I
|
| C# Plugin system - same interface in two different assemblies... | 18 Jan 2008 16:03 GMT | 15 |
I am now aware (I am primarily a C++ developer) that in C# if you reference the same interface from the same file in two different projects the types are actually incompatible. I found this out because I have written a generic plugin system for my
|