| Thread | Last Post | Replies |
|
| site searching | 31 Jan 2007 21:45 GMT | 2 |
Can anybody provide me sample/code for web site searching(i.e HTML pages, etc) without database. I am using ASP.NET 2.0. Thanks, Pradeep
|
| Any benefit for fixed size hashtable? | 31 Jan 2007 21:34 GMT | 8 |
If I am not sure how many items will be in my Hashtable/ArrayList dynamically (multiple threads can add/remove/check the item), however, I can estimate the total number will not exceed 60000. How much can I gain in term of performance if I decalre the hash as
|
| Creating a new font via tranformation | 31 Jan 2007 21:28 GMT | 3 |
I'm trying to migrate from Java to C# and have encountered a problem. I can't seem to find a way to create (ultra)condensed fonts for later use in a program. In Java I had a really nice method some_font.deriveFont(AffineTransform), which would return a new font.
|
| Question on arrays (newbie) | 31 Jan 2007 21:25 GMT | 4 |
I am trying to rewrite a vbs script in c# that collects data from a pc and writes it into an xml file I have figured out how to write the file with data in an array. Smple of code below. But that seems quite inefficient considering I have to collect many many properties for ...
|
| Tracking login... | 31 Jan 2007 20:54 GMT | 1 |
I am trying to write my first WebApp and I have the basics working. However I am having trouble with one concept. Tracking the user throughout the application. So, I have the code working underneath, but am making
|
| Converting byte[] to string - removing NULLs?? | 31 Jan 2007 20:46 GMT | 3 |
I've eliminated the bulk of code, this should be sufficient: byte[] fromEncrypt; string sDecryptedString; //Read the data out of the crypto stream.
|
| Reasoning behind the EventHandler(object, EventArgs) signature | 31 Jan 2007 20:43 GMT | 6 |
What is the reasoning for recommending that all events have the signature EventHandler(object sender, EventArgs e). Obviously I can create a custom delegate delegate void FooHandler(string foo)
|
| Type casting from one namespace to the other. | 31 Jan 2007 20:34 GMT | 2 |
(I first posted this question on the csharp.general but got no response, and since this NG is more active, so I repost it here) I have two enum definitions from two different namespaces: namespace ns1
|
| Instance with Inheritance | 31 Jan 2007 19:58 GMT | 6 |
Can We create the instance of class with Inheritance like following : Derivedclassname var = new Baseclassname
|
| IPAddress and XmlSerializer | 31 Jan 2007 19:20 GMT | 1 |
How might I serialize an IPAddress? I read it needs to have a default constructor so I made a wrapper class: [Serializable] public class IPAddressEx : IPAddress
|
| Threadpool LateBinding | 31 Jan 2007 19:18 GMT | 1 |
Ok, I am utilizing the threadpool class to manage a number of threads. Priority is not important to me and neither is if the threads are background or foreground threads so I opted for the threadpool class.
|
| Need to Create a Specific format with XmlTextWriter | 31 Jan 2007 19:12 GMT | 1 |
I have a typed-dataset of items that need to be written to an xml file in a specific format. Writing the Xml file is the easy part. How difficult is it to write an output with the following format: <root>
|
| ValidateChildren on a tab control | 31 Jan 2007 18:51 GMT | 3 |
I'm very new to windows forms and C# so this is my first post in this group :-) I have a very simple forms app with a tab control containing two tabs. Its related to football and one tab relates to players and the other tab to teams. I'm using the ErrorProvider component to
|
| VS2K5 doesn't compile/execute latest code | 31 Jan 2007 18:22 GMT | 3 |
I posted this question in vsnet.ide newsgroup about more than a week back but didn't get any single response yet therefore, reposting again same to several newsgroups. When I run my C# WinForms project either by pressing F5 or clicking Start
|
| C# Label encapsulate to Image | 31 Jan 2007 18:05 GMT | 1 |
In my C# windows form, is it possible to encapsulate a Label to an Image? If possible, how to do that? Thanks for help. Jason
|