Tagged Questions

0
votes
3answers
23 views

Generic method using linq expressions

Hello, i have the next 2 methods public static string[] Method1(CustomObj co) { return new string[] {co.X,co.Y }; } public static string[][] …
0
votes
0answers
14 views

Is Environment.TickCount affected by system time adjustments?

I'm curious as to how the .NET BCL property Environment.TickCount is implemented. In particular I'd like to now if it is affected by system time adjustments. My first guess as to how the property was …
1
vote
6answers
59 views

Technology choice for redesigning an old VisualBasic-Application

Completely unexpected I, a webdeveloper with a decent knowledge in OO, am tasked to re-design our old flagship Windows-application and drag it screaming and kicking into the next century. Here's what …
0
votes
2answers
35 views

Unit Testing the Data Access Layer

I want to test the data layer, how do I go about this? I am using NUnit for my business object testing. Must I use mock objects (which I have never used before)? I would appreciate any amount of …
0
votes
0answers
17 views

Can an assembly be executed or loaded within C#.NET COM component?

I have a COM(written in .NET) which needs to create a an AppDomain and load/execute .NET assemblies in it. So that I could unload that appDomain later along with all loaded dll's. While working OK in …
0
votes
3answers
98 views

what is the need of assembly ? why we use them?

what is the need of assembly ? why we use them? is it possible to program without an assembly? is the assembly is created automatically? suppose i develop an asp.net web project is there any …
0
votes
1answer
23 views

Issue with fetching value from registry

Hi i am displaying version value from registry .For fetching value from registry i did the following code. // Where WrmSpoAgentRoot= @"Software\syscon\Point Monitor\"; string keySpoPath = …
0
votes
3answers
27 views

DateTime.Add(TimeSpan) performance vs DateTime.AddDays/Hours/etc* methods.

Is there any performance difference in using DateTime.Add(TimeSpan) vs. DateTime.AddDays(double), DateTime.AddHours(double), etc.?
0
votes
2answers
26 views

asp.net Dropdown menu does not show all the texts In IE,when the text is too long the rest get cut off

asp.net Dropdown menu does not show all the texts In IE,when the text is too long the rest get cut off,anyone can suggest any fixes for it.It works ok in firefox.
0
votes
3answers
24 views

Disallow Text Selection in .NET WebBrowser

I do not want the text in my WebBrowser control to be selectable. How would I do this?
0
votes
3answers
44 views

Is there a way to get a ValidationSummary to work with client-side validators?

The .NET ValidationSummary control aggregates error messages from validators that are fired on postback. Is there some way of getting it to also show error messages from client-side validators? The …
3
votes
3answers
45 views

Defining event handlers

I can define an event like this(declared function): MyElement.Keyup +=MyDeclaredFunction I can also define it like this(anonymous delegate): MyElement.Keyup+=new delegate(object sender, eventargs …
0
votes
1answer
23 views

How do I get the URI that threw a WebException?

I'm calling a method on a webservice and it is throwing a 403 Forbidden WebException... System.Net.WebException: The request failed with HTTP status 403: Forbidden. I've got this error …
2
votes
3answers
75 views

ThreadAbortException

Let's say we have some code like this running in the separate thread: private static void ThreadFunc() { ulong counter = 0; while( true ) { try { …
0
votes
1answer
28 views

Implementing a audio visualizer in WPF

I wish to implement a audio visualizer widget (similar to what Winamp has) in WPF. How would I approach this problem?

1 2 3 4 5 1870 next
15 30 50 per page