| Thread | Last Post | Replies |
|
| .NET version of MsgWaitForSingleObject | 29 Dec 2004 17:09 GMT | 1 |
In a STA component, it was recommended that MsgWaitForSingleObject be used in place of WaitForSigleObject. Now in the .NET world, what is the counterpart of MsgWaitForSingleObject? Does System.Threading.WaitOne in .NET accomplish what MsgWaitForSingleObject does in a STA ...
|
| ComboBox - I'm really stuck | 29 Dec 2004 16:27 GMT | 2 |
I have a bound data form with some text boxes and several comboboxes. I am having no luck in getting the comboboxes to work. I sure could use some help with this. I have the following code in the load event of my form. Dim dtProj As System.Data.DataTable
|
| Help implementing a transaction | 29 Dec 2004 16:26 GMT | 2 |
I'm trying to implement a wrapper class, and I'm havinf difficulty implementing the transaction. I have several classes. The wrapper WrapDbCommand, WrapConnection..etc, and the actual SQL server class.
|
| Some users are required to enter a username/password/domain, why? | 29 Dec 2004 16:22 GMT | 2 |
We've just released out second major ASP.NET application this week. It uses Crystal Reports for .NET. We use forms authentication with Active Directory, to authenticate the user against. We have it so that when it goes to the Crystal Report is has those icons
|
| Object Browser Descriptions | 29 Dec 2004 15:16 GMT | 3 |
If I click on an item in the Object Browser, the description pane displays a brief help-text for the item. I'm certain that I can add this useful description to my class members by applying some attribute to my property or method, but I'm not sure what Attribute class I should be ...
|
| Continue after error & Application.ThreadException | 29 Dec 2004 15:03 GMT | 6 |
I have a DLL I created to handle all unknown errors using the Application.ThreadException event. I'm asking the user if they want to terminate the program or continue. This is working like I want. The program exits when I tell it to terminate, and when I continue, the program
|
| UnhandledException in Windows Service | 29 Dec 2004 14:59 GMT | 5 |
I can't seem to get a custom UnhandledException handler working for a Windows Service I'm writing in VB.NET. I've read the MSDN and tried various different placements of the AddHandler call, to no avail. Here's the code I'm using, all of which is in the main service class:
|
| Data Adapter Configuration Wizard-Where is Connection List? | 29 Dec 2004 13:54 GMT | 2 |
I have moved some databases off of my computer. Now, when I open the Data Adapter Configuration Wizard the first time I have to wait about 2 minutes for it to determine that some of the connections are no longer available. If I knew where they kept the list of connections I could ...
|
| Detect whether Caps Lock key pressed? | 29 Dec 2004 13:48 GMT | 2 |
I have a main form, there other some controls(i.e. textbox) in the form. I want to detect whether Caps Lock key is pressed in form-key event. Private Sub Form1_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyUp
|
| Getting all IPs of lan | 29 Dec 2004 13:33 GMT | 2 |
How do i get a list of all IP of the computers on my lan? Kind Regards Jorge
|
| Persistance | 29 Dec 2004 13:12 GMT | 6 |
I have some classes that contain my objects...say..... Client...with all his properties, Methods & Events. I use this on my web pages like this. Dim MyClient as New Client(IdCorporation) This because I need the information of that client as a reference.
|
| is there a RegistryWatcher class | 29 Dec 2004 12:59 GMT | 2 |
Just as there's a FileSystemWatcher class, is there a corresponding RegistryWatcher class. If not, is there any way i can try to do this (to be able to determine what registry values were changes, any new added, any deleted, etc).
|
| VB 2005 Language Enhancements Chat | 29 Dec 2004 10:58 GMT | 1 |
The above mentioned chat is listed on the Microsoft's web site http://www.microsoft.com/communities/chats/default.mspx. The start time is listed as 3:30 AM Pacific. I didn't notice an announcement in the newsgroup. Is the time correct?
|
| DataGridBoolColum default value | 29 Dec 2004 10:48 GMT | 1 |
Hi all, I'm a Computer Science students. My university computers lab upgraded from VB6 to VB.NET and we begun a VB.NET course. I'm a newbie in .NET programming, and I need some help (at the moment I absolutly prefer VB6 as language, but the new IDE rocks!)
|
| adding label controls at runtime | 29 Dec 2004 10:14 GMT | 2 |
in my application I'm adding several label controls to a form at runtime.but I have to prevent overlapping of labels. so each label must have bounds which is not intersected with other labels' bounds. haw can ? handle this problem..
|