| Thread | Last Post | Replies |
|
| designing an application in winforms ???? | 10 Dec 2005 21:12 GMT | 2 |
I'm into designing an application in winforms but in near future my client may request the same thing in webforms. so (1) what are all the design guidelines and ways are there to migrate easily in future (winforms -> weforms)...? (2) how can i design my application which can be ...
|
| ASP.NET StreamWriter error | 10 Dec 2005 20:48 GMT | 6 |
I have created a simple logger for my ASP.NET 2.0 application. I have this static function. My problem is that no data is created in the test.log file. I have added ASPNET user account administrator rights.
|
| App Domain CPU Utilization | 10 Dec 2005 20:44 GMT | 1 |
I have a C# windows service that creates several application domains. Each app domain has it's own programs running, doing their own thing, independent of each other. Recently, someone gave me a component that spun off that misbehaved and
|
| (c# .NET) sorting a list of items in a specified manner | 10 Dec 2005 20:23 GMT | 4 |
have a list of card objects, each with a rank (1-13) and a type (hearts, spades etc.) i would like to sort them in type order (eg. hearts before spades) how would i go about doing that? currently i am using an ArrayList as datastructure
|
| How to create an area ontop of another area | 10 Dec 2005 18:04 GMT | 1 |
I am writing my own little video player, using AxMicrosoft.MediaPlayer.Interop.AxWindowsMediaPlayer, and i want to add stats when in fullscreen. I am able to Draw to it with GDI+, but since there's a high framerate,
|
| Page_PreInit and Page_Load events (newby) | 10 Dec 2005 17:07 GMT | 3 |
I have a question about the Page_PreInit and Page_Load events in a web application. My question is: can I count on the Page_PreInit having completed before the Page_Load event starts. (I recall that someone told me in VS2003
|
| Regular Expression Help | 10 Dec 2005 15:53 GMT | 1 |
We have a textbox on a web form (ASP.NET 2.0 - C#) that is for end-users to enter e-mail address(es). The valid entries are: name@company.com name1@company.com;name2@company.com;name3@company.com (notice no space after
|
| How to read Hyphenated Values from CSV File? | 10 Dec 2005 14:45 GMT | 4 |
I'm using the OleDB namespace to open a CSV File. I can read the file sucessfully except for hyphenated values. My CSV File contains phone numbers and sometimes these come separated with hyphens (ie: 555-123-4567). These fields come as empty using the OleDB namespace and as ...
|
| Capturing a Screenshot of a Hidden Form | 10 Dec 2005 14:27 GMT | 1 |
I want to be able to capture a screenshot of a windows form that is hidden. My goal here is to create a form of any particular size (the size could be larger than the screen), get a screenshot, and save it to a image file. I know how to capture a screenshot of a form but ...
|
| C# PDF Writing API (free) | 10 Dec 2005 10:32 GMT | 3 |
Are there any free/open source PDF writing API's out there for C# that are actually pretty good?
|
| textBox1.Size.Width | 10 Dec 2005 10:31 GMT | 5 |
Why can't the following work when it has a set property defined? this.textBox1.Size.Width = 25; I get error Cannot modify the return value of 'System.Windows.Forms.Control.Size'
|
| error Convert.toInt64("NotNumeric") | 10 Dec 2005 06:26 GMT | 1 |
as I can convert string and that to the being "NotNumeric" returns 0
|
| TcpListener and Asynchronous accepts? | 10 Dec 2005 05:37 GMT | 1 |
Is there any way to use the TcpListener (or perhaps some other class) to accept a TcpClient connection Asynchronously? I'd rather use the TcpClient now that I have access to it's underlying members in .net 2.0 but I've got no clue how to not block when trying to
|
| Deleting folders in Documents and Settings | 10 Dec 2005 04:01 GMT | 5 |
I am trying to delete unused user profiles, but i am not able to do this. I think it has something to do with the SpecialFolder attribute? Does anyone know how to delete files and folder under "Documents and Settings" DirectoryInfo di = new DirectoryInfo(@"C:\Documents and ...
|
| Move row in GridView | 10 Dec 2005 03:11 GMT | 1 |
Is it possible to 1: Move a row up/down serverside. Like myGridView.Rows[1].MoveUp() I can't find any way to do this. OR
|