| Thread | Last Post | Replies |
|
| Enable Scroll up and scroll down in CR-report | 28 Nov 2006 23:42 GMT | 1 |
Using vb.Net,i created a application.in that application i user Cr-Report for creating reports.After launch the report ,we can't scroll up or down the report using Mouse wheel or keyboard arrow buttons.I want to enable this functionality in my report. Please help me
|
| .NET Framework 2 | 28 Nov 2006 23:36 GMT | 12 |
I am a novice using my computer only for home applications. I am running Win 2000 and I have Office XP Professional 2000 installed. Someplace along the line NET Framework 2 got installed (Probably with an auto update). Do I need this program, and what will happen if I ...
|
| Why is there no Equals() or GetHashCode() in ArrayList? | 28 Nov 2006 22:25 GMT | 4 |
Why doesnt ArrayList implements the Equals() or GetHashCode() methods? How is the developer supposed to check if an array list is equal to another array list? Is the developer supposed to iterate through the array list to find out if they are equal or not? This should be handled
|
| Disposing EventHandlers | 28 Nov 2006 20:40 GMT | 1 |
In a windows app is it necessary to explicity release delegates from events by implementing dispose, or should the framework take care of this? I've read that you only need to implement IDisposable when handling unmanaged resources, which makes sence... however...
|
| Performance counter problem | 28 Nov 2006 17:17 GMT | 2 |
Our software package works fine under XP but when I run under Vista RC1 as an administrator I get the following exception: Exception has been thrown by the target of an invocation. ---> System.Security.SecurityException: Requested registry access is not
|
| Listening on localhost: how to bind on 2 IP addresses | 28 Nov 2006 17:13 GMT | 4 |
I am creating a TCP server app, which will run on a particular machine. Currently I am using the following code (C#): LocalHost = Dns.GetHostAddresses("localhost")[0]; Port = 2121;
|
| dynamically determine .net baseframework version of exe or dll | 28 Nov 2006 15:49 GMT | 3 |
Whether in a Winform application (.exe) or a .Net assembly (.dll), is there a way to determine what version of the .net baseframework the run-time module (i.e. exe or dll) was loaded with (is using)? Seems that using reflection this is possible...just can't seem to figure out ...
|
| Problem with partial post back & master page | 28 Nov 2006 15:37 GMT | 1 |
I have ASP.NET user control that implements ICallbackEventHandler. Partial postback works perfectly when I put control on a regular webform. But when I put it on page that has master page control doesn't work. I'm getting following error :"The target <name> for the callback could ...
|
| High Performance Xml parser | 28 Nov 2006 11:10 GMT | 1 |
I am looking for component which allows me to parse my xml file. the reason i am asking this, is because my xml files are huge it can reach as far as 1GB more or less. the time to parse such a file is something like 5 Hours.
|
| Dispose on Kill process | 28 Nov 2006 05:10 GMT | 1 |
Is it possible to catch event when a .net application process is killed in order to do the required cleanup? ie. task manager - kill process. The only way I can think of doing this currently is by using windows messages to catch the destroy message. From what I've read CLR doesn't ...
|
| Changing Route Table from C# | 27 Nov 2006 22:58 GMT | 2 |
I've posted this question in 'microsoft.public.dotnet.framework.compactframework' as well, but despite the great help I still haven't solved the problem. So before going the C++ route I would like to see if anybody in this group may
|
| Windows Workflow | 27 Nov 2006 19:10 GMT | 1 |
What do I need to install in a Windows 2003 server and Microsoft Office SharePoint Portal 2007 server in order to use the workflow features of Windows Workflow? Does Win2003 already have the priore version of WWF installed? if not, then
|
| c# as operator | 27 Nov 2006 19:08 GMT | 10 |
Hey there Which is better: "(inSet as ICloneable).Clone()" or "((ICloneable)inSet).Clone()"? Thank you
|
| C# windows application | 27 Nov 2006 18:33 GMT | 1 |
Hi All, I read article (http://msdn.microsoft.com/msdnmag/issues/05/08/AutomaticProxyDetection/default.aspx). I need yours help. Please advise me My Requirement is given below.
|
| Managed C++ Mixed Assembly | 27 Nov 2006 18:00 GMT | 9 |
I have a VC++ Project that outputs an unmanaged DLL. I would like to convert this project to a managed C++ Project. The goal is to mix unmanaged and managed code. Un unmanaged exported function will need to run managed code. Is it possible ?
|