| Thread | Last Post | Replies |
|
| Class recursion question | 24 Apr 2008 14:05 GMT | 5 |
I have a project that I am working on and I need some suggestions. First, I have a class that contains a value and a reference to a parent class. For example:
|
| Retrieving text printed in a stored procedure | 24 Apr 2008 13:51 GMT | 4 |
Is it possible to retrieve the text I printed in a stored procedure using PRINT command when using C# SqlDataReader? Any idea? Thanks for every hint,
|
| Filtering Textbox input | 24 Apr 2008 11:43 GMT | 3 |
I've got a textbox where I filter the input in the KeyPress event to allow only certain characters. However, If the user cuts and pastes a text into the textbox, all text is entered - not only the characters allowed. That doesn't surprise me, but
|
| Refresh Linq Data Entities in the Model | 24 Apr 2008 09:15 GMT | 13 |
i have generated a database model using vs and a *.dbml file. there are a lot of tables in the database and all of them are prefixed, like xxCustomers, xxOrders. for the generated entities i don't want those prefixes so i removed them in the design view of the model which works
|
| Font not printing right on SOME printers | 24 Apr 2008 09:05 GMT | 2 |
Have a weird one. The application works fine on some printers, doesn't on others. The problem is that I have a one page report which uses several fonts and fonts of varying size. The only one I am having trouble with is the OCR font (see code below). On some machines, when ...
|
| Serialization into a text file | 24 Apr 2008 08:27 GMT | 7 |
I have a console app which runs some queries on a database and writes the results into an excel file. I'd like to build a GUI which would allow to give some parameters to the console app, for example to forbid the execution of a query.
|
| Coding NEXT button | 24 Apr 2008 08:14 GMT | 9 |
I am working with Visual C# window and in my application I need to use a button ( NEXT) . The button should displays one panel with its objects each time it clicked. I already developed the codes for creating panels and their objects which will be questions and their answers. ...
|
| XmlElement SetAttribute method not working correctly | 24 Apr 2008 04:28 GMT | 2 |
I have wrote a method in my C# class with the following code, to create an XMl file. The root element is suppose to have 3 attibutes. I can not get attributes to appear correctly.
|
| License system | 24 Apr 2008 03:58 GMT | 2 |
Hello Group I've developed an application that i want to secure with some licenses system, can anyone recomend a license system? The application is developed in Visual Studio .NET 2005 C#
|
| .NET Cookie Parsing | 24 Apr 2008 01:00 GMT | 5 |
Is there a decent cookie parser out there somewhere? I keep running into cookies that .NET can't handle. I've also found a couple of other parsers but they're choking as well.
|
| MVC ViewPage<TViewData> How to Inheriting from a Generic Type? | 24 Apr 2008 00:52 GMT | 1 |
In the source code for System.Web.MVC the generic class is defined as: public class ViewPage<TViewData> : ViewPage I want to create my own custom ViewPage class, and inherit from the generic type.
|
| Bitmap Object Class | 24 Apr 2008 00:49 GMT | 1 |
When creating a Bitmap object in C# with Bitmap temp = new Bitmap("(filename here)"; What is put into memory? Is it just the bitmap info header or is the entire bitmap loaded into memory?
|
| resize events on windows form | 23 Apr 2008 23:40 GMT | 6 |
I am trying to get access to the event after a window has been resized. The events I have been using SizeChanged and Resize all fire after any pixel size change. What I am trying to achieve is after the window has been dragged to a new
|
| CS0246 (problem with user-defined namespace), C#.NET 2.0 | 23 Apr 2008 23:31 GMT | 1 |
I am new to C#, and created a simple Windows application in C#, just to test the logic needed. This was a simple log-in which contained a single namespace. Namespace included a class (in its own .cs file) containing regular expressions to validate the format of the entries ...
|
| Question on UserControl | 23 Apr 2008 22:52 GMT | 1 |
I've created a UserControl comprised of two controls, a DataGridView and a DateTimePicker. I've done this because one of the columns in the DataGridView will hold a date, and when the user clicks on the column, the DateTimePicker will appear.
|