| Thread | Last Post | Replies |
|
| Data Changes not being saved from DataAdapter | 21 Jan 2008 16:51 GMT | 2 |
I have a simple application that is filling a dataset, importing several rows, building an Insert Statement, then attempting to commit the changes. No exceptions are being raised but the data is never saving and I can't figure out why not.
|
| Calling Javascript from C# Code | 21 Jan 2008 16:20 GMT | 2 |
I am creating a web site that allows admins to edit the website from within the site (add contacts, events, etc.) After modifying the content by either adding, editing, or deleting some info, I want to display a Javascript alert.
|
| Creating forms! | 21 Jan 2008 16:08 GMT | 2 |
How can I create a custom Form() within a component and have it create a proper handle? Currently i can call CreateControl but there is no effect. Should I assign a parent? Where do I get the parent from, (hopefully without the explicit
|
| Creating List<Type> from type name | 21 Jan 2008 15:55 GMT | 1 |
I use switch statement to create Generic list for combobox: using EntityExtension; public static class ComboPickList { public static object GetObjectPickList(string entityClassName) {
|
| How to: Load data in gridview without DataSource | 21 Jan 2008 14:46 GMT | 4 |
First, sorry for my English... I'm triying to load data from store procedure into a gridview. The most simply is doing 'myGrid.DataSource = myDataTable', but this 'myDataTable' returns a numeric value that I need to transform (this
|
| Problem restoring main form from minimize | 21 Jan 2008 13:50 GMT | 4 |
new to c#, using VS2008 Express to build a winforms app. I have set a couple of Application settings to save the main form size and location between runs. That works great. But when I minimize the main form and then try to restore it the form size is reduced to a
|
| Error with partial classes with ineherited class | 21 Jan 2008 13:40 GMT | 5 |
I have the following classes and am getting an error "Projects does not implment inherited abstract member on Insert()" Only the essential code is shown public class DCBase
|
| problem converting to decimal | 21 Jan 2008 13:40 GMT | 4 |
.NET 2.0 In my code am I trying to convert an int value into a decimal: decimal d = 0; int k = 87664;
|
| Problem with List<>.Sort() | 21 Jan 2008 12:57 GMT | 4 |
In a Form I have created I am trying to Sort a List<string> extracted from the Keys of a Dictionary. However, when I attempt to build the project I get the following error: Cannot implicitly convert type 'void' to 'object'
|
| Automatic properties | 21 Jan 2008 12:45 GMT | 3 |
is it possible to have a default value for an automatic property? For example, say I have a property public string Name { get; set; } Can I have the "name" set to a default value of "Peter"? (I guess I could
|
| Setting up users account | 21 Jan 2008 11:59 GMT | 1 |
I had previous asked a question in previous thread but my last question was not answered. The last response I got was from user N. Paldino was: "It seems that you do not have the SQL Server set up with a user associated with the JONESMACH\HP_OWNER user that the website is running
|
| Iterate through XML using .NET 1.1 | 21 Jan 2008 11:55 GMT | 1 |
I have a XML like following: <entities> <entity created="09.01.2008 12:43:50"> <item NAME="MyName" VALUE="MyValue" />
|
| How to DataBind a UserControl with ComboBox? | 21 Jan 2008 11:10 GMT | 13 |
** I just posted another, long thread related to UserControls and DataBinding, but this is separate and smaller in scope so I mad a new thread. ** OK, simple question (I hope): I have a UserControl with a ComboBox inside
|
| ListView column header text on column resizing? | 21 Jan 2008 10:19 GMT | 7 |
I have a listview control with a couple of columns. Sort order is indicated with a litle triangle. The problem is when the sorted column is resized to a smaller width the text is shortened and there are 3 dots displayed at the end.
|
| Oracle Data Provider Issue | 21 Jan 2008 09:33 GMT | 6 |
I have developed an application which strongly access an Oracle 10g DB. The application has to be running for days but i got this problem. The code execution stay blocked in one of these three statements: oraConnection.Open();
|