| Thread | Last Post | Replies |
|
| Combo Box Control | 26 Oct 2006 05:52 GMT | 2 |
So here is my problem, I have a program that i would like to have some control similar to a combo box. However, I don't want it to be editable. How can I do this? Also, when my server pass information to me, i would like to reflect that information in that combo box; in
|
| Disable Warning for Unused Variable | 26 Oct 2006 05:39 GMT | 2 |
Is there a tag that I can use to designate that a parameter is not used and thus, not flag a compiler warning? For example: public struct MyClass {
|
| GetScrollInfo doesn't work | 26 Oct 2006 04:50 GMT | 4 |
I create a utility class, and call GetScrollInfo(txtHelp, (int)ScrollBarDirection.SB_VERT); txtHelp is a RichTextBox component instance. Please tell me why GetScrollInfo doesn't work. Thanks.
|
| How to determinate if a stirng is Chinese or English | 26 Oct 2006 04:23 GMT | 2 |
I use a TextBox for to enter an string. How can I determiniate if the stirng is Chinese or English?
|
| Why the GAC? | 26 Oct 2006 03:15 GMT | 5 |
If I install an assembly into the GAC, shouldn't I be able to reference it from new C# projects? How do I use an assembly that's been installed in the GAC? If I try to add a reference to it, it's not listed. If I navigate to the dll that I compiled and then installed in the ...
|
| Clone | 26 Oct 2006 01:48 GMT | 1 |
I would like to clone a windows form, give it a new name. How can I do this???
 Signature Norm Bohana
|
| nullable type cast question | 26 Oct 2006 01:21 GMT | 2 |
Why does this fail with a cast exception? The field is coming in from the data base as null due some bad design on my part but I thought this would allow me to test and set to false. DataTableReader dtr = ds.CreateDataReader();
|
| inheritance/polymorphism and maybe generics question | 25 Oct 2006 23:47 GMT | 9 |
I'm not sure if I'm going about this the right way - it may be that Generics might be able to help me out here... but here goes: I have three classes as follows class BaseEdit
|
| Strange behavior when closing stream | 25 Oct 2006 23:31 GMT | 10 |
I'm experiencing some, imo, strange behavior with the StreamReader object I am using in the code below. Summary is that I am downloading a file from a website and saving it to disk for further parsing. I know, I could use the WebClient and it would be easier, but I don't
|
| Beginning GUI | 25 Oct 2006 22:54 GMT | 11 |
I've done several C# console applications now, and feel comfortable with the language. Can anyone recommend a web site, book, etc which has information on starting to develop full GUI applications? Many Thanks,
|
| Several questions of C# | 25 Oct 2006 22:33 GMT | 7 |
1. When and why a string defined with or without "@" in front of it? string sSample = "xxxx"; string sSample = @"xxxx"; 2. Any difference between the following two?
|
| IntelliSense question | 25 Oct 2006 21:35 GMT | 1 |
is there a way to hide inherited methods from the IntelliSense-menu in VS2005? Lets say that i have the following: internal class MyClass {
|
| How to determine a point on a sine wave | 25 Oct 2006 21:28 GMT | 5 |
I'm trying to do get my head around some, probably basic, math calculations. I checked some .net math libs, but the only thing I learn from studying those is humility ;-). Anyway, i have an array of points on a basic 2 dimensional axis. They
|
| Yet another app.config question - Isn't this supposed to be easy? | 25 Oct 2006 20:53 GMT | 5 |
I have a C# Windows Forms app. It is in namespace App.GUI. It builds to Nav.exe. I have entered an application level setting using the designer. Its type is string, name is "FOO" and value is "monkey". I've tried the following ways to retrieve the value and only one works:
|
| using reflection to discover a nested structure | 25 Oct 2006 20:45 GMT | 2 |
All, Can anyone supply an example or reference to an example of using reflection to determine the data types contained in a nested stucture in C#? Once I get the list of MemberInfo[] and determine that
|