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. Visual Basic needs more credit

Visual Basic needs more credit

Scheduled Pinned Locked Moved The Lounge
206 Posts 32 Posters 299 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.
  • P Pualee

    What if Pictures is null?

    C Offline
    C Offline
    Colborne_Greg
    wrote on last edited by
    #32

    If pictures is null the memory space creates itself and returns a empty album list

    M 1 Reply Last reply
    0
    • Richard DeemingR Richard Deeming

      See my answer to your other post - you don't need the With operator in C# for object or collection initializers.


      "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer

      C Offline
      C Offline
      Colborne_Greg
      wrote on last edited by
      #33

      this message is spam

      Richard DeemingR 1 Reply Last reply
      0
      • P PIEBALDconsult

        RyanDev wrote:

        and make it way easier to read

        I would argue the opposite.

        You'll never get very far if all you do is follow instructions.

        Z Offline
        Z Offline
        ZurdoDev
        wrote on last edited by
        #34

        A lot of people do. I can't understand why, but yes, a lot of people do.

        There are only 10 types of people in the world, those who understand binary and those who don't.

        C 1 Reply Last reply
        0
        • C Colborne_Greg

          I think that Visual Basic should be shown off for its beauty and elegance. Here is a sample of what it can do - that no other language can do:

          Private Sub AlbumListPopulate()
          Try
          AlbumsList.ItemsSource = New List(Of Image)

              For Each AlbumName In Pictures.Albums
                  Try
                      AlbumsList.ItemsSource.Add \_
                          (
                              New Image With
                              {
                                  .Height = 150,
                                  .Width = 150,
                                  .Source = RotateStream \_
                                  (
                                      Pictures.Album(AlbumName).Picture,
                                      Pictures.Album(AlbumName).Angle
                                  )
                              }
                          )
                  Catch
                  End Try
              Next
          Catch
          End Try
          

          End Sub

          B Offline
          B Offline
          BobJanova
          wrote on last edited by
          #35

          If you'd picked a case of With doing namespace/object elision, you might have a point. But as several people have pointed out, this is an object initialiser which is included in C# and (I think) has been since the same .Net compiler version as the VB.Net syntax you're demonstrating. Other languages like JavaScript, Ruby, Perl etc can create objects with data in a single statement like this, too, and have been able to for years. If you're going to make a claim like "no other language can do [something your fave can]" then at least a tiny bit of research would be a good idea.

          C 1 Reply Last reply
          0
          • Richard DeemingR Richard Deeming

            Just because you don't need the extra keyword doesn't mean that C# can't do it:

            new Image
            {
            Height = 150,
            Width = 150,
            Source = RotateStream
            (
            Pictures.Album[AlbumName].Picture,
            Pictures.Album[AlbumName].Angle
            )
            }


            "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer

            C Offline
            C Offline
            Colborne_Greg
            wrote on last edited by
            #36

            That code would fail as the scopes would be confused

            Richard DeemingR 1 Reply Last reply
            0
            • B BobJanova

              If you'd picked a case of With doing namespace/object elision, you might have a point. But as several people have pointed out, this is an object initialiser which is included in C# and (I think) has been since the same .Net compiler version as the VB.Net syntax you're demonstrating. Other languages like JavaScript, Ruby, Perl etc can create objects with data in a single statement like this, too, and have been able to for years. If you're going to make a claim like "no other language can do [something your fave can]" then at least a tiny bit of research would be a good idea.

              C Offline
              C Offline
              Colborne_Greg
              wrote on last edited by
              #37

              Without the with operator C# has a smaller scope

              S 1 Reply Last reply
              0
              • J Jorgen Andersson

                I totally agree on that most of the complaints about VB is of the immature kind. But one thing I need to give them is the On Error Resume abomination. Which you sadly have emulated with your empty Catch. :sigh: My personal opinion is that since C# and VB.Net is based on the same CLR and the same Framework, most quarrels are just silly. Use what you feel most at home with, but stop being ridiculous about it!

                Wrong is evil and must be defeated. - Jeff Ello[^]

                P Offline
                P Offline
                Pualee
                wrote on last edited by
                #38

                I took a job once, with no knowledge of VB (Visual Studio 6). Hey, I just wanted a well paying part time job to finish my master's degree. One of the 'best practices' of the company was to always add "On Error Resume Next" at the beginning of each and every function. I asked why, and the reply was that it just works better that way. The job paid the bills, I graduated, I got a new job, the company went under (not because I left, but I saw the writing on the wall ahead of time - they had too many people and no contracts lined up).

                C 1 Reply Last reply
                0
                • J Jorgen Andersson

                  I totally agree on that most of the complaints about VB is of the immature kind. But one thing I need to give them is the On Error Resume abomination. Which you sadly have emulated with your empty Catch. :sigh: My personal opinion is that since C# and VB.Net is based on the same CLR and the same Framework, most quarrels are just silly. Use what you feel most at home with, but stop being ridiculous about it!

                  Wrong is evil and must be defeated. - Jeff Ello[^]

                  C Offline
                  C Offline
                  Colborne_Greg
                  wrote on last edited by
                  #39

                  I should have left out the try catch

                  1 Reply Last reply
                  0
                  • P PIEBALDconsult

                    RyanDev wrote:

                    and make it way easier to read

                    I would argue the opposite.

                    You'll never get very far if all you do is follow instructions.

                    B Offline
                    B Offline
                    BobJanova
                    wrote on last edited by
                    #40

                    With, when used appropriately, aids clarity just by removing characters – if you have to read past "SomeLongObjectName." at the start of every line you won't actually see the important word. When used badly (so you don't know whether the tokens on the line are part of the with'd object or locals or something else) it makes things worse. I've used with in ActionScript, usually for graphics code which is doing nothing but a bunch of calls to lineTo, moveTo, setBitmapFill etc, and (imo anyway) not having "e.graphics." on every line makes that clearer.

                    P 1 Reply Last reply
                    0
                    • P PIEBALDconsult

                      RyanDev wrote:

                      and make it way easier to read

                      I would argue the opposite.

                      You'll never get very far if all you do is follow instructions.

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

                      Are you still opposed to using (the namespace one, not the disposing one or the alias one) as well?

                      C P 2 Replies Last reply
                      0
                      • S Simon_Whale

                        and you can do the same in C# without the need for "with" keyword

                        Every day, thousands of innocent plants are killed by vegetarians. Help end the violence EAT BACON

                        C Offline
                        C Offline
                        Colborne_Greg
                        wrote on last edited by
                        #42

                        Without the with keyword in C# it reduces the available scope

                        1 Reply Last reply
                        0
                        • K Kenneth Haugland

                          With his pants on fire :laugh: I read somewhere that there are things that VB can do and C# can't an vice versa though... Think it had something to do with Errorhandling ?

                          C Offline
                          C Offline
                          Colborne_Greg
                          wrote on last edited by
                          #43

                          No

                          1 Reply Last reply
                          0
                          • C Colborne_Greg

                            Considering the missing connection between me knowing C# can get away without using the with word, proves its problems. The with keyword gets the coder in a mindset.

                            OriginalGriffO Offline
                            OriginalGriffO Offline
                            OriginalGriff
                            wrote on last edited by
                            #44

                            That may be part of the problem...

                            Those who fail to learn history are doomed to repeat it. --- George Santayana (December 16, 1863 – September 26, 1952) Those who fail to clear history are doomed to explain it. --- OriginalGriff (February 24, 1959 – ∞)

                            "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
                            "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt

                            C 1 Reply Last reply
                            0
                            • C Colborne_Greg

                              I think that Visual Basic should be shown off for its beauty and elegance. Here is a sample of what it can do - that no other language can do:

                              Private Sub AlbumListPopulate()
                              Try
                              AlbumsList.ItemsSource = New List(Of Image)

                                  For Each AlbumName In Pictures.Albums
                                      Try
                                          AlbumsList.ItemsSource.Add \_
                                              (
                                                  New Image With
                                                  {
                                                      .Height = 150,
                                                      .Width = 150,
                                                      .Source = RotateStream \_
                                                      (
                                                          Pictures.Album(AlbumName).Picture,
                                                          Pictures.Album(AlbumName).Angle
                                                      )
                                                  }
                                              )
                                      Catch
                                      End Try
                                  Next
                              Catch
                              End Try
                              

                              End Sub

                              N Offline
                              N Offline
                              Nagy Vilmos
                              wrote on last edited by
                              #45

                              If I could be arsed, I'd find similar classes in Java and show you how anonymous constructors work there too.

                              C 1 Reply Last reply
                              0
                              • J Jorgen Andersson

                                I totally agree on that most of the complaints about VB is of the immature kind. But one thing I need to give them is the On Error Resume abomination. Which you sadly have emulated with your empty Catch. :sigh: My personal opinion is that since C# and VB.Net is based on the same CLR and the same Framework, most quarrels are just silly. Use what you feel most at home with, but stop being ridiculous about it!

                                Wrong is evil and must be defeated. - Jeff Ello[^]

                                C Offline
                                C Offline
                                Colborne_Greg
                                wrote on last edited by
                                #46

                                I should have left out the try catch

                                J 1 Reply Last reply
                                0
                                • P PIEBALDconsult

                                  RyanDev wrote:

                                  and make it way easier to read

                                  I would argue the opposite.

                                  You'll never get very far if all you do is follow instructions.

                                  C Offline
                                  C Offline
                                  Colborne_Greg
                                  wrote on last edited by
                                  #47

                                  visual basic takes less skill to get the job done

                                  P 1 Reply Last reply
                                  0
                                  • Z ZurdoDev

                                    A lot of people do. I can't understand why, but yes, a lot of people do.

                                    There are only 10 types of people in the world, those who understand binary and those who don't.

                                    C Offline
                                    C Offline
                                    Colborne_Greg
                                    wrote on last edited by
                                    #48

                                    visual basic is easier for people with less skill

                                    S 1 Reply Last reply
                                    0
                                    • L Lost User

                                      Are you still opposed to using (the namespace one, not the disposing one or the alias one) as well?

                                      C Offline
                                      C Offline
                                      Colborne_Greg
                                      wrote on last edited by
                                      #49

                                      Public Shared Function GetImage(FileName As String) As BitmapImage
                                      If FileName <> "" Then
                                      Using isStore = IsolatedStorageFile.GetUserStoreForApplication()
                                      Using targetStream = isStore.OpenFile(CameraControl.LastKnownTaken.FileName, FileMode.Open, FileAccess.Read)
                                      Dim ImageCaptured = New BitmapImage
                                      ImageCaptured.SetSource(targetStream)
                                      Return ImageCaptured
                                      End Using
                                      End Using
                                      End If
                                      Return Nothing
                                      End Function

                                      1 Reply Last reply
                                      0
                                      • N Nagy Vilmos

                                        If I could be arsed, I'd find similar classes in Java and show you how anonymous constructors work there too.

                                        C Offline
                                        C Offline
                                        Colborne_Greg
                                        wrote on last edited by
                                        #50

                                        not familiar with Java so that would be great

                                        1 Reply Last reply
                                        0
                                        • C Colborne_Greg

                                          Considering the missing connection between me knowing C# can get away without using the with word, proves its problems. The with keyword gets the coder in a mindset.

                                          P Offline
                                          P Offline
                                          PIEBALDconsult
                                          wrote on last edited by
                                          #51

                                          My dislike of with (also in Pascal I think) is that the only place I would have liked to use it, it won't work... If I have two things (not necessarily the same type), and I want to copy a number of values (not necessarily all the values) between them:

                                          thing1.fieldM = thing2.fieldP ;
                                          thing1.fieldD = thing2.fieldQ ;
                                          ...

                                          I want a with that will allow me to do something like:

                                          with ( thing1 , thing2 )
                                          {
                                          fieldM = fieldP ;
                                          fieldD = fieldQ ;
                                          ...
                                          }

                                          That would be usefull. As it stands, with is pointless (in my opinion) so I have never used it. However, one could use something like:

                                          {
                                          var src = thing1 ;
                                          var dst = thing2 ;

                                          dst.fieldM = src.fieldP ;
                                          dst.fieldD = src.fieldQ ;
                                          ...
                                          }

                                          which is almost a good. :shrug:

                                          You'll never get very far if all you do is follow instructions.

                                          C 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