Tagged Questions

0
votes
2answers
136 views
+550

Draw emf antialiased

Is there a way to draw an emf metafile (exported form a drawing tool) with antialiasing enabled? The tools I tried are not capable of exporting emf files antaliased so I wondered if I can turn it back …
1
vote
2answers
125 views
+100

Please help me with a program for virus detection using detection of malicious behavior.

Hi, I know how antivirus detects viruses. I read few aticles: http://stackoverflow.com/questions/1396443/how-do-antivirus-programs-detect-viruses …
1
vote
3answers
84 views
+100

How can I prevent CompileAssemblyFromSource from leaking memory?

I have some C# code which is using CSharpCodeProvider.CompileAssemblyFromSource to create an assembly in memory. After the assembly has been garbage collected, my application uses more memory than it …
1
vote
1answer
53 views
+100

How might I set up data plumbing for Silverlight to MySQL in my situation?

In short: What is a good method for setting up read-only data access from Silverlight to a MySQL database? Here are the details of my situation: I'm currently trying to set up a Silverlight …
0
votes
2answers
67 views
+100

Linq2sql: efficient way to get random elements with weight?

Byt lets say I have an integer weight where i.e. elements with weight 10 has 10 times higher probability to be selected than element with weight 1. var ws = db.WorkTypes .Where(e => e.HumanId != …
1
vote
4answers
78 views
+100

Change Entity framework database at runtime

In most asp.net applications you can change the database store by modifing the connectionstring at runtime. i.e I can change from using a test database to a production database by simply changing …
0
votes
1answer
66 views
+150

Drag-and-drop accordion panels? (ASP.Net)

Hello, I have a set of accordion panes(dynamically created) contained in an Accordion control. Basically, what I am wanting is for the user to be capable of dragging these accordion panels so that …
3
votes
4answers
212 views
+150

Random playlist algorithm

I need to create a list of numbers from a range (for example from x to y) in a random order so that every order has an equal chance. I need this for a music player I write in C#, to create play lists …
1
vote
2answers
59 views
+200

msbuild and visual studio project configuration problem

I have a solution containing a lot of projects and installer projects. One project uses a third party package. The package comes with a native DLL and a .net wrapper DLL. In order for the code to …