| Thread | Last Post | Replies |
|
| Problem with CustomTyped casting and type checking | 11 Aug 2006 16:58 GMT | 1 |
I created several classes that supports custom typing as following: Public Class DataManager(Of CustomType As {DataObject, New}) Public Class LockableDataManager(Of CustomType As {LockableDataObject, New})
|
| Binding an Image to a picturebox | 11 Aug 2006 16:12 GMT | 2 |
I have a very basic form that has controls bound to a SQL 2005 database for an Employee Directory. I'm using a PictureBox control to bind to the "Photo" field which is of datatype image. However, it doesn't seem to work. It does not display the image from the database (it's ...
|
| Webbrowser Navigate to an embedded resource | 11 Aug 2006 15:50 GMT | 2 |
I have a small html file that I have added to my project. When I added "sample.html", I set the build action to "embedded resource". In the application I would like to do something like this ( but this doesn't work ):
|
| Crash -> no finalize | 11 Aug 2006 15:29 GMT | 2 |
I noticed that when there's a crash in my programs, the finalize methods of my objects are not called (the memory is freed, but some things are not done, like deleting files or tables).
|
| End all running code of .dll | 11 Aug 2006 15:00 GMT | 4 |
I'm writing a .dll. I'd like to know how to stop all the code running from anywhere in the solution. For example: -A class of the .dll is called from an .exe. -Function A is called from the main sub.
|
| View container | 11 Aug 2006 14:17 GMT | 2 |
Hi, All, I put gridview within View container, when running on web server, the gridview doesn't show on the web page, can anyone help this out? Thanks
|
| Help with first VB application - Data Entry form | 11 Aug 2006 14:01 GMT | 17 |
This is my first attempt at an application, so kid gloves are appreciated. I need to make a very simple form that only has a few elements. One is TraceCode - a text field that is populated when a user scans a label.
|
| CanGetFocus | 11 Aug 2006 12:53 GMT | 3 |
how convert CanGetfocus From VB6 to VB.Net anywone, can help me? thanks.
|
| create usercontrol that cannot get focus | 11 Aug 2006 12:27 GMT | 1 |
I'm trying to create a user control which cannot get focus, but is enabled. In VB6, I just set the CanGetFocus property to false, but I can't find the .NET equivalent. The .NET CanFocus property is ReadOnly.
|
| Converion from a newer version to older one. | 11 Aug 2006 11:33 GMT | 1 |
How may I open/convert a Visual Basic 2005 project into Visual Basic 2003 or Visual Basic 6? In the same way, what'll be the procedure to open/convert a VB 2003 project into VB6?
|
| Application Priority | 11 Aug 2006 11:10 GMT | 2 |
Hi! I tried to change my application's priority to high and i tried maybe all ways to do that - i used Thread.CurrentThread.Priority class to change it, but Task manager shows a normal priority of my app. How to do that?
|
| using excel before windows shutdown | 11 Aug 2006 10:27 GMT | 3 |
i am trying to save some data in a excel spreadsheet, whenever the programm shuts down. Mostly this happens when a user is logging off or shuts the computer down. im am using the
|
| OLE: Excel.Application | 11 Aug 2006 08:51 GMT | 1 |
in VB.Net, I use Excel to display results : dim xl as new Excel.Application // creates an Excel process // snip (putting values into cells) xl.Visible = true
|
| Setup project in VB.NET ? | 11 Aug 2006 07:29 GMT | 4 |
I have a COM project which is already produced and using for in-house, As it is COM project, by default, VS2003 create a setup project for it. Right now, I need to do some improvement for the proejct, But I found there is no way to do the upgrade action.
|
| How to code image path relative to project | 11 Aug 2006 06:07 GMT | 4 |
In order to deploy my app, I need to specify the following file path as relative to my project. I need the image to be a file so that it can be processed by the "DrawImageToScale" function so that the image is reduced in size to a panel on the form.
|