CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Firebeard

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    5,020

    Re: Accurate timer needed for drum sequencer

    Sorry, I didn't explain it very well. My system is based around a 2 bar rhythm / arpeggiator pattern made up of 16th notes. It does work out OK at 125ms. I found a Media Timer - I went through the...
  2. Replies
    3
    Views
    3,362

    Re: Create a midi file using vb

    I've just done some work on this. Not sure if it's bisuitable for you, but my code accepts a table of values as a parameter and converts it into a MIDI file. It doesn't play the notes though. I'm...
  3. Replies
    4
    Views
    5,020

    Re: Accurate timer needed for drum sequencer

    Many thanks. I've found one and got it working.
  4. Replies
    5
    Views
    2,715

    Re: isPalendrome function

    Not sure I understand you. The original post wanted to reverse a string and that's what the function does.
  5. Replies
    5
    Views
    2,715

    Re: isPalendrome function

    Here's a function to reverse text if you need one:

    # Private Function Reverse(ByVal Input As String)
    Dim CharNbr As Int16, ReverseString As String
    Dim StringArray() As Char =...
  6. Replies
    4
    Views
    5,020

    Accurate timer needed for drum sequencer

    Hi. I am developing a drum sequencer using VB.net but having trouble with the accuracy of the timing. I've tried the Forms timer, the System timer and I'm now using the Threading version, which I'm...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured