VB6/VB.Net difference question

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default VB6/VB.Net difference question

    What are the VB.Net equivalents of the VB6 "Class
    Initialize" and "Class Terminate"?
    Dave Guest

  2. Similar Questions and Discussions

    1. what's the difference?
      Greetings - I'm looking to buy a good beginners book on DMX/php/mysql and I see this one mentioned all over the place, but I also hear complaints...
    2. Why is there a difference??
      I'm noticing that for some reason the 2 icons I have on my page are moving in different browsers. Look fine in IE but not in Firefox. Page is...
    3. I don't get it. What's the difference??
      Why does #1 below works but not #2? The only difference is that I'm calling move_uploaded_file() from within a function. Thanks in advance. Mike...
    4. getting smallest difference -> adding a Question
      Eric Moors (scare.crow@oz.land) wrote on MMMDCXLIX September MCMXCIII in <URL:news:pan.2003.08.28.08.57.19.558950.12421@oz.land>: `' > I've been...
    5. Question: Difference between strMyVar and Session("strMyVar")
      If I have a variable I want to share in my application what is the difference between just declaring a variable (Dim strMyVar as String) and using...
  3. #2

    Default Re: VB6/VB.Net difference question

    Use the constructor "New()" and the destructor "Dispose()" I believe.

    "Dave" <davet65109@hotmail.com> wrote in message
    news:02c401c36104$b70c5cb0$a401280a@phx.gbl...
    > What are the VB.Net equivalents of the VB6 "Class
    > Initialize" and "Class Terminate"?

    VB Programmer Guest

  4. #3

    Default Re: VB6/VB.Net difference question

    There is no destructor. However, Dispose() is used for certain classes that
    need to clean up after themselves for some reason, such as having unmanaged
    resources in them.

    --
    HTH,

    Kevin Spencer
    Microsoft MVP
    ..Net Developer
    [url]http://www.takempis.com[/url]
    Complex things are made up of
    lots of simple things.

    "VB Programmer" <growNO-SPAM@go-intech.com> wrote in message
    news:e%23fRYUQYDHA.2236@TK2MSFTNGP10.phx.gbl...
    > Use the constructor "New()" and the destructor "Dispose()" I believe.
    >
    > "Dave" <davet65109@hotmail.com> wrote in message
    > news:02c401c36104$b70c5cb0$a401280a@phx.gbl...
    > > What are the VB.Net equivalents of the VB6 "Class
    > > Initialize" and "Class Terminate"?
    >
    >

    Kevin Spencer Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139