| Thread | Last Post | Replies |
|
| Calling C++ from C# | 08 Mar 2006 03:17 GMT | 5 |
I am porting my application from .NET 1.1 to 2.0. It worked fine in 1.1, but will not compile in 2.0. I have this function in a c++ file: namespace CPPBack {
|
| Delegate from C++ to C# | 08 Mar 2006 01:29 GMT | 5 |
I have an application in managed C++, and a method in C# that I call. But now I want to add the ability to tell the C# method a specific method in my C++ assembly to call back to. For example, to have the C++ call a sort routine in C#, and send it a compare method, which the C## ...
|
| 3-Tier Development - A little confused.. | 07 Mar 2006 23:02 GMT | 11 |
Developing a new app and am trying to make this my first truly OOP/3-Tier app. I understand the principles of the presentation, business, and data layers. I do, however, have some questions on where certain functionality should be placed and how some things should be
|
| How to add IPs | 07 Mar 2006 22:17 GMT | 5 |
Thanks for reading and for any assistance, I hope I posted in the right place. I am trying to find a method in which to add / remove IPs from a network card. I am going to be placing this into a web service in which - on the fly - i will be adding and/or removing an IP address ...
|
| Windows Service Password change ? | 07 Mar 2006 21:55 GMT | 1 |
Hi NG, Is there a method to change the Username and Password of a service running as User ? Browsed google but didn't find anything.
|
| Business Object reference/dicussion | 07 Mar 2006 21:52 GMT | 1 |
I seem to have a lot of questions revolving around Business Objects and their implementation. Does anyone have any good reference links? Some of the questions I have are: How do you represent the dichotomy between undefined data and defined data?
|
| MS Word Add-In | 07 Mar 2006 21:46 GMT | 1 |
I have been tasked to write a Word Add-In button. Is there a way to write it so that it will automatically update itself via a Web server or will it require a seperate process to control the update?
|
| Comparing enumeration value | 07 Mar 2006 20:39 GMT | 2 |
I have a class with a property called Quality. The property is defined as: Public ReadOnly Property Quality() As Qualities Qualities is defined as Public Enum Qualities As System.UInt32
|
| DotNet 2.0 Posters | 07 Mar 2006 20:09 GMT | 3 |
I really enjoyed and used the posters that came with Visual Studio .Net 2002 & 2003. Are there similar and updated posters for VS 2005 and .Net 2.0 available. Dowload is great as I have an E size plotter that works great for prnting that kind of thing.. I did find .pdf's of the ...
|
| Macros too slow ! | 07 Mar 2006 20:08 GMT | 1 |
I'm trying to use a macro in VS 2003 to insert a code snippet in various sections of my code. This code will help me to test the time taken for any particular action to be performed. The problem is that it takes nearly 30 seconds for it to be executed,
|
| Msbuild - Multiple Reference Paths via commandline | 07 Mar 2006 19:59 GMT | 1 |
Hi Group, I have a question regarding the commandline options of msbuild. I am currently using msbuild to build projects using the existing solution files. These solution files have references to external dll which have
|
| delete multiple lines in DataGrid, message always shown deleting the first line | 07 Mar 2006 19:34 GMT | 2 |
private void dt_RowDeleted(object sender, DataRowChangeEventArgs e) { int id= (int)e.Row["id", DataRowVersion.Original]; if(id >5)
|
| Memory grow and out of memory | 07 Mar 2006 19:33 GMT | 3 |
I have a problem related to memory grow on a server application which is basically stateless (I have some static info loaded). The client accesses this server using remoting and it has worked for about 2 years without problems.
|
| Build and Debug Menus in VS 2005 | 07 Mar 2006 19:24 GMT | 5 |
I've just noticed that the menu items available in Visual Studio 2005 for the Debug and Build menus differ significantly when compared to the menu items in Visual Studio 2003. On my C# installation I don't have build solution, rebuild solution, Step
|
| Excel worksheet | 07 Mar 2006 17:50 GMT | 1 |
Am not sure if this is the right newgroup. I want to open and excel worksheet from VB.Net, populate data and save it. Any idea how it can be done? Thanks in advance
|