| Thread | Last Post | Replies |
|
| <asp:EditCommandColumn/> in using datagrid doesn't fired an event for OnEditCommand | 14 May 2004 10:51 GMT | 1 |
I am using VB.net It is found that the <asp:EditCommandColumn/> wouldn't fired an event for OnEditCommand If pushbutton has been used:
|
| Validating Event handler doesn't allow Cancel of Form | 14 May 2004 09:09 GMT | 1 |
I have implemented a form using a TabControl with 5 TabPages. On one page, I have a number of controls, i.e., ComboBoxes, RadioButtons, NumericUpDowns, etc. I want to validate the data entered by the user into these controls
|
| High Speed Network Object Packing | 14 May 2004 08:31 GMT | 1 |
I have two computers that I want to pass objects of a couple different classes back and fourth at a high rate of speed (>60 Hz). I'm looking for a good way to do this. I've been playing with System.Net.Sockets and using XMLserialization and Binary Serialization....I was unable ...
|
| 52K exe file and 11MB memory footprint | 14 May 2004 06:08 GMT | 1 |
I am playing around a little with C# and the .Net Framework. After finishing a first application I have a 52K executable. When executing it I can see that it has a memory usage of allmost 11MB. I guess this is because of the .Net VM runing. Can I reduce the memory usage somehow
|
| Confused by the NameValueCollection | 14 May 2004 05:37 GMT | 7 |
I need a little clarity in the NameValueCollection. Within the MSDN .NET 1.1 Framework help is says: "This collection is based on the NameObjectCollectionBase class. However, unlike the
|
| How to use .Net to send fax? | 14 May 2004 04:55 GMT | 3 |
How to use .Net to send fax? Thx Justin
|
| weird hashtable behaviour ..is a bug ? | 13 May 2004 21:01 GMT | 1 |
I use a Hashtable in my program to keep unique items...at one instance I need to repopulate this hashtable through a loop. when starting repopulation hashtable.count() returns ZERO hence first item gets added successfully but as soon as the control reaches top of foreach
|
| Oct 2003 .NET Framework doc update fails ... | 13 May 2004 20:49 GMT | 1 |
H I am trying to update the .NET Framework documentation on my system from version 1.1.0 to 1.1.1. The October 200 .NET Framework SDK Documentation Update fails with the following message "The upgrade patch cannot be installed by the Windows Installer Service because the program to ...
|
| How do you think about OODBMS in .NET system? | 13 May 2004 17:30 GMT | 4 |
I was finding a simple way to save objective and relational data. I guessed about SQL Server, but it's too complex and needs more codes about non-logic. My data is a game design data, so it is complex model and needs
|
| Help with highlighting text using RegEx | 13 May 2004 16:52 GMT | 4 |
I've been tearing my hair out with this problem, I'm not particuarly good with more complex reg expressions. Basically, I'm trying to highlight search keywords. For example:
|
| How to allow instanciation of a class from another class method inside the same assembly??? | 13 May 2004 15:58 GMT | 11 |
I'd like to be able to allow instanciation of a class (class Class_A) only from another class method (class Class_B). And I'd like to write the necessary code to enforce this behavior even inside the same assembly where class Class_A and Class_B are defined.
|
| Wait for the terminations of all children threads | 13 May 2004 14:21 GMT | 1 |
I use the following to let the calling thread to go forward after the terminations of all the children threads. for (int i=0; i<threadCount; ++i) { threads[i].Join();
|
| GUID | 13 May 2004 12:31 GMT | 3 |
Is there any chance that a GUID will be duplicated if I create it from different threads in an applications in a multiCPU machine using Guid.NewGuid(); Thanks
|
| Can Socket.Send not send the whole data ? | 13 May 2004 11:16 GMT | 3 |
On a book I read spcket.send might not send the whole data you requested to send, so you should resend the missing data yourself (see below) the send method actually has a return value and the docs say: If you are using a connection-oriented protocol, Send will block until all
|
| User Controls - Property Pages and Region | 13 May 2004 10:26 GMT | 1 |
1. I am trying to write a control that inherits from a Windows control, does anyone know how to write property pages for a control (similar to the way you would do it in VB6) as i cannot find any examples e.g. wrote a property called maskcolour and want the user to choose the RGB
|