| Thread | Last Post | Replies |
|
| Regular expression in Infinite Loop | 30 May 2006 21:48 GMT | 1 |
The below regular express can sometimes cause an infinite loop. Anyone know what could cause this? string RegexSig = @"To:*\s*(?<address>\S+@\S+)*(\s|\S)*did not reach the following recipient";
|
| Is an inherited base object called an object's parent? | 30 May 2006 19:11 GMT | 1 |
In the .NET docs about implementing a Dispose() method to avoid costly finalization, the following confuses me: <Quote> Implementing a Dispose Method
|
| Can't create setup! | 30 May 2006 17:04 GMT | 1 |
I've build a project using cs and VS2005, using a custom DLL and a project for the CRYSTALREPORT.. I can't build the setup to test it on another computer i've tried the .NET setup wizard, and even tried the trial of
|
| How do I configure an ASP dot net app to restart every time it's run in debug mode? | 30 May 2006 17:01 GMT | 1 |
I have noticed that when I run my ASP dot net application in debug mode and set a breakpoint in the Application_Start event, this event is not raised every time I run the project. Is there a way to configure the project so that the application
|
| CheckedChanged event - how do I make it work? | 30 May 2006 16:47 GMT | 6 |
It seems that the following code should work - (if not why is the event there?) (Do I need some sort of client side script to awaken it?) Private Sub chkRefresh_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles chkRefresh.CheckedChanged
|
| VS2005 Reference problem updating bin directory | 30 May 2006 16:25 GMT | 1 |
After updating to VS2005 we noticed that references are not always updating our bin directory in the case of indirect references. For example: PROJECT 1
|
| Warning Msg: Name '_ClassColumn' is not CLS-compliant. | 30 May 2006 16:20 GMT | 10 |
I converted a vb.1.1 web service project to 2.0 and .net 2.0 created / replace some datasets. The code it automatiacly generated gets a warning message as follows: Warning 150 Name '_ClassColumn' is not CLS-compliant.
|
| VB.Net Problem Passing A Control To A Routine and retrieving the ctrls index | 30 May 2006 15:27 GMT | 2 |
I am having a problem when I pass a control to a routine and I want to set properties for the control I cannot determine a way to retrieve the passed in controls index so that I can set the properties for the specific index. The routine blows up after the first time through. The
|
| DataSet.WriteXML writes decimals in Scientific Notation | 30 May 2006 14:30 GMT | 2 |
I have a DataSet that contains a table with about 6 columns of high accuracy decimal values. When I try to write out the DataSet using the WriteXML() function the XML is written fine, but the decimal values are written out in scientific notation ("9.984348392E+08"). This wouldn't ...
|
| problem with dropdown box | 30 May 2006 13:02 GMT | 1 |
I am using a combo box/drop down box, in which i have 50 values, when i am clicking that combo box the values occupies horizontally whole screen and it looks odd, so, i want, when i click the combo box only 5 has to be displayed and remaining must be viewed by scrolling.
|
| DataGridView control possible gc bug? | 30 May 2006 12:13 GMT | 1 |
I was working on an MDI application using Visual C++ 2005 .NET. In a child window, I have an instance of DataGridView control. If I open several child windows, they all work fine. However, if I close one of the child windows and try to add a row to
|
| inherite toolstrip problem | 30 May 2006 11:21 GMT | 1 |
I add a toolstrip control on a windows form, set it's modifiers as protected. Then I add another form which inherited from the first one. But the property of the toolstrip on the second form is readonly.
|
| How to add user control as treenode to a treeview | 30 May 2006 09:44 GMT | 1 |
I am working in C#, windows application.I want to know, How can i add a user control as a treenode to a TreeView control using C#. What are all the steps that i need to take in order to accomplish the above task?
|
| OpenFileDialog throws "Illegal characters in path" | 30 May 2006 08:52 GMT | 1 |
I have a OpenFileDialog on my windows form whose filter is *.*. I want the users to be able to further filter the files by giving *.doc or *.zip etc in the "file name" field of the dialog (Just like it happens in the open file dialog of MS Word)
|
| Questions on cryptography | 30 May 2006 05:27 GMT | 1 |
I am trying cryptography in dotnet using the System.Security.Cryptography namespaces. I have a couple of questions 1. If I use SymmetricalAlgorithm RijndaelManaged as the algorithm and
|