7
votes
How to change filetype association in the registry?
In addition to the answers already provided, you can accomplish this by calling the command line programs "ASSOC" and "FTYPE". FTYPE associates a file type with a program. ASSOC associates a file …
0
votes
using registered com object dll from .NET
The line:
_reg_clsid_ = pythoncom.CreateGuid()
creates a new GUID everytime this file is called. You can create a GUID on the command line:
C:\> …
2
votes
WeakReference implementation in .NET
You mentioned MSDN; have you already seen this article?
http://msdn.microsoft.com/en-us/magazine/bb985011.asp …
1
vote
Are there any .NET Graphics Calculate Libraries?
ALGLIB may have what you need and is open source:
http://www.alglib.net/
IMSL is a well regarded commercial library …
0
votes
Coding a server that is *not* ‘thread per client’
You could do a thread per request, limited by a thread pool. But you might be interested in asynchronous methods for handling this. This page does a good job of how async approaches work:
…
1
vote
7z and file flush. Its not compressing my file.
You need to call p.WaitForExit() after p.Start(). See the documentation:
…
0
votes
Looking for a good .NET data analysis/visualization/reporting control
You might consider ASPxPivotGrid which provides a lot of OLAP-like drilldown functionality and meets m …
