| Thread | Last Post | Replies |
|
| Username & Password as parameters | 22 Sep 2006 04:17 GMT | 4 |
I am trying to set a scheduled task for one of my ASP.net application that I developed on a monthly basis. This application requires a login authentication. I am sending the url of the login page in the Windows scheduled task. But I also want to send the username and password as
|
| Learning with command-line vs IDE | 22 Sep 2006 04:16 GMT | 10 |
When learning a language such as C#, would you say it is better to learn the fundamentals using the command-line compiler and a simple text editor such as notepad compared to using a full-fledge IDE such as VS.NET 2005 which gives code-insight, debugger, etc?
|
| Nice exceptions. | 22 Sep 2006 02:36 GMT | 6 |
I'm new to VS2005, I used VS2003 a bit, and I remember it didn't act like this. My code looks like : try
|
| Passing Arguments ByRef/ByVal | 21 Sep 2006 23:51 GMT | 4 |
Does C# support passing arguments ByVal & ByRef? If so, what is the default (ByVal?)? And, if so, how do you explicitly specify either? Thanks.
|
| Naming Conventions | 21 Sep 2006 23:47 GMT | 8 |
I am looking at some best practices concerning the naming of identifiers in C# and am puzzled on what to do with Public and Private identifiers that are related, such as private fields and their corresponding public properties. From "Visual C# .NET Step by Step" (pages 29 & 30):
|
| insert string into RichTextBox | 21 Sep 2006 23:12 GMT | 1 |
i have a RichTextBox that has rtf formatted text in it! now i want to add a string to the beggining of the RichTextBox text and then two newlines. I am struggling with it though, no matter what i do it seems to corrupt the rtf formmated text below! any ideas anyone?
|
| Caching Help Needed | 21 Sep 2006 22:24 GMT | 2 |
I have problem related to Caching of data. I am reading large xml file and putting this xml in dataset, since this dataset will contain many datatable's inside. And each datatable might be big in data. Each user will contain its seperate xml file, so when I create xml file for
|
| What is the best way to do this... | 21 Sep 2006 22:22 GMT | 6 |
1. app start 2. user clicks Login Button 3. Application connects to the serwer ( check login and download dir list - 1mb )
|
| Starfield | 21 Sep 2006 21:47 GMT | 2 |
I'm new to C# and want to start by making a starfield with stars coming from the middle and ou while getting brighter. First of all, how to I make a single pixel ? And secondly, how to do this fast without any flicker at all ?
|
| singleton classes !! | 21 Sep 2006 21:35 GMT | 2 |
I want to make a class that : - will have one and only one object - when you try to make another object of this class , an IDE error should be seen . like using undefined variable , or any thing like that ..
|
| How do I copy datatable from one dataset to another. | 21 Sep 2006 21:08 GMT | 5 |
I get dataset from database. I need to take specific datatable out of it and add it to second dataset to pass back from webservice. ds.Tables.Add(dsPart.Tables[0]); I get exception "Datatable already belongs to another dataset"
|
| Problem connecting to C# Web Service | 21 Sep 2006 21:07 GMT | 2 |
I am having trouble connecting to a C# web service I created and deployed on a service running IIS. The following message appears when I try to add a web reference to the client application --> The XML page cannot be displayed
|
| App.config and .settings ??? | 21 Sep 2006 20:21 GMT | 2 |
What is the difference between App.config and .settings file ? The .settings file is available in .NET 2.0 and not under. Am i right ? How do you manage mulitple settings configuration ? Is it using the <Profiles /> ?
|
| size of file located at url | 21 Sep 2006 19:57 GMT | 1 |
My web app needs to determine the file size in bytes for image file urls stored in db. Does .NET provide a method that can determine the file size in bytes ?
|
| Do I need to dispose brush explicitly? | 21 Sep 2006 19:48 GMT | 2 |
In following code, is it OK not to dispose local brush explicitly before exiting the procedure? private void MyDrawItem ( Graphics g, Color BackColor, Rectangle r ) {
|