| Thread | Last Post | Replies |
|
| A challenge: regex to convert all urls within HTML | 17 Sep 2007 14:27 GMT | 3 |
My task: Take HTML -> convert into plain text. Sub-task: 1. Find all urls within HTML (<a href="http://www.abc.com">More about baby bears</a>).
|
| Dealing with ProgressBar | 17 Sep 2007 13:43 GMT | 3 |
I have a .NET CF application using C# language. On a form, I have created a panel, on which I have placed a label and a progress bar control. However, when I change the value of the progress bar, the progree bar moves ahead. In the same method, when I change the text
|
| Why second constructor is called?? | 17 Sep 2007 13:39 GMT | 3 |
Why the constructor with String parameter gets called whenever value of null is passed (see below)?? =============== using System;
|
| DataType Enum? | 17 Sep 2007 12:51 GMT | 3 |
Does anybody know if VS 2005 contains an enum of the datatypes available in an SQL Server database? Cheers Johnny J.
|
| Variant data type | 17 Sep 2007 11:31 GMT | 2 |
I'm trying to convert a MS-Sql 6.5 VB application to SQL 2005 and vb.net. The vb app has uses a variant data type. When I try to read the variant data type from the sql 2005 database I get 8,000 characters into the variant type, however when I use the 6.5 database I get only the ...
|
| I need to find the length of the items in a array | 17 Sep 2007 11:10 GMT | 3 |
I want to insert a value in an array using a textbox.And i need to find the index of the last item in the array. Please help i am a newbie.thanks
|
| detect if a file is open | 17 Sep 2007 10:25 GMT | 1 |
I'm using FileSystemWatcher to watch the new file creation. When there is one, I want to open it and read it's content. But, by the time when I got the message from FileSystemWatcher the file may be still hold by the process who just created it, writing data.
|
| changing app.config style | 17 Sep 2007 07:51 GMT | 3 |
I have a simple question. If I use a app.config file, and I use my own structure instead the default. My application is not running. The compliation is OK but running does't work. The problem is the structure of my app.config.
|
| how to release the memory allocated by 'gcnew' | 17 Sep 2007 07:43 GMT | 2 |
I have a question about "gcnew". I am a C# library in my c++ project, so "gcnew" is often used when calling the managed methods. so here are my questions: are new memories allocated by when calling "gcnew", just like the
|
| BackgroundWorker / Thread question | 17 Sep 2007 06:10 GMT | 7 |
I have a question. One day i have been working with threads. Thread had 'while' loop that checked locked value telling the thread when application was closing ( in Dispose method i set locked object's value to 'true'). If i
|
| Question about location of a class in a WCF application | 17 Sep 2007 05:17 GMT | 2 |
I have a class called LWUser which contains the properties and methods that represent a user of the system. This class sits in the Business Services solutions on the server. I also have a class called LWUserUI which sits on the client side in the Client solution. I am going to ...
|
| SqlDataAdapter | 17 Sep 2007 05:13 GMT | 1 |
I'm making a little Windows Application project (not a web site) and i can't find the SqlDataAdapter in the Data Toolbox: does anyone know where it should be? Thanks
|
| Create ImageButton Dynamiclly | 17 Sep 2007 05:07 GMT | 3 |
Using ASP .Net, I'm trying to create a ImageButton when the user clicks on a button, this is my code: protected void logout_btn_Click(object sender, ImageClickEventArgs e)
|
| Center Button in PaneL | 17 Sep 2007 04:15 GMT | 4 |
I have a usercontrol that has a panel as a band across the width of the user control When the usercontrol is diaplayed the button is not centered. If I anchor the button to the panel Left/Top/Right the button get's streched
|
| Display of Panels in Maximized Window | 17 Sep 2007 04:13 GMT | 2 |
I have multiple panels in a form. Some doched to the side and 1 panel doched to fill. If the form is Maximized on first display you can see the panel docked to fill resizing which is annoying to see Anyone have any suggestion on avoiding the resizing or hidding it from user???
|