| Thread | Last Post | Replies |
|
| Error: '<struct>' does not have a predefined size | 10 Oct 2007 21:11 GMT | 2 |
Consider the following code noting the two uses of sizeof(): unsafe struct A { int value;
|
| Mapping objects in a room | 10 Oct 2007 20:56 GMT | 4 |
I am not sure if this is the right forum for this question or not. If not, please ignore. I am developing an application in C# that requires me to display a map of the objects present in a room with proper locations [X, Y coordinates]. The
|
| Convert string to int | 10 Oct 2007 20:50 GMT | 8 |
I am trying to convert a string character to an int where the string is all numbers. I tried: int test;
|
| Multi-Processor Threading | 10 Oct 2007 20:41 GMT | 3 |
Is there a way to specifiy what processor to run a thread on in a quad core processor in c#. Any links or direction is greatly appreciated. Bob;
|
| Open (or Activate) Outlook from C# | 10 Oct 2007 19:56 GMT | 1 |
I have a button on a form, when clicked I want it to open (or activate if it's already open) the Outlook client. I don't want to do it by creating a new email message. Is this possible? Thanks.
|
| auto generate toolbox tab | 10 Oct 2007 19:31 GMT | 2 |
I would like to know how can i do to make my custom controls automatically installed on ToolBox palette and in the right tab. for example, if my tab does not exist, it should create it and install the custom control there.
|
| Referencing another source file | 10 Oct 2007 19:05 GMT | 3 |
I guess I'm a bit confused about how to organize a C# project. I have two .cs files compiling into one assembly. Both place classes into the same namespace. File A contains a class with a bunch of static methods that I want to
|
| Newbie question: Arrays | 10 Oct 2007 19:03 GMT | 4 |
What exactly is the difference (besides syntax) when you declare multi- dimentional arrays this way? int [] [] a = new int[3][3]; int [,] b = new int[3,3];
|
| together | 10 Oct 2007 18:54 GMT | 2 |
If i make a small banner in Flash 8, what's the best way to import it in ASP 2.0 ? Thanks
|
| Image Viewer Control | 10 Oct 2007 18:40 GMT | 4 |
I have an ASP.net based application; one of my tasks is to show images on the page and do some image processing work (like Rotate, Zoom, Clip etc). For the above process I would like to write an Image control in C#. Can any one help me to write a control or any one can suggest ...
|
| Connecting to a legacy RPC server | 10 Oct 2007 18:16 GMT | 3 |
I have a C# application that I would like to modify to communicate with a legacy RPC server to get some data. I have the IDL for that server. Is there an IDL compiler that will give me C# code? What are my options here?
|
| GroupBox AutoScroll property | 10 Oct 2007 17:59 GMT | 1 |
I’m working on a GroupBox and need to set the AutoScroll property to true. My problem is I have no AutoScroll property listed in the property box. And even if I go in to the Designer.cs file I can’t find the AutoScroll property.
|
| Generic Method Help | 10 Oct 2007 17:44 GMT | 12 |
I'm looking for help and understanding of generics; specifically, the use of generic methods. I'm new to using generics and haven't found a good example that applies to what I'm trying to do. I have a web server, feeding data through web methods, to a windows
|
| Load from database without load whole page | 10 Oct 2007 14:58 GMT | 1 |
I'd like to insert a new ajax.net idea inside my homepage. I'd like to realize this, and i hope you can help me. (i'm italian, excuse me for my english!!) In my homepage, i load last 15 messages from my forum (via mysql
|
| simple not on int or uint | 10 Oct 2007 14:54 GMT | 4 |
Why I cannot apply this operator to UINT or INT type in c# (VS 2005)? uint MyConst; uint SomeValue; ...
|