| Thread | Last Post | Replies |
|
| date limit on beta version | 20 Dec 2006 11:05 GMT | 4 |
I am ready to publish a small application in Beta - however I would like to control the life of the beta version. So that I can release the production version when there is a zero bug count. Is there a simple way to do this? I imagine that putting a check that looks
|
| what does the term 'state data' mean? | 20 Dec 2006 10:26 GMT | 3 |
In a book i'm reading i've just ventured into chapter 3 - C# language fundamentals. Now i can see that the first part of the code after the class definition defines a public variable, of type string, called
|
| Convert documents to PDF (Server Side) | 20 Dec 2006 10:10 GMT | 8 |
I'm lookin for an external tool which could convert any type of documents to pdf from server. (with as much functionnalities as possible : schedule, pooling, multi thread, embedding font, encrypt, merge, ...)
|
| Question about garbage collector/events | 20 Dec 2006 05:18 GMT | 6 |
Hey guys Does a garbage collector destoy objects that have no references, but are subscribed to some other (say singleton) object? Thanks in advance
|
| Website Login | 20 Dec 2006 04:38 GMT | 1 |
I am building a website that allows you to login at any time to access specfic user information etc .. In the past i have always used form authentication to lock down any protected areas and this has worked fine. My problem is this time a user does not 'have' to login to any
|
| does block means thread sleep | 20 Dec 2006 03:29 GMT | 2 |
Some network methods will block until data available, does this mean this thread will yield to other thread while it is waiting for hardware signal? If so, difference between BeginRead() and Read() maybe isn't so important? Thanks a lot!
|
| Thru code Determine if PC has Large/Small Fonts set | 20 Dec 2006 02:37 GMT | 8 |
trying to write some code to determine if user has large/small fonts set on PC thought this would work but it didn't Any suggestions???
|
| Reverse DNS Lookup - Need Ability to specify which DNS Server is contacted. | 20 Dec 2006 02:26 GMT | 1 |
I have a web page that displays and creates DNS entries. It displays DNS entries if they exist for certain IP ranges. (Usually about 20 IP address at a time) If a DNS entry needs to be created then it creates the entry. However if I use GetHostEntry() to perform the DNS lookup it
|
| Printing with Dot Matrix Printer by C#? | 20 Dec 2006 02:21 GMT | 3 |
Anyone knows how to print with dot matrix printer ? I want to print text with some formatting such as bold, underlined font, and landscape document etc... How can i do this with C#? Thanks...
|
| Overloading 101 quesiton | 19 Dec 2006 23:13 GMT | 13 |
I understand that I can overload a method public void InsertAnimal(ID) public void InsertAnimal(ID, Number, Name) but can I do the following?
|
| read lock needed? | 19 Dec 2006 22:52 GMT | 17 |
If I have many threads write to a variable(e.g. var++) and another thread read it on an interval base. For those writing thread, I know I need lock, or its value could be lower ( even I think it is mostly not going to happen for ++ operation since it is
|
| Excel Instance won;t die if coping cell content to struct | 19 Dec 2006 22:35 GMT | 16 |
In some weird reason, excel instance won;t die if i remove the comment from 4 lines of setting values into struct. here is a snipcode public System.Collections.Generic.List<frmMain.sDBTest>
|
| How do I wait for a web page? | 19 Dec 2006 21:52 GMT | 3 |
I am developing a stock market simulator using data from Yahoo's Finance page. I am using a web browser control hosted on a form that has a public method named GetPage(), which takes a URL. I want GetPage() to call m_browser.Navigate() and then wait for the
|
| Cast from parent(base) to son(derived) class? | 19 Dec 2006 21:13 GMT | 11 |
I have a simple class: public class BaseClass { private string propertyA;
|
| Out of memory with 2-dimensional float/double matrix | 19 Dec 2006 20:49 GMT | 21 |
I´m using a very large 2-dimensional double matrix (45.000x45.000) in my program. At the initialization of the matrix: double[,] matrix = new double[45000,45000] I am getting an out of memory
|