| Thread | Last Post | Replies |
|
| Calling VB.Net DLL from VB6 pgm | 27 Jun 2005 22:50 GMT | 2 |
I'm trying to do some debugging on a VB.Net DLL that I'm referencing and calling from a VB6 pgm. I put MsgBox calls all throughout the VB.Net code but none of them show. I have built in Debug as well as Release mode, but I'm not even getting simple message boxes to pop up and ...
|
| Strong naming | 27 Jun 2005 22:44 GMT | 3 |
I have a class project which generates a dll which I would like to install in the gac. When I build the project, I get the following error; Unable to build assembly XXX into the Global Assembly Cache; the assembly is not strongly named.
|
| detect mouse leaves control | 27 Jun 2005 22:30 GMT | 2 |
I can't figure out how to detect when my mouse cursor leaves a panel control. It should not trigger the event (or do anything) when the mouse leave the panel but still is over a control that is contained by the panel.
|
| compilation error on groupbox | 27 Jun 2005 21:47 GMT | 4 |
I get this error at time of compiling my class code what's missing ?? =================== error ============================= Me.groupBox1 = New GroupBox
|
| How to create a user in MSDE? | 27 Jun 2005 21:43 GMT | 2 |
I need to know how to create a user in MSDE. I can't seem to get the syntax correct. I've tried several different variations such as the following, but nothing seems to work. CREATE USER user PASSWORD password
|
| determine SQLS2K table level permission for a user | 27 Jun 2005 21:34 GMT | 2 |
Is it possible to verify SQLS2K table level permissions from VB.NET for the logged in user. (query SQL Server 2000 some how.) I want to be able to deny viewing or deny editing in a form based on
|
| Copy files after successful build | 27 Jun 2005 20:51 GMT | 2 |
Is it possible to copy certain files from the bin directory for a project into another directory after a successful build using a VB.NET project? My project compiles a dll and also copies a referenced file into the bin folder, I want these 2 files going into a folder somewhere ...
|
| convert date and time formats | 27 Jun 2005 20:50 GMT | 9 |
It used to work in vb6. I don't know the syntax in vb.net current date and time.... format (cstr(date),"DDMMYY") format(cstr(time),"HHMM")
|
| vb.net Threading Question | 27 Jun 2005 20:49 GMT | 8 |
I have a thread that does periodic database maintenance. While this process is going on I would like the rest of the application to hold off on accessing the database. I thought I could share a property in a class to hold the status, but that doesn't seem to work.
|
| Scrolling Image and Text in a WinForm | 27 Jun 2005 20:43 GMT | 7 |
i have the following problem: my customer wants to show some informations in a WinForm. He has Images and Textelements with are connected. It should look like this: scroll << - ... Image + Text + empty space + Image + Text + empty space +
|
| Get data from excel to sql server | 27 Jun 2005 20:15 GMT | 4 |
I try to test that get data from excel to sql server. My code as the following: Dim ExcelConnection As New System.Data.OleDb.OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data
|
| How do I... | 27 Jun 2005 19:51 GMT | 11 |
I have a simple list box that I want to show a list of names and also I want to store in the list box an id, just a string value, so that when the user clicks on a name I can use the id to get information about that name. I know how I would do it in VB6 (using the Tag property). ...
|
| can you create one "MouseEnter" event handler for multiple controls on a form? | 27 Jun 2005 19:33 GMT | 3 |
I have a form with a number of text boxes, comboboxes etc. What I would like to do is create an event handler for the "mouseenter" event for each of the controls whereby I display information about the control they just entered (sort of like an extended tooltip). Now, I can ...
|
| understanding the sender object | 27 Jun 2005 19:15 GMT | 2 |
dot.net winforms How Do I make casting from the sender object to controls in the form that called the sub ?
|
| Refreshing DataTable | 27 Jun 2005 19:09 GMT | 1 |
I have a DataGrid bound to a DataTable. Every once in a while I need to refresh the data in the table so that the updated data is displayed in the DataGrid. Here's how I am attempting this: 'clear datatable
|