| Thread | Last Post | Replies |
|
| How to specify COMPRESSION level when saving (loseless) PNGs ? | 03 Sep 2007 19:09 GMT | 9 |
I have been using something like: public void SaveJPG(Image Image, string FileName, long QualityLevel_0_100, long ColorDepthLevel) {
|
| GetMethod causes Ambiquous match found exception | 03 Sep 2007 17:58 GMT | 3 |
Class MyClass contains a number of FindAll() methods in parent classes: class MyClass: ActiveRecordBase<MyClass> {... } public abstract class ActiveRecordBase<T> : ActiveRecordBase { protected ActiveRecordBase();
|
| Digest Authentication to TCP/Http based small server | 03 Sep 2007 16:19 GMT | 2 |
Is it possible to code Digest based Authentication to small socket TCP/HTTP server? Has anyone experince how to do it? Cheers and Thanks,
|
| How to create Excel Doc on the fly from web apps? | 03 Sep 2007 15:59 GMT | 2 |
i can generate an excel doc from console apps using C# and by using the following : using Microsoft.Office.Interop.Excel; using System.Reflection;
|
| .NET and COM | 03 Sep 2007 15:43 GMT | 4 |
at the moment we're experiencing path issues. From what I know, a .NET- assembly is looked up 1) in the GAC 2) in the EXE's directory
|
| webclient timeout | 03 Sep 2007 15:03 GMT | 1 |
i am a newbie, i want to write a code to download data from web using webclient string HTMLstring = ""; WebClient client = new WebClient();
|
| SelectSingleNode throwing exception: | 03 Sep 2007 14:58 GMT | 1 |
I have following XML which I need to modify and invoke a http request I need to select a node but I am getting "Namespace Manager or XsltContext needed. This query has a prefix, variable, or user-defined function." Error
|
| C# and Designer | 03 Sep 2007 14:47 GMT | 1 |
This might not be the best group for this question but I don't know where else to post. I've designed a control and I'm trying to setup a designer for it. My issue right now is that I'm need "dynamic" properties so that when one
|
| Problem showing message boxes by threads | 03 Sep 2007 14:37 GMT | 1 |
I need to set my main form as the owner of an error dialog box shown when there's an exception in a background thread. This is to make sure that the error form is closed down if the user pulls their security card while the error window is being shown.
|
| Get the SQL types from a database | 03 Sep 2007 14:12 GMT | 5 |
I understand that in VB6 there was a command that let you poll the database and get the types of the columns (or something similar). I haven't worked in this language so I am not sure about it, but would anyone know if there is something similar in C#?
|
| Strange behaviour | 03 Sep 2007 14:07 GMT | 10 |
Please forgive me for the neverending code down here but I cannot find a rational explanation of the output of this simple program (really!). Soluzione class has a double[,] field to represent a matrix. A method named init() fills this matrix with random numbers. The main ...
|
| Speeding up a web service over SSL | 03 Sep 2007 13:36 GMT | 6 |
I'm presently developing a WinForms app in C# (VS.NET 2005) which needs to interface with a web service running on the company's public Internet site. The webservice is very simple - it receives a string, looks it up in a SQL Server database, and returns another string based on ...
|
| How can set that both limited users and privileged users can write to a registrykey in c# | 03 Sep 2007 12:57 GMT | 3 |
How can I set write permissions for a limited user to write values to a certain registrykey. This registrykey is also written to by a administrator (which probably also created the key in the first place).
|
| Good books for C# begunner | 03 Sep 2007 12:16 GMT | 1 |
I'm looking for a good book for learning C#, and I hope someone might give me some recommendations. I took a college course in introductionary VB.net programming last autumn, and I've been playing around with VB.net since, but nothing major. I
|
| "Comparison to integral constant is useless; the constant is outside the range of type 'int'" | 03 Sep 2007 11:04 GMT | 1 |
"Comparison to integral constant is useless; the constant is outside the range of type 'int'" How can I fix this compiler warning, please, for the following pseudocode? int m_nError;
|