.net-3.5 Questions

6

Below is the code I've currently implemented. if (!Page.ClientScript.IsStartupScriptRegistered(Page.GetType(), scriptKey)) { ScriptManager scriptManager = ScriptManager.GetCurrent(page); if (scr...
Agnusago asked 13/5, 2010 at 12:26

1

Solved

I have a details panel which can be shown or hidden. How can I made a simple fade effect for showing/hiding that panel (and of course its contents) ? I am using Windows forms, and controls don't ...
Pyle asked 16/4, 2012 at 17:11

3

Solved

I have a Visual Studio 2008 C# .NET 3.5 project where a class listens for an event invocation from another class that is multithreaded. I need to ensure that my event only allows simultaneous acces...
Hern asked 16/4, 2012 at 15:17

2

I want inject a implementation of my Interface in the WCF but I want initialize my container of Dependency Injection in the Client of the WCF. So I can have a different implementation for each clie...
Stets asked 9/6, 2010 at 23:58

2

I have an application that uses the SAXONHE 9.2.1.1 api files to transform XML data to plain text. My form has textboxes for XMLInput_FilePath XSLT_FilePath TextOutput_FilePath On the okButton_...
Recognition asked 12/4, 2012 at 15:0

5

Solved

I've taken over the code of a website from someone else to finish off and have hit the issue that every time I load a page, I get a 'File Does Not Exist' exception caught in the Application_Error h...
Furculum asked 27/6, 2010 at 21:14

4

Solved

I need to calculate Tanh-1 in C# (and Sinh-1 and Cosh-1) I did not found it in Math library.. Any suggestions ? EDIT: Tanh not Tan !!
Pood asked 15/5, 2010 at 16:13

3

Solved

I would like a way to get warnings when an object reference could potentially throw a Null Reference Exception, so that I can write defensive code for these. I have looked at Resharper, but didn't...
Vedi asked 11/4, 2012 at 15:44

4

Solved

I'm writing a test WinForms / C# / .NET 3.5 application for the system we're developing and we fell in the need to switch between .config files at runtime, but this is turning out to be a nightmare...

2

Solved

Below is my code. public class PItem { public String content; public int count; public int fee; public int amount; public string description; // Default values public PItem(String _content...
Confirm asked 18/6, 2011 at 19:28

1

Solved

This question has been asked before perhaps multiple times, but I can't get the typical solution to work for me. The proposed solution is to put this in the "app.config" file: <configuration&gt...

6

Solved

I have been trying to figure this out for quite sometime (reading online blogs and articlaes), but so far unsuccessful. What are delegates? What are Lambda Expressions? Advantages and disad...
Overweigh asked 19/7, 2010 at 14:43

2

Solved

I want to create a modal dialog that has more controls than what a standard .NET MessageBox offers you. I've created my own Windows Form that will be called with ShowDialog() to give the modal beha...
Olibanum asked 28/3, 2012 at 16:16

1

Solved

I found this code on how to apply a color filter to a Bitmap object in C#. The problem with it is it uses unsafe code to accomplish this. Is there a managed, safe way to do this same thing? I know ...
Lily asked 25/3, 2012 at 5:53

4

Solved

Is there a tutotial or help file, suitable for a beginner c# programmer to use.
Lanate asked 19/9, 2008 at 14:5

3

This seems like a common case, but for whatever reason, I am stymied by EF's weak editor. I have two tables, like so: Table1 ( Column1 int, PK Column2 int, PK ) Table2 ( Column1 int, PK, FK Colu...
Pieeyed asked 23/2, 2009 at 22:25

1

Solved

I want to use Levenshtein algorithm to search in a list of strings. I want to implement a custom character mapping in order to type latin characters and searching in items in greek. mapping exampl...
Rafael asked 22/3, 2012 at 11:38

4

Solved

Is it possible to have a WPF window/element detect the drag'n'dropping of a file from windows explorer in C# .Net 3.5? I've found solutions for WinForms, but none for WPF.
Heterologous asked 2/12, 2008 at 2:32

4

Solved

Possible Duplicate: Difference between .NET 4 Client Profile and Full Framework download I noticed that you can change the target platform in .NET applications to the Client Profile o...
Halie asked 25/8, 2010 at 0:39

4

Solved

How do you page through a collection in LINQ given that you have a startIndex and a count?
Mighell asked 1/8, 2008 at 13:20

3

Solved

Here is the culmination of a Skeet posting for a random provider: public static class RandomProvider { private static int seed = Environment.TickCount; private static ThreadLocal<Random>...
Pearlstein asked 16/3, 2012 at 17:25

2

Solved

What do I do in order to fire an event when a new client connects to WCF-hosted service? EDIT: What I'm looking is to get an event when a new session is created or new Channel gets created for a c...
Bothy asked 2/4, 2009 at 21:1

7

Solved

I'm deploying a webpart on sharepoint and getting some errors. The webpart consumes data from a Web Service and displays a chart using Microsoft Chart (Framework 3.5). When I try to acces it, I get...
Adrianaadriane asked 29/1, 2009 at 18:54

1

Solved

I have a WPF application that is experiencing a lot of performance issues. The worst of them is that sometimes the application just freezes for a few seconds before running again. I am currently d...
Animus asked 12/3, 2012 at 15:30

1

Solved

I have made my application in ASP.NET MVC 3. The server I use only have 3.5 .net framrwork installed on server. Please let me know how I can deployed my application in .net 3.5 server. the s...
Radii asked 10/3, 2012 at 2:38

© 2022 - 2024 — McMap. All rights reserved.