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. General Programming
  3. Visual Basic
  4. MIDI PLEASE, AGAIN AND AGAIN...

MIDI PLEASE, AGAIN AND AGAIN...

Scheduled Pinned Locked Moved Visual Basic
csharptutorialquestion
7 Posts 3 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.
  • N Offline
    N Offline
    Nadroj
    wrote on last edited by
    #1

    ive been wondering along time. does anyone know how to use MIDI instruments, etc, to create notes for output to speakers, in VB.net? it seems impossible, no one has said anything about it. ------------------------ Jordan. III

    L 1 Reply Last reply
    0
    • N Nadroj

      ive been wondering along time. does anyone know how to use MIDI instruments, etc, to create notes for output to speakers, in VB.net? it seems impossible, no one has said anything about it. ------------------------ Jordan. III

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

      Nadroj wrote: it seems impossible, no one has said anything about it. I'm sure someone knows how to do it, but not me. Have you tried searching MSDN or Google? Aaron Eldreth TheCollective4.com My Articles While much is too strange to be believed, Nothing is too strange to have happened. - T. Hardy

      N 1 Reply Last reply
      0
      • L Lost User

        Nadroj wrote: it seems impossible, no one has said anything about it. I'm sure someone knows how to do it, but not me. Have you tried searching MSDN or Google? Aaron Eldreth TheCollective4.com My Articles While much is too strange to be believed, Nothing is too strange to have happened. - T. Hardy

        N Offline
        N Offline
        Nadroj
        wrote on last edited by
        #3

        iv been searching online for quite a while then gave up. i can only find examples in vs.net for like c++, c#, not vb.net anyways, thanks alot for your input! ------------------------ Jordan. III

        R 1 Reply Last reply
        0
        • N Nadroj

          iv been searching online for quite a while then gave up. i can only find examples in vs.net for like c++, c#, not vb.net anyways, thanks alot for your input! ------------------------ Jordan. III

          R Offline
          R Offline
          Ray Cassick
          wrote on last edited by
          #4

          Nadroj wrote: for like c++, c#, not vb.net Use the C# stuff and convert it over. Should not be that hard.


          Paul Watson wrote: "At the end of the day it is what you produce that counts, not how many doctorates you have on the wall." George Carlin wrote: "Don't sweat the petty things, and don't pet the sweaty things." Jörgen Sigvardsson wrote: If the physicists find a universal theory describing the laws of universe, I'm sure the asshole constant will be an integral part of that theory.


          L 1 Reply Last reply
          0
          • R Ray Cassick

            Nadroj wrote: for like c++, c#, not vb.net Use the C# stuff and convert it over. Should not be that hard.


            Paul Watson wrote: "At the end of the day it is what you produce that counts, not how many doctorates you have on the wall." George Carlin wrote: "Don't sweat the petty things, and don't pet the sweaty things." Jörgen Sigvardsson wrote: If the physicists find a universal theory describing the laws of universe, I'm sure the asshole constant will be an integral part of that theory.


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

            Ray Cassick wrote: Use the C# stuff and convert it over. Should not be that hard. This is true. I never really learned C#, but I know JavaScript (the syntax is very similar). All you have to remember when converting from C# to VB.Net, is that you declare the data type defore the variable. Examples: (dim i as integer) in VB.Net is (int i = 5) in C# (sub hello(byval world as string)) in Vb.Net is (void hello(string world)) in C#. Aaron Eldreth TheCollective4.com My Articles While much is too strange to be believed, Nothing is too strange to have happened. - T. Hardy

            R 1 Reply Last reply
            0
            • L Lost User

              Ray Cassick wrote: Use the C# stuff and convert it over. Should not be that hard. This is true. I never really learned C#, but I know JavaScript (the syntax is very similar). All you have to remember when converting from C# to VB.Net, is that you declare the data type defore the variable. Examples: (dim i as integer) in VB.Net is (int i = 5) in C# (sub hello(byval world as string)) in Vb.Net is (void hello(string world)) in C#. Aaron Eldreth TheCollective4.com My Articles While much is too strange to be believed, Nothing is too strange to have happened. - T. Hardy

              R Offline
              R Offline
              Ray Cassick
              wrote on last edited by
              #6

              Because I am a lazy programmer (there is an oxymoron right?) If the code is long and I am crunched for time I always start out with a quick conversion tool. It atleast gets me 90% there most of the time. Try this one out[^]


              Paul Watson wrote: "At the end of the day it is what you produce that counts, not how many doctorates you have on the wall." George Carlin wrote: "Don't sweat the petty things, and don't pet the sweaty things." Jörgen Sigvardsson wrote: If the physicists find a universal theory describing the laws of universe, I'm sure the asshole constant will be an integral part of that theory.


              L 1 Reply Last reply
              0
              • R Ray Cassick

                Because I am a lazy programmer (there is an oxymoron right?) If the code is long and I am crunched for time I always start out with a quick conversion tool. It atleast gets me 90% there most of the time. Try this one out[^]


                Paul Watson wrote: "At the end of the day it is what you produce that counts, not how many doctorates you have on the wall." George Carlin wrote: "Don't sweat the petty things, and don't pet the sweaty things." Jörgen Sigvardsson wrote: If the physicists find a universal theory describing the laws of universe, I'm sure the asshole constant will be an integral part of that theory.


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

                Yes, C# to VB.Net converters can usually convert a good amount of code decently. There are still some things that are not converted correctly (attaching events, single line if...then, etc.) but converters are a good time saver. Especially if you are a lazy programmer like Ray or me :) Aaron Eldreth TheCollective4.com My Articles While much is too strange to be believed, Nothing is too strange to have happened. - T. Hardy

                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