| Thread | Last Post | Replies |
|
| Stop when debugging | 19 Oct 2005 17:52 GMT | 1 |
In VB6 there is an option to stop the code (when debugging) when an error occurs even if there is an error treatment in the code (on error goto). Where is this option in .NET? Thank you,
|
| When to close connection? | 19 Oct 2005 17:42 GMT | 4 |
I have a function that returns a SqlDataReader created by: result = command.ExecuteReader(CommandBehavior.CloseConnection); I then bind the result to a grid control: myDataGrid.DataSource = sr;
|
| web hosting | 19 Oct 2005 17:41 GMT | 4 |
wondering if anybody can recommend a web hoster for websites written in asp.net with sql server database support. I currently user lunar pages, but they do not support asp.net going to do my own research but thought I would quickly post the question as
|
| How to ftp files securely? | 19 Oct 2005 17:31 GMT | 3 |
With ftp, username and password are transmitted in clear text. I would like to send files using ftp programmatically in a secure way. What's the best way to do this?
|
| Full Text Search for .Net | 19 Oct 2005 17:30 GMT | 3 |
I'm coding an asp.net app that will be using web services for the data access layer. I want to implement a full text search of my PDF content. Do you know of any 3rd party api's that are good for this? I would like to index the content, provide a search interface to search the ...
|
| Help with this | 19 Oct 2005 17:16 GMT | 2 |
I am using the following regex to check street address but it fails when I pass "N' Select". How can I fix his? ^[a-zA-Z\d]+(([\'\,\.\- #][a-zA-Z\d ])?[a-zA-Z\d]*[\.]*)*$ Thanks
|
| Image Copy | 19 Oct 2005 16:53 GMT | 1 |
We have the following requirement. We need to copy the image from server A to server B. Server B is where our site hosted. We also looking for image resize on fly while copying it.
|
| DeleteService doesn't actually delete the service until the program is closed. | 19 Oct 2005 16:33 GMT | 4 |
I have a program that will upgrade a service automatically. If the service already exists, it will delete the service and then reinstall it through code. To delete the service I'm using the DeleteService command which marks the service as disabled but the service doesn't ...
|
| VS.NET 2003 - Find in Files not working anymore | 19 Oct 2005 16:15 GMT | 2 |
Find in Files in my VS.NET 2003 IDE has suddenly stopped working. It stopped working after I did a global solution Replace in all files operation. I shut down the IDE twice, but it still doesn't work anymore. See the example output message below. For example, I searched for ...
|
| Application Updater Block | 19 Oct 2005 15:30 GMT | 1 |
I have an application that uses the application updater block V2. The application is launched using an appStart assembly first. Everything has been working great for a few weeks now, until last night when I added reports to the manifest. I cannot for the life of me determine ...
|
| Console application in page | 19 Oct 2005 15:18 GMT | 2 |
I have developed a console application taking into paramters and outputing an encrypted string. I am trying to use this program in my php page by using the exec command. I get the following error:
|
| OutOfMemory creating a form object | 19 Oct 2005 13:40 GMT | 2 |
My name is Roby Eisenbraun Martins, I am a C++, VB and NET developer. I am working with a NET 2002 project right now and I am receiving this uncommon "OutOfMemory" error message when I try to load a form object ( new frmMain() ).
|
| If File.Exists Else question | 19 Oct 2005 13:24 GMT | 13 |
If I use the code below in a VB.NET form, even if the file exists, and is then executed, the Else statement produces the "Sorry cannot find the File " error message. The MessageBox.Show( StrPathToScript ) never gets called! why?
|
| Datagrid | 19 Oct 2005 12:27 GMT | 3 |
Is there a way to highlight the whole row in DataGrid? I want to select a whole row clicking anywhere on that row. I also want to prevent the user from selecting individual cells. So when he clicks on the row the cell does not get activated.
|
| How to re-populate a Data Grid? | 19 Oct 2005 12:04 GMT | 3 |
I have a vb .net program which fills a data grid upon form load from an acccess database. This works great. Now, I have to add a combo box and use it to alter the underlying sql statement and re-fill the data grid. I have never done this before, but I created a new sql ...
|