MIDI PLEASE, AGAIN AND AGAIN...
-
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
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
-
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
-
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.
-
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.
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
-
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
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.
-
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.
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