| Thread | Last Post | Replies |
|
| Object relational mapping: where are we? | 21 Aug 2007 10:06 GMT | 6 |
Object relational mapping, for those who don't know, is a modern software concept for tools that automatically copy data across from your objects in code to database tables, or vice versa. Developing database-dependent applications regularly at our company, I'm a little suprised ...
|
| fxcop problem | 21 Aug 2007 10:02 GMT | 2 |
Need some advice on debugging the static code analysis (fxcop) service in vs2005 teamsenter. In our solution any fxcop fault is configured to result in a compiler error. On all development computers our source code compiles \ builds without any problem.
|
| Using C++ DLL in C# | 21 Aug 2007 09:58 GMT | 5 |
I'm trying to understand usage of an C++ DLL in an C# application. The example is easy but stops when execution the C# Console App with the following exception: System.EntryPointNotFoundException was unhandled
|
| how to retreive information from multiple tables ? | 21 Aug 2007 09:45 GMT | 1 |
I have a small program already written in VFP8. This program allows user to enter start and end date. When user click ok, it starts from transaction file and pick up the data which falls under the entered date. While picking up the data, it also reads and gets the name and ...
|
| Html documents | 21 Aug 2007 09:24 GMT | 4 |
Actually my assignment is to write documents in html. Do you know any software which is on line so that I can download and write documents in html. Thanks
|
| c# conditional operator error | 21 Aug 2007 09:14 GMT | 2 |
Can you help me with this error? string fields = string.Empty; ... fields.Length > 0 ? fields += ", Name" : fields += "Name";
|
| Getting the "name" of an indexed item | 21 Aug 2007 09:02 GMT | 3 |
I think this is a generic C# question: In my program, I have an object that is a Sharepoint list item: SPListItem item; SPListItem is a collection containing the fields of Sharepoint item, and I
|
| Should I instantiate the delegate or not? | 21 Aug 2007 08:55 GMT | 5 |
Suppose I have a delegate variable, what is the difference between the following two statements? DelegateType methodPointer = new DelegateType(SomeMethod); and...
|
| beginning | 21 Aug 2007 07:44 GMT | 1 |
i did this simple page, but i don't see the results, why? A) asp.net-C# file is: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="CurrencyConverter.aspx.cs" Inherits="CurrencyConverter" %>
|
| Location of a control relative to form edges? | 21 Aug 2007 07:22 GMT | 1 |
I have a control that is inside a GroupBox, and that GroupBox is inside another group box. I would like to find the location of the control relative to the form itself. When I examine the Location of the control, it is relative to the containing GroupBox, and the Location of ...
|
| String | 21 Aug 2007 04:55 GMT | 6 |
I have a string strA = "12 MyAddress" strB = "Your Name" I want to get the first char of string and want to know weather it is integer between 1-9 or char between A-B.
|
| A question on the RECT struct | 21 Aug 2007 04:46 GMT | 8 |
is there a difference between the following: Rectangle r = new Rectangle (10,20,30,40); Rectangle r = Rectangle.FromLTRB(10,20,30,40); Also, I guess I'm not sure why Structs are created with a NEW keyword,
|
| create ActiveX control with a picture box | 21 Aug 2007 01:13 GMT | 3 |
Can anybody give me some information on how to create an activeX Control in C# with a Picturebox. Thank you, Supriya
|
| SQL Server login failing | 21 Aug 2007 01:00 GMT | 11 |
I am getting the following error: ********* Login failed for user 'AUM\ASPNET'. Description: An unhandled exception occurred during the execution of the
|
| Get the file name from a dll. | 21 Aug 2007 00:54 GMT | 1 |
I want to enumerate all public methods from an assembly (a C# DLL) and list the *.cs filename, where was the particular method defined (the source code for the method). I know how to enumerate all public methods from DLL, but I don't know how to
|