| Thread | Last Post | Replies |
|
| User authentication in an HTTP soap call? | 23 Dec 2005 15:02 GMT | 3 |
I'm trying to see what basic authentication will do in a SOAP call through a class created in C# by the wsdl tool. WSDLTest wt = new WSDLTest(); // my SOAP class wt.Credentials = new NetworkCredential("steve","fudge");
|
| Escaped string in C# | 23 Dec 2005 14:47 GMT | 13 |
Can anyone point me at the class to convert a string so that it displays escaped chars as \r, \n etc. please Its done in the 2005 debugger so I hope its available as a class ??. Thanks
|
| mult ie browsers | 23 Dec 2005 14:12 GMT | 2 |
I need to create a program that opens multi ie browsers that point to the same url, then be able to kill them off all or any number at a time (I am using this for a SQA Test) Thanks
|
| Access running process. | 23 Dec 2005 13:47 GMT | 2 |
I have console application open running that you need to press Escape on to get it to exit. Usually once a day/week etc I want to close that process and start it again. Is there any way to find a process running on a machine and send a command to it from a c# app? I don't think this
|
| Testing classes individually | 23 Dec 2005 13:10 GMT | 6 |
I remember that in Java you can compile and run each class individually as long as it contains the method "main". However, is this possible in C# as well? I tried it a while ago but it didn't work.
|
| NotyfiIcon | 23 Dec 2005 13:05 GMT | 3 |
Then I use a NotyfiIcon, I can't close Windows?? Any answer out there!
|
| indexers, enumerators | 23 Dec 2005 12:35 GMT | 1 |
Hi, I am receiving this exception Error 3 Cannot apply indexing with [] to an expression of type 'System.Collections.Generic.IEnumerable<VisualSystems.DbObjects.DbClasses.DbColumn>' C:\Visual Studio\PROJECTS\VisualSystems.DbObjects.DbClasses\DbObjectTable.cs
|
| Accessing method in master page from content page | 23 Dec 2005 12:23 GMT | 4 |
OK, now I'm getting excited. I actually created a master page and added two content place holders to it. I also added a label which will serve as a sort of one line help and a little image button beside it to turn off the help. I wrote a public method in the master page that looks ...
|
| problem with Convert.FromBase64String function | 23 Dec 2005 12:18 GMT | 5 |
I have a asp.net web service built in c# which is accepting a string parameter from a vb6 client. The string parameter contains some xml. I am attempting to convert the string to a byte array using the Convert.FromBase64String function but get the following error.
|
| C# class library: insatnce or reference? | 23 Dec 2005 10:02 GMT | 5 |
i'm new to C# and I try to create class library. Everything looked fine till the moment I started to use instance of some class like a property of another class. Example:
|
| Thread active when service is stopping | 23 Dec 2005 08:09 GMT | 2 |
Hi everyboby, i wrote a c# service that every XXX minute launch a working thread on timer events, something like this: private void timer_Elapsed ( object status )
|
| Resize toolstrip at runtime | 23 Dec 2005 06:45 GMT | 1 |
Is there a way to change the sieze of the buttons on a toolstrip at runtime? I want to give my users the option of using either small (normal) or large (32X32) buttons. Thank you,
|
| Time Formatting - Please help! | 23 Dec 2005 05:42 GMT | 2 |
I got a problem.. I want to format the time into a decimal value.. The code that I used worked fine for some time but now it does not want to work.... If any one can help me or give me alternative code... Thanks in advance
|
| Built-in support for reading ini files? | 23 Dec 2005 03:55 GMT | 1 |
Does the BCL have built-in support for reading/writing standard ini files? Thanks! BT
|
| Convert PHP pack() function to C# | 23 Dec 2005 03:33 GMT | 2 |
PHP has a function called pack() (http://us2.php.net/pack). I need to translate some code that uses this function to C#. What's the C# equivalent of pack()? Thanks, Brian
|