| Thread | Last Post | Replies |
|
| C# Newbie needs help with simple code :( | 25 Sep 2005 09:35 GMT | 1 |
{//start Button4 FileStream myFStream = new FileStream (@"C:\Documents and Settings\Tony\Desktop\testfile.txt", FileMode.Append, FileAccess.Write);
|
| Join this group For .Net discussion | 25 Sep 2005 06:38 GMT | 3 |
hai group... Join this group for .Net discussions... http://groups.google.com/group/TechdotNetIndia Regards,
|
| Handling top-level exceptions | 25 Sep 2005 01:29 GMT | 3 |
It appears that exception handling at the top-most level of a C# program, in the static void Main() method, differs depending on whether the program is run in debug mode or not. That is, code such as the following
|
| set property of a control | 24 Sep 2005 21:31 GMT | 4 |
I need to change some of my controls properties at run time, I build this function in C# which sets some simple properties I want to add some more properties, and extend the use, but my switch statement is getting bigger and bigger.
|
| Logon with Digital Siganture (PKI/OCES - or what else they're called) | 24 Sep 2005 20:50 GMT | 2 |
Has anyone got the least experience in integrating the Digital Signature with an ASP.NET[C#] Web Application? Here in Denmark, as I supose in many other countries, they're promoting the digital signature. A lot of people already has one, to do their taxes, and
|
| Asynchronous logging using delegates | 24 Sep 2005 20:28 GMT | 3 |
I am thinking about doing all my logging asynchronously using a delegate. The main resaon for this would be performance and responsiveness of the application (an ASP.NET app). //Exampel
|
| How can i resize my screen? | 24 Sep 2005 20:13 GMT | 4 |
I created a form that contains datagrid, buttons,textbox and etc. i want to set my window to the maximum size when the form is loaded, i changed the window size property to maximum, but now all my form object are set like the window size is normal, how can i set my objects to be ...
|
| Changing case using Visual Studio | 24 Sep 2005 18:49 GMT | 3 |
All or Anyone: Is there a way to change from uppercase to lowercase all the characters of all the source files in a project? Thanks in advance.
|
| WebResponse help | 24 Sep 2005 17:00 GMT | 2 |
How do I get the contents of the HttpWebResponse to display in a web browser (IE or browser control)? Here is a code snippet. The response ends up being jscript with a window.open(). webRequest.Method = "POST";
|
| Reading rows and columns from a DataGrid | 24 Sep 2005 15:15 GMT | 15 |
I find it amazing that I am quickly able to find answers to obscure questions but simple ones elude me. I have a datagrid that I've bound, no problem at all. Now I want to - programatically - loop through each row, extracting the data held in each
|
| Why does my datagrid width got narrower in run time? | 24 Sep 2005 15:07 GMT | 5 |
I set the Locked property = True for the datagrid but in run time the width shriks automatically making the windows looking messy. How do I fix this so it would stay the same as in the designer sheet? Thanks, Alpha
|
| Synchronized Hashtable | 24 Sep 2005 11:59 GMT | 2 |
I'm using static, synchronized Hashtables: static Hashtable _htDiags = new Hashtable(); static Hashtable htDiags = Hashtable.Synchronized(_htDiags); I'm not totally sure, if this protection wrapper is sufficient in a
|
| Using .NET UI !!! | 24 Sep 2005 10:55 GMT | 7 |
I have an application to make. I would prefer to make UI of my application in .NET framework 1.x. My question is can i use UI that was made in C#( .NET framework 1.x) in Visual Basic 6.0. To be more specific i would like to create my UI in .NET and would
|
| ODP.NET | 24 Sep 2005 09:57 GMT | 1 |
I could not find ODP.NET for 9.2.0.1.0 that run against .NET runtime version 1.1. Does Anybody found before? If so, plz kindly provide me dl link.. Thanks in advance..
|
| Why is ToolBarButton class not a control? | 24 Sep 2005 07:29 GMT | 2 |
It seems to me that the ToolBarButton should be a control, but instead it inherits from Component. Is there a reason this could not have inherited from Control since really a ToolBarButton is nothing more then a button with additional features?
|