Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Favorite VB (2005) Features

Favorite VB (2005) Features

Scheduled Pinned Locked Moved The Lounge
question
13 Posts 12 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • X Offline
    X Offline
    Xoy
    wrote on last edited by
    #1

    What are your favorite vb features? Mine would have to be the verbosity... Easier to type + read :-D (like using keywords that actually describe what it does ;P)

    S A N D C 7 Replies Last reply
    0
    • X Xoy

      What are your favorite vb features? Mine would have to be the verbosity... Easier to type + read :-D (like using keywords that actually describe what it does ;P)

      S Offline
      S Offline
      SimonS
      wrote on last edited by
      #2

      Xoy wrote:

      What are your favorite vb features?

      The fact that it (VS - VB edition) can uninstall. Cheers, Simon > blog:: brokenkeyboards > what I think of the OPTIONAL keyword in VB.NET? :: here > CV :: PDF > skype :: SimonMStewart

      R 1 Reply Last reply
      0
      • X Xoy

        What are your favorite vb features? Mine would have to be the verbosity... Easier to type + read :-D (like using keywords that actually describe what it does ;P)

        A Offline
        A Offline
        Anna Jayne Metcalfe
        wrote on last edited by
        #3

        Xoy wrote:

        What are your favorite vb features?

        The fact that it isn't installed on my machine... ;P Anna :rose: Currently working mostly on: Visual Lint :cool: Anna's Place | Tears and Laughter "Be yourself - not what others think you should be" - Marcia Graesch "Anna's just a sexy-looking lesbian tart" - A friend, trying to wind me up. It didn't work.

        S J L 3 Replies Last reply
        0
        • X Xoy

          What are your favorite vb features? Mine would have to be the verbosity... Easier to type + read :-D (like using keywords that actually describe what it does ;P)

          N Offline
          N Offline
          Nish Nishant
          wrote on last edited by
          #4

          What the world needs is a hybrid language that has the features of COBOL and Visual Basic. That's all that's left to be written now. Regards, Nish

          My blog : Nish’s thoughts on MFC, C++/CLI and .NET

          1 Reply Last reply
          0
          • A Anna Jayne Metcalfe

            Xoy wrote:

            What are your favorite vb features?

            The fact that it isn't installed on my machine... ;P Anna :rose: Currently working mostly on: Visual Lint :cool: Anna's Place | Tears and Laughter "Be yourself - not what others think you should be" - Marcia Graesch "Anna's just a sexy-looking lesbian tart" - A friend, trying to wind me up. It didn't work.

            S Offline
            S Offline
            SimonS
            wrote on last edited by
            #5

            lol We think the same. :-D Cheers, Simon > blog:: brokenkeyboards > what I think of the OPTIONAL keyword in VB.NET? :: here > CV :: PDF > skype :: SimonMStewart

            1 Reply Last reply
            0
            • S SimonS

              Xoy wrote:

              What are your favorite vb features?

              The fact that it (VS - VB edition) can uninstall. Cheers, Simon > blog:: brokenkeyboards > what I think of the OPTIONAL keyword in VB.NET? :: here > CV :: PDF > skype :: SimonMStewart

              R Offline
              R Offline
              Rama Krishna Vavilala
              wrote on last edited by
              #6

              Talking about uninstalling, it is my favourite feature of Oracle Express - the fact that I can uninstall it.


              Member in good standing - the great cult of Firefox at CP

              T 1 Reply Last reply
              0
              • X Xoy

                What are your favorite vb features? Mine would have to be the verbosity... Easier to type + read :-D (like using keywords that actually describe what it does ;P)

                D Offline
                D Offline
                Daniel Turini
                wrote on last edited by
                #7

                There are lots of VB.NET features that make a program specially fun to maintain. On Error Resume Next On Error GoTo Option Strict Off Option Explicit Off Option Compare Text The _ Line _ Continuation _ Character The infamous IsNot operator Declaration of char constants - "x"C DirectCast x CType Dictionary Member Access. Now, what does it mean X!Blahblahblah and on which classes can it be used? Implicit Type conversions The Like operator. It's specially fun to notice that you need to learn another Regex language to use it. Quick: What's the difference between DBNull, Null, String.Empty and Nothing? BTW, if you only know C#, the answer is not what you'd expect. The Mid Assignment Statement. Who'd ever think about changing the first char of a string by doing:

                Mid(x, 0, 1) = "Z"c

                Date Literals - Did you know that your source code can have other meaning in another country? Quick: what's the difference between Me, MyBase and MyClass? Or, And, OrElse, AndAlso. Type Characters. See this code from a MSDN sample:

                Module Test2
                ' This function takes a Long parameter and returns a String.
                Function Func$(ByVal Param&)
                ' The following line causes an error because the type character
                ' conflicts with the declared type of StringFunc and LongParam.
                Func# = CStr(Param@)

                    ' The following line is valid.
                    Func$ = CStr(Param&)
                End Function
                

                End Module

                From the Churchdown Parish Magazine: "Would the Congregation please note that the bowl at the back of the Church, labelled 'For The Sick,' is for monetary donations only."

                1 Reply Last reply
                0
                • R Rama Krishna Vavilala

                  Talking about uninstalling, it is my favourite feature of Oracle Express - the fact that I can uninstall it.


                  Member in good standing - the great cult of Firefox at CP

                  T Offline
                  T Offline
                  toxcct
                  wrote on last edited by
                  #8

                  Rama Krishna Vavilala wrote:

                  my favourite feature of Oracle Express - the fact that I can uninstall it

                  can you :confused::~ i had to ghost my computer after an install of Oracle 9i... lol


                  TOXCCT >>> GEII power
                  [toxcct][VisualCalc 2.20][VCalc 3.0 soon...]

                  1 Reply Last reply
                  0
                  • X Xoy

                    What are your favorite vb features? Mine would have to be the verbosity... Easier to type + read :-D (like using keywords that actually describe what it does ;P)

                    C Offline
                    C Offline
                    code frog 0
                    wrote on last edited by
                    #9

                    That it tends to troll on message boards.

                    I only read CP for the articles. Code-frog System Architects, Inc.

                    1 Reply Last reply
                    0
                    • X Xoy

                      What are your favorite vb features? Mine would have to be the verbosity... Easier to type + read :-D (like using keywords that actually describe what it does ;P)

                      A Offline
                      A Offline
                      Albert Pascual
                      wrote on last edited by
                      #10

                      Uninstall feature

                      1 Reply Last reply
                      0
                      • A Anna Jayne Metcalfe

                        Xoy wrote:

                        What are your favorite vb features?

                        The fact that it isn't installed on my machine... ;P Anna :rose: Currently working mostly on: Visual Lint :cool: Anna's Place | Tears and Laughter "Be yourself - not what others think you should be" - Marcia Graesch "Anna's just a sexy-looking lesbian tart" - A friend, trying to wind me up. It didn't work.

                        J Offline
                        J Offline
                        Jorgen Sigvardsson
                        wrote on last edited by
                        #11

                        You speak the truth! :laugh: :laugh:

                        1 Reply Last reply
                        0
                        • X Xoy

                          What are your favorite vb features? Mine would have to be the verbosity... Easier to type + read :-D (like using keywords that actually describe what it does ;P)

                          R Offline
                          R Offline
                          Roger Wright
                          wrote on last edited by
                          #12

                          I like the little X in the box in the upper right corner. It works great!:-D "...a photo album is like Life, but flat and stuck to pages." - Shog9

                          1 Reply Last reply
                          0
                          • A Anna Jayne Metcalfe

                            Xoy wrote:

                            What are your favorite vb features?

                            The fact that it isn't installed on my machine... ;P Anna :rose: Currently working mostly on: Visual Lint :cool: Anna's Place | Tears and Laughter "Be yourself - not what others think you should be" - Marcia Graesch "Anna's just a sexy-looking lesbian tart" - A friend, trying to wind me up. It didn't work.

                            L Offline
                            L Offline
                            Lost User
                            wrote on last edited by
                            #13

                            16 5 votes - well 17 now :-D The tigress is here :-D

                            1 Reply Last reply
                            0
                            Reply
                            • Reply as topic
                            Log in to reply
                            • Oldest to Newest
                            • Newest to Oldest
                            • Most Votes


                            • Login

                            • Don't have an account? Register

                            • Login or register to search.
                            • First post
                              Last post
                            0
                            • Categories
                            • Recent
                            • Tags
                            • Popular
                            • World
                            • Users
                            • Groups