| Thread | Last Post | Replies |
|
| Regex query | 25 May 2007 08:49 GMT | 5 |
I want to clarify a Regex, I need to allow up to 20 digits, spaces are allowed within the string too, as long as the overall string is not above 20 in length.. Here's is what I have: [\d| ]{1,20}
|
| Preventing resizing of a Form ? | 25 May 2007 08:45 GMT | 3 |
By default a Form is resizeable. How do I prevent the resizing of a Form ? Ken
|
| Cyrilic (Russian) characters input | 25 May 2007 08:36 GMT | 4 |
Hallo all, I need to make an textbox to accept only Cyrilic characters. I couldn't found any solution except enumerate characters for filtering (seems odd). Please has anyone any ideas ?
|
| Static instance Event fires more than one time | 25 May 2007 08:19 GMT | 9 |
I'm facing a problem with static instances. I have created a class called CustomList by deriving the class List<int>. Inside the CustomList i have created Remove event (when any item is removed from the List). After that i have created a staic instance for the
|
| Installer: dynamically set value to interface dialog's textbox | 25 May 2007 07:54 GMT | 1 |
How to dynamically set a value to a textbox that belongs to a dialog of a custom interface? I'm using VS 2003 Thanks.
|
| How to write some text into the title bar and status bar of Form "Form1" ? | 25 May 2007 06:56 GMT | 1 |
I would like to write seomthing into the title bar of the current Form "Form1". How can I do this ? How can I display/add a status bar (currently there is no such status bar) and write something into this status bar?
|
| How to rename the current Project ? | 25 May 2007 06:45 GMT | 1 |
Assume the current name of my project is "mytestroj". A couple of project files are named with this stem name like mytestproj.sln, mytestproj.suo, mytestproj.csproj,.... How can I rename my project to "testproj1" ? Is it sufficient just to rename all file in WindowsExplorer?
|
| Saving a Dataset | 25 May 2007 05:47 GMT | 7 |
If I have a dataset in memory, can I save that dataset to a SQL database without having a schema or manually creating the tables?
 Signature Regards,
|
| Searching simple sample for loading a XML document and access a node through XPath expression ? | 25 May 2007 05:14 GMT | 2 |
I would like to load an XML document from say D:\mytask\mydoc.xml into a CSharp and to retrieve from the resulting XML node tree a certain node/element by specifing an XPath expression. Does someone know a simple CSharp sample source which shows how to implement this task ?
|
| int arrays between C# and C++ | 25 May 2007 05:05 GMT | 2 |
How can I transport int arrays between C# and C++ so that an int array created in C# will be filled with contents in the C++ dll and so that this content is accessible in the C# dll again.
|
| Adding "please wait" message to datagridview | 25 May 2007 01:20 GMT | 1 |
In my Windows App, how can I add a nice "Please wait" message to my datagridview? With a datagrid I would be able to clear all columns, add one table with one row with the messsage, and bind it to the grid. But I added the columns to the gridview through the designer, so I'm not ...
|
| What is the difference between TextWriter and StreamWriter ? | 25 May 2007 00:41 GMT | 2 |
Some sample source codes use TextWriter other StreamWriter for writing text into a file. What are the differences ? Carla
|
| Event not firing | 25 May 2007 00:20 GMT | 6 |
Does anyone know why the "ColumnChanged" event isn't fired when "Merge()" is called below. "OnRowChanged()" is fired however: Thanks in advance. private static void Test() {
|
| Validating XML on CF 1.x: how? | 24 May 2007 22:42 GMT | 5 |
On CF 1.x XmlValidatingReader is missing: is there any way to validate an XML file against its XML schema? Thanks, Luigi.
|
| Serialization vs. program updates | 24 May 2007 22:19 GMT | 9 |
Just before I invent my own solution... :-) I'm developing a program where I use binary serialization of the data the program holds. Know and then the serialized objecst will be modified, e.g. with a new field, or perhaps the removal of a field. Depending on the
|