| Thread | Last Post | Replies |
|
| Differences with GDI+ when running under asp.net or nunit | 29 Nov 2006 22:53 GMT | 1 |
I'm using the free pdf creation library pdfsharp(www.pdfsharp.com) to create a set of pdfs. This library makes heavy usage of System.Drawing and GDI+ I first implemented the pdf creation utility in a class that I than
|
| C# equivalent to TryCast | 29 Nov 2006 22:38 GMT | 21 |
Will somebody convert this for me... System.Web.UI.HtmlControls.HtmlHead header; header = TryCast(this.Page.Header, System.Web.UI.HtmlControls.HtmlHead); <%= Clinton Gallagher
|
| Your opinion please | 29 Nov 2006 22:37 GMT | 20 |
I'm currently creating a database class, which contains a member called Open(). With this method users can open different databases. When a user tries to open a database which happens to be secured with useraccounts (username, password etc), the user should be notifed to login.
|
| <object>.Execute method in C# | 29 Nov 2006 22:21 GMT | 1 |
While translating some VB code to C# (both .NET 2.0) I ran across the following line of code: sResult = m_oMaintain.Execute( sCommand ); sResult and sCommand are both strings and m_oMaintain is an object. The
|
| GridView Cells | 29 Nov 2006 22:17 GMT | 7 |
I was wondering if there is a way to make a single cell readonly within a GridView? I know you can do it for a column but what about a cell within that column? Thanks!
|
| 2nd try Sorting Algorithm. | 29 Nov 2006 20:34 GMT | 3 |
I posted this morning and recieved no responces., so I decided to simplify my question. How do I stop an exception from being thrown after the first run through of the while clause:
|
| Algorithm question | 29 Nov 2006 19:06 GMT | 1 |
I just started working with Introduction to Algoriths from MIT Press and my goal is to rewrite them in c#. This is just a learning experiance. The following code:
|
| MemoryStream instance length is 0 after stream has been written | 29 Nov 2006 19:00 GMT | 2 |
I'm trying to write new stream from string and i can't figure out why my memory stream instance is null after i have writen to it with stream writer. Here is an example.
|
| for vs foreach for array enumeration | 29 Nov 2006 18:21 GMT | 9 |
I'm a bit confused about the differences of these two commands (what is the right word for commands here?) when used to enumerate the contents of an array. The below example uses both foreach and for to enumerate the contents
|
| Throw question | 29 Nov 2006 18:11 GMT | 7 |
If I code as follows try { \\ do something
|
| Need help with algorithm | 29 Nov 2006 16:24 GMT | 5 |
Hello, I need some suggestions on how to do this. I am reading through a large iis loge. For each line, I get three datapoints (sessionID, Time, Stage). I need to store these values into some collection, but not sure which one. Here is how they are related.
|
| Seeking C# Engineer | 29 Nov 2006 15:58 GMT | 1 |
Just joined this group and wanted some advice on how to get the word out about my companies job opening. We have done Monster and Dice and as you would expect, not much success in candidate quality. We are a Boston, MA based company working in the Banking/Financial
|
| c++ to c# help | 29 Nov 2006 15:28 GMT | 4 |
I am trying to convert the following c++ code to c#. BYTE* pbmp = (BYTE*)malloc(lSize);; myFunction((long)pbmp); Can anyone help?
|
| Left and right value of assignment for functions returning reference types | 29 Nov 2006 15:16 GMT | 2 |
This is an excerpt from the Book "Programming Microsoft Visual C#: The Language": A function evaluates to the return value. When a reference type is returned, a function is available as a left- or right-value of an
|
| Word document paragraph | 29 Nov 2006 15:09 GMT | 1 |
If I place a table or graphic at the beginning of a Word document, does the wordDoc.Paragraphs[1] returns that?
|