| Thread | Last Post | Replies |
|
| How to make an object property truly read-only? | 25 Oct 2004 20:16 GMT | 2 |
If you expose an object as a property in a VB.NET class, like so: public class MyClass private obj as NestedClass Public Readonly Property NestedObj as OtherClass
|
| Newbie: Dataset questions | 25 Oct 2004 20:06 GMT | 7 |
Is there a way to execute a SELECT statement *on* a dataset itself? After it has been filled, without having to go through the dataadapter? Also, hoe can one loop through the dataset? would it be something like:
|
| Pausing and cancelling Print Jobs??? | 25 Oct 2004 19:25 GMT | 1 |
Does anybody know (or have any tips on) how I can pause a job in my print queue and then either release it or delete it based on my criteria? Daniel
|
| Which is faster code: Enumeration or Constants? | 25 Oct 2004 19:09 GMT | 1 |
I have to do a lot of calculations when leaving certain controls. Somewhere along the order of 800 to 1000 fields. I'm considering translating all of the numeric fields that are in a string collection into a fixed double array. I would use the already
|
| Compiler support for "Exit For" | 25 Oct 2004 19:07 GMT | 1 |
does anybody know if the built in support for the "Exit For" statement is just a left over from earier versions of VB and therefore inefficient or if it's truely a VB.NET language feature? The reason I ask is because even though the "On Error Goto" statement is
|
| memory leak on a blank form with 1 button? | 25 Oct 2004 19:04 GMT | 2 |
I did a test today and made a form with a button on it, it doesn't do anything but just open up and sit there. If I move the form around the desktop it's memory consumption slowly climbs. I did the same thing with C# to see if it would happen and it does - What the heck is ...
|
| Collection in VB.Net | 25 Oct 2004 18:15 GMT | 2 |
I'm a VB6 programmer migrating to VB.Net . I have a question regarding the usage of Collection in VB.Net. The following is the code i would use in VB6. '************* VB6 Code ***************
|
| Validating combo boxes | 25 Oct 2004 17:49 GMT | 1 |
I am trying to validate the data in all of the text and combo boxes. The text box validation seems to be working fine, but I am having the hardest time with the combo box validation. I am not sure why, but I keep recieving the error message:
|
| Using Installutil.exe for a 2nd location of the Execption Management Block | 25 Oct 2004 17:29 GMT | 4 |
I installed the exception management block on my computer and it defaulted to: C:\Program Files\Microsoft Application Blocks for .NET\Exception Management\Code\VB\
|
| DDE server for .NET question | 25 Oct 2004 16:24 GMT | 1 |
Can somebody please explain what DDE has been replaced by in .NET (in simplistic terms)? "remoting"? A dde custom written server app to listen out for the specific application?
|
| Getting an error in visualbasic.dll | 25 Oct 2004 16:14 GMT | 8 |
I just installed Microsoft Visual Basic .NET and wrote a very simple program that references a .tlb file called "Wilbur". The first time I ran the program below everything worked fine. But subsequent attempts to run it are causing the following error:
|
| Newbie: Dataset - SQL selection | 25 Oct 2004 15:43 GMT | 1 |
I was wondering if there is a way/command to do the following: I have a dataset that is filled with a few tables and the tables are related together (dataset.relations.add(...)). Now, I want to populate a listview with specific data. I mean, is it
|
| AlphaBlend API VB.NET | 25 Oct 2004 15:26 GMT | 1 |
I was wondering if anyone had any examples of the AlphaBlend API being used in VB.NET, I'm having problems with passing the BlendFunction structure. Thanks in advance. Nick.
|
| Memory Question... | 25 Oct 2004 15:19 GMT | 3 |
In an effort to try curbing the amount of memory my application is using I would like to ask a simple question... I have multiple forms with multiple subs in them. does a Dim statement clear itself from memory when a form closes. the reason I ask is that I have
|
| Start reading from 30 line | 25 Oct 2004 14:52 GMT | 2 |
I don't know how to start reading a text file from a 30 line ? I got an idea : For i=1 to 30 streamReader.readline() Next
|