| Thread | Last Post | Replies |
|
| Define my own data type | 24 Jun 2006 22:55 GMT | 12 |
All, It was possible before in Pascal, C++, etc. to define our custom data type or redefine the existing type, like in Turbo Pascal we could assume that shortint is int and use all references to shortint like all these variables
|
| Who's starting my service ?? | 24 Jun 2006 20:43 GMT | 2 |
How do I see, from within my main method, in what context my assembly, containing my service program, is executed ?? I want to be able to detect if the assembly is executed by the service system (say started from the Services applet) or if it was executed from a
|
| return a private enum | 24 Jun 2006 20:42 GMT | 6 |
Complete newbie at C#. Class below stripped for brevity. How do I return a private "Status" from a public method? I may need a set/get but I don't know how to do that on an enum.
|
| web application browser area | 24 Jun 2006 19:31 GMT | 1 |
I have a web application that needs to be displayed in the browser such that it takes up the *whole* window, i.e.browser's back/forwards buttons and menus etc shouldn't be displayed. How can this be done? Thanks.
|
| Find and select a item in datagridview using value (don have the i | 24 Jun 2006 17:58 GMT | 3 |
I would like to automaticly select a item in a datagridview using the value of column[0]. I do not have the index. Just the value (which is a string). How can this be done? Thanks.
|
| Strange behavior using TextWriter in release version | 24 Jun 2006 17:23 GMT | 11 |
I have a winforms app that I'm reading some records from a datareader and writing them out to a file like so SqlDataReader dataReader = sqlCommand.ExecuteReader(); TextWriter textWriter = new StreamWriter(strFileName);
|
| Get regular expression | 24 Jun 2006 15:43 GMT | 25 |
I have a regular expression (^(.+)(?=\s*).*\1 ) that results in matches. I would like to get what the actual regular expression is. In other words, when I apply ^(.+)(?=\s*).*\1 to " HEART (CONDUCTION DEFECT) 37.33/2 HEART (CONDUCTION DEFECT) WITH
|
| how to use html code in windows application | 24 Jun 2006 14:32 GMT | 1 |
I want to play video file in my c#.net application (windows), the input for the video file is in html format, i;e i will give the link like <a href:=http://................ like this and from the site i've to play that video in my windows application.
|
| Connection Pooling and Preparing Commands | 24 Jun 2006 12:47 GMT | 8 |
I am just trying to get my head around whether I can use a single SQLConnection for the life of the application or whether I should create it only when needed. I want to create cached SQLCommand objects that are then prepared to reduce
|
| beginner's question: const vs readonly | 24 Jun 2006 10:27 GMT | 3 |
I am learning C#.NET and I donst understand difference between meaning and usage of "readonly" and "const" keywords. Could you explain me please. Thank you
|
| C# SqlConnection question in SQL Server 2000 | 24 Jun 2006 06:22 GMT | 2 |
In our C# windows application, if we build up a SqlCommand array, saying TestCommand [20]. And in the SqlCommand array, later on we try each TestCommand[0], ..., TestCommand[19],
|
| Need som quick advice | 24 Jun 2006 05:26 GMT | 6 |
I'm new to C# and I am building website which allows users to fill out various forms. All is going well, however I'm having a bit of trouble with one particular issue. The main page enables users to enter information, and connect to other
|
| How to access object in array by property value? | 24 Jun 2006 01:06 GMT | 1 |
Is it possible to find object in array with specific property value? Just like dataset filter? Thanks!
|
| Help With Nesting Classes In Library | 24 Jun 2006 00:16 GMT | 4 |
I am writing a class that will do some binary file IO. The class will need to read a header from the binary file, and it will also need to read a varying number of records in the file. I currently have two main methods: Open(string FilePath) and Close(). I would like to read all of
|
| Non-Sequential Binary Reads | 23 Jun 2006 22:00 GMT | 3 |
Does anyone know of a .net class that allows for non-sequential reading of binary files? It would offer a Seek() function or something similar. The BinaryReader appears to only read forward from the beginning of the data (much like the SqlDataReader does).
|