| Thread | Last Post | Replies |
|
| Library.dll.config files in VS2005 | 23 Mar 2006 02:50 GMT | 2 |
I am developing a class library that uses new strongly typed .config settings in .NET 2.0. No I have a .DLL file and a .DLL.Config file. How can I deploy the DLL.config file?
|
| App.Config and C# | 23 Mar 2006 01:53 GMT | 1 |
Can someone please show me how to access a "ConnectionString" property within my app.config file from within C# for .NET 2.0? I know if VB.NET 2.0 I can do a My.Settings("ConnectionString"). I cannot find how to accomplish the same from C#.
|
| Multiline TextBox | 23 Mar 2006 00:42 GMT | 2 |
Hi -- I'm populating a multi-line textbox with about 500+ items. Is there an easy way that I can force the scrollbar to the bottom while appending new items?
|
| StreamReader::ReadLine() blocks | 23 Mar 2006 00:07 GMT | 2 |
I am trying to read the output of an external application using redirected stdout and StreamReader::ReadLine(). The problem is that ReadLine() blocks and I am either reading nothing or just part of the output. I start a new process from my app to run the external app.
|
| calling method from one class without declaring the class again?? | 22 Mar 2006 23:59 GMT | 3 |
if i want to do this in c#, where HomePage_MainListSelected() is in another class than this code , how do i do it? becaise HomePage_MainListSelected does not exist in the current context according to the comiler.
|
| a basic casting question | 22 Mar 2006 23:40 GMT | 4 |
I'm new to C#. This piece of code works fine and needs no explicit cast in vb.net. itemId = arrCart(cartId, i) When I converted it to C#, it complained that it cannot do the implicit
|
| Creating a color from a string | 22 Mar 2006 23:07 GMT | 1 |
I have saved a Color to a text file using Color.toString(). How do I load it in again? I have tried;- Color myColor = Color.FromName(strColor); but it fails, I have also noticed that the color is sometimes saved with a
|
| passing references between C# and managed C++ | 22 Mar 2006 22:50 GMT | 8 |
I'm trying to pass a variable by reference from a C# program to a managed C++ wrapper. Something like this: ------------C++-------------- void GimmeByRef(int &reference);
|
| Incrimenting Dates in C# | 22 Mar 2006 22:26 GMT | 7 |
I am pretty new to C# and have been surfing this forum. It has been a great help. I am hoping that you can help with this issue: I have the following: TimeSpan Diff = new TimeSpan();
|
| annonymous ip before using webrequest object | 22 Mar 2006 22:11 GMT | 2 |
When using the webrequest object, is there a way to make the source ip anonymous before connecting to a URL/website. Any help will be appreciated. Asim.
|
| Left function | 22 Mar 2006 21:57 GMT | 2 |
I am attempting to collect the user's IP address from a Web App. I then need to verify the address is not an 'internal' user. I need to compare the left 3 characters of the IP address with a constant. I know I have done this with the left function in VB. I can't seem to locate a ...
|
| C# code to open a windows directory | 22 Mar 2006 21:47 GMT | 3 |
I need the C# code to open a windows directory. Regards, Shilpa
|
| C# pure xml database? | 22 Mar 2006 20:35 GMT | 18 |
Anyone know of an open source C# pure xml database that is available? I've done some looking around and can't locate anything. Thanks in advance, BA
|
| Control to display rows and columns | 22 Mar 2006 20:35 GMT | 1 |
I have a web service that returns a DataSet object. Now i want to write a client app that consumes this web service. In my client, i want to display the rows and columns of the DataSet object in a table control.
|
| correct assembly version | 22 Mar 2006 20:29 GMT | 2 |
How can I inform the user that he is not using the correct assembly? Something like: "You have version 1.1 installed but you need version 1.2! Good Bye" Is the question too stupid - because I didn´t find anything using
|