| Thread | Last Post | Replies |
|
| Get color name from ARGB | 20 Sep 2007 15:00 GMT | 1 |
I have a color that was derived from Color color = new Color(); color = Color.FromArgb(alpha, red, green, blue); and I want to get the name of the color if it is known. I tried
|
| convert word doc into PDF using c# code. | 20 Sep 2007 14:46 GMT | 2 |
i'm having very terrible problem. I need to print a word doc into pdf. for this i'm using gostscript to create a virtual printer (http:// www.stat.tamu.edu/~henrik/GSWriter/GSWriter.html). and using microsoft c# code to call this printer and print the document into pdf (http://
|
| What is the meaning of the + in the declaration method? | 20 Sep 2007 14:09 GMT | 5 |
Hi everyone, I am learning c# and i don´t understand a piece of code , can anyone explain the meaning of this code please. public class vector
|
| DateTime.Now Refresh Interval too granular!? | 20 Sep 2007 14:08 GMT | 2 |
I am trying to use DateTime.Now to apply a frame limit to my 3d application. Below is the code involved. In this example I have hard coded it for 60 frames per second (1000 milliseconds / 60 fps). public void Execute()
|
| copy constructor | 20 Sep 2007 14:00 GMT | 2 |
I need to make a copy constructor for a collection class: public class KeywordCollection : BindingList<BaseKeyword> {} Class KeywordCollection is nothing more than a BindingList of
|
| change properties of httpRequest object ? | 20 Sep 2007 13:46 GMT | 1 |
Hi group ! How can I change the url paramters while processing a C# httpRequest object ? This particualr object holds encrypted url paramters which I need to decrypt so the application is able to serve out the page with the right data in it.
|
| When do i have to open the connection ?! | 20 Sep 2007 11:34 GMT | 4 |
My project must connect to a Sql Server quite often to read/write datas. I am wondering : do i have to open the connection to the Sql Server at the beginning when the application loads, then leave the connection open and close it when the application closes ? Or is
|
| Why int remainder=(int)(Math.DivRem(MaxValue, 2, out remainder)) is 5 where int MaxValue = 10!!!; | 20 Sep 2007 11:14 GMT | 3 |
Test: ----------------------------------- int MaxValue = 10; // =current value int remainder=(int)(Math.DivRem(MaxValue, 2, out remainder));
|
| Find string constant (and enventually replace with resources) | 20 Sep 2007 10:34 GMT | 2 |
Hi group, in my C# program, I have code like this : ListItem item = new ListItem("Show All", string.Empty); ....
|
| Extend .NET Class, or Write a New Class | 20 Sep 2007 09:39 GMT | 1 |
I'm implementing logging via the TraceSource class and related TraceSwitch and TraceListeners classes. The TextWriterTraceListener does much of what I need. But it does not roll the log over at some max size, and is missing a couple of other feaures.
|
| DataSet.WriteXml refuses to write... | 20 Sep 2007 06:50 GMT | 12 |
Hi NG, I have no idea why, but since a while a dataset refuses to write to a specific xml file. I get the error message "Der Zugriff auf den Pfad
|
| C# code in a separate file: why? | 20 Sep 2007 01:31 GMT | 1 |
I'm learning how to build web application with asp.net 2.0, and while the author of the book clearly invite the reader to place the code in a separate file if building a web form, he place the code in the same file if building a data form: why? It's not better to place the code
|
| WaitForExit(); | 19 Sep 2007 22:18 GMT | 4 |
How permanent is WaitForExit(); ? I mean is there anything/ an alternative one can do to break the wait otherwise I will run my thread in a separate function, and control it by global variables. Reason - a CMD.EXE thread, with a console application running, which we
|
| SQLDatasourceEnumerator | 19 Sep 2007 21:12 GMT | 3 |
I use this class to find all the SQL Servers on the network, and it works fine. The problem is this: For the server name, I get, eg, "CASSIUS", I do not get "CASSIUS\SQLEXPRESS". When I use this short name in the ConnectionString for SQLConnection.Open(), the Open-method
|
| Can ODBC be accessed from remote clients? | 19 Sep 2007 20:52 GMT | 2 |
I know this is not really related with C# programming language but I'm using C# for developing an database application. If I register database file to ODBC, can it be shared by remote users? Cheers,
|