How can one make his own mini 5-din MIDI cab

Dear all,
I'm stuck with quite a problem over here. Bought an Audigy 2 Platinum a couple of months ago through the Internet and it works like a gem, but................if I want to hook up my soundmodule to it, I'm confronted with the fact that I need a mini 5-din for that and I haven't got a scheme of which wire I've got to put where.
Standard MIDI is easy:
3 ?o empty??? empty o?
?5. o red??? blue o? 4
??? 2? o yellow
But now the mini plug..................... It's got two holes on the left and three on the right side, but obviously it's quite different from the standard plug, so my question is: how and where do I connect the respectable wires?
If anyone could help me out on this one I'd be very thankful as this kind of cables aren't for sale anymore over here in Europe.........
Kind regards,
Corina van Lierop - AKA Justin98

http://pinouts.ru/Home/minidin_to_din_pinout.shtml

Similar Messages

  • How can I make my mac mini run faster? Everytime i try to download a internet page I get the circle with colors. It takes too long. Help

    How can I make my mac mini run faster. Loading internet pages is too slow

    i have the same problem...it can take 10-15 seconds to just switch tabs..i think i will solve it by taking mine back

  • How can I make my Mac Mini faster?

    How can I make my Mac Mini faster?

    Make sure there's enough free space on the startup disk  ...
    Click your Apple menu icon () top left in your screen. From the drop down menu click About This Mac > More Info > Storage
    Make sure there's at least 15% free disk space.
    More tips here > Mac troubleshooting: What to do when your computer is too slow | Macworld

  • How can i make my own LookAndFeel

    How can i make my own LookAndFeel ??
    please help, if you have some tutorials or something like this

    http://www17.homepage.villanova.edu/william.pohlhaus/is/doc/Java%20Look%20and%20Feel.htm
    and Google.

  • How can i make mt own radio station on iPad or iPhone.....and how to use mobile terminal ???

    How can i make mt own radio station on iPad or iPhone.....and how to use mobile terminal ???

    what do you mean radio station as in you would be transmitting fm to the airwaves?

  • How can I make my own ringtone in iTunes 11.0.2?

    I used to convert the audio to an ACC file after I cut it. However, there's no longer that button, how can I make them into tones after cutting the audio? The new version of iTunes confuse me

    How about creating the ringtone on your iPhone? You may want to check this out:
    http://www.macworld.com/article/2010514/how-to-create-a-ringtone-on-your-iphone- with-garageband.html
    You need GarageBand 1.3 for iOS - is your iPhone compatible with that?

  • How can you make your OWN text slides on imovie

    What i mean by this is, is there any other way to make text slides in imovie other than the options they already give you? I want to make my own, i'm not a fan of the ones they give

    You can use Keynote and then use in imovie.
    The trick is to Share from Keynote as a QuickTime movie. Use Timed Advance, not Manual Advance.
    If you are using Green Screen, make a gradient background of two similar shades of green.
    Here is a "green screen" example.
    Here is a Picture in Picture example

  • How can I make my own form without a wizard

    Hello,
    I already created Tabular Forms using the wizard and everything worked. But now I have different requirements on my from. I need some radio buttons and some option buttons (which values come from different tables) and some normal number fields. So I can't no longer use the tabular forms.
    I created a table which can save all the information I want to provide by the form. This table has a primary key populated by a sequence I created too. Then I created a page which looks like a questionnaire I got before to design this form.
    I added another hidden item (*ID*), which should be filled by my sequence and a button which should do the insert statement.
    But I couldn't find out how to do. I looked a the processes which a made when I use the wizard but I'm not sure what they do actually.
    My question is, how is it possible to have the hidden item filled with the next primary key of my table and then how do put all the item values of the form in an insert statement? I there maybe a better way to acchieve my goals?
    Regards
    Felix

    If you created your sequence with a trigger (usually APEX creates these together for you) then there is no need to have the next ID number, when you do your insert it will automatically fill this in for you. The trigger will see that you're trying to insert null for the ID and instead replace it with the next number in the sequence.
    As for having all your items in an insert statement, you can do this in two ways. One being to create up a DML page process to handle the insert/update/delete statements. You will also need an on load row fetch process to load data onto your form. Make sure your page items are set to Source Type Database Column with the column names in the Source Value field.
    The other option is to create custom page processes to do these for you - for example, one process for inserting, one for updating, one for deleting, one for displaying data, and then you can set the condition of each process to only run if a certain button is clicked. This is useful if you have more code to run with each button click.

  • How can I make my own changeListener?

    Hello,
    I have this component - A clas Spin that has 3 spinners:
    package component;
    import javax.swing.JPanel;
    import javax.swing.BoxLayout;
    import javax.swing.JSpinner;
    import java.awt.Dimension;
    public class Spin extends JPanel {
         private static final long serialVersionUID = 1L;
         private JSpinner js1 = null;
         private JSpinner js2 = null;
         private JSpinner js3 = null;
          * This is the default constructor
         public Spin() {
              super();
              initialize();
          * This method initializes this
          * @return void
         private void initialize() {
              this.setSize(150, 20);
              this.setLayout(new BoxLayout(this, BoxLayout.X_AXIS));
              this.setPreferredSize(new Dimension(getSize().width, getSize().height));
              this.add(getJs1(), null);
              this.add(getJs2(), null);
              this.add(getJs3(), null);          
         public JSpinner getJs1() {
              if(js1==null) {
                   js1= new JSpinner();
              return js1;
         public JSpinner getJs2() {
              if(js2==null) {
                   js2= new JSpinner();
              return js2;
         public JSpinner getJs3() {
              if(js3==null) {
                   js3= new JSpinner();
              return js3;
         public String getValue() {
              return js1.getValue()+":"+js2.getValue()+":"+js3.getValue();
    }So if I want to catch a change of one of these 3 spinners I just need to do this:
    js1.addChangeListener(new javax.swing.event.ChangeListener() {
                        public void stateChanged(javax.swing.event.ChangeEvent e) {
                             System.out.println("stateChanged()"); // TODO Auto-generated Event stub stateChanged()
    js2.addChangeListener(new javax.swing.event.ChangeListener() {
                        public void stateChanged(javax.swing.event.ChangeEvent e) {
                             System.out.println("stateChanged()"); // TODO Auto-generated Event stub stateChanged()
    js3.addChangeListener(new javax.swing.event.ChangeListener() {
                        public void stateChanged(javax.swing.event.ChangeEvent e) {
                             System.out.println("stateChanged()"); // TODO Auto-generated Event stub stateChanged()
    But I DONT need this above, I need this:
    Spin mySpin = new Spin();
    mySpin.addChangeListener(new javax.swing.event.ChangeListener() {
                        public void stateChanged(javax.swing.event.ChangeEvent e) {
                             Spin s = (Spin)e.getSource();
                             System.out.println(s.getValue()); // TODO Auto-generated Event stub stateChanged()
                   });What all I need to do that my spinner "Spin" can have its OWN changeListener so everytime I change ONE of these 3 spinners(doesnt matter which one) that MY changeListener can catch it and execute what ever I to.
    I hope that it make sense what just asked..
    Thanks for any ides.

    Oh sorry about that, I misunderstood your question. I think I see now what you need to do. First create your own custom event class:
    public class SpinChangeEvent {
         private Spin source = null;
         private Object value = null;
         public SpinChangeEvent(Spin source, Object value) {
              this.source = source;
              this.value = value;
         public Spin getSource() { return source; }
         public Object getValue() { return value; }
    }Then create your own SpinChangeListener interface:
    public interface SpinChangeListener {
         public void stateChanged(SpinChangeEvent ev);
    }In your Spin class, maintain a list of SpinChangeListeners that will be notified of changes, and add regular javax.swing.event.ChangeListeners to your JSpinners to do the notification:
    private ArrayList<SpinChangeListener> listeners = new ArrayList<SpinChangeListener>();
         private void initialize() {
              // Do other init stuff, then this:
              javax.swing.event.ChangeListener lis = new javax.swing.event.ChangeListener() {
                   public void stateChanged(ChangeEvent e) {
                        doSpinnerChanged();
              js1.addChangeListener(lis);
              js2.addChangeListener(lis);
              js3.addChangeListener(lis);
         // This gets called by each spinner when it changes.
         private void doSpinnerChanged() {
              // Create a new SpinChangeEvent and notify all the listeners.
              SpinChangeEvent event = new SpinChangeEvent(this, getValue());
              for (SpinChangeListener listener : listeners) {
                   listener.stateChanged(event);
         // These are for outside classes to register themselves as listeners for SpinChangeEvents:
         public void addSpinChangeListener(SpinChangeListener lis) { listeners.add(lis); }
         public void removeSpinChangeListener(SpinChangeListener lis) { listeners.remove(lis); }Then whatever class uses the Spin object can register itself as a SpinChangeListener like this:
              spin.addSpinChangeListener(new SpinChangeListener() {
                   public void stateChanged(SpinChangeEvent ev) {
                        Spin source = ev.getSource();
                        System.out.println(ev.getValue());
              });Output after several spinner changes is:
    1:0:0
    1:1:0
    1:1:1
    1:1:2
    1:1:3
    1:0:3

  • How can I make my own google map widget for ibooks?

    Hello,
    I am wanting to add some custom maps to an iBook.  I know there are a few sites out there that will build a widget for you but I am wondering how I can build my own.  Does anyone have any tips?
    Thanks!

    Seen iBooks Author: About HTML widget creation ?

  • How can I  make my own design for a web page instead of using a template?

    Need to ask the question again. I tried using the blank template, but could not get it to work. I could not insert images and copy where I wanted and in size I wanted.

    rapcom wrote:
    A general question: Is it possible to change the dimensions of the web page? Or even its positioning as a horizontal or vertical format?
    Yes — it's done via iWeb Inspector's Page tab (the second one at the top), editing the values in the +Page Size+ fields. After entering a new value, click the Return key to make it take effect...
    ..By the way, the above image is taken from a tutorial ~ click on the image above to read the tutorial.
    rapcom wrote:
    I also would prefer to edit the copy on the blank web page, and cannot do that either. Is it possible to do so?
    Yes, it's possible. But it's difficult to know what exact difficulty you're having, and I perhaps risk stating the obvious... One thing to be aware of is that clicking once inside a text box will simply select that box (you'll see eight +"grab handles"+ for re-sizing). But to edit the text inside, you need to click once more. Experiment with clicking inside and outside text boxes and you'll learn.
    And iWeb's Help menu has several resources ~ the Help viewer, a +Getting Started+ PDF and a link to ten video tutorials. One of the videos briefly demonstrates adding a text box towards the end; click here...
    If after the above you still need help, post back with step-by-step details of the problem.

  • How can i make my own app?

    I would like to make an app for my small business, not to sell to the public. Our sales people (only 4 of them) have iPads and I would like to make a catalog of our products into an app so it's easier to sync and use for the sales team. I've found several online companies that will help me but not sure who to go with or the best option...or if there's something I've overlooked. I've tried Dropbox and Goodreader and while that works...an app to me sounds better. The catalog would consist of pictures, product descriptions, some video.
    Thanks!

    You could start out with Apple's iWork apps like Pages for word processing and Numbers for spreadsheets (or something similar from the App Store). These apps allow you to embed photos and videos, or links to your own YouTube videos.  And you could use iCloud or DropBox for sharing and collaboration between your teammates. 
    Experimenting with these off-the-shelf apps may give you some ideas for custom solutions that better meet your business needs.  Good luck!

  • HT204135 How can one make the printer dialog box to have Show Details as default?

      I very often use different presets from document to document.  Thanks.

    Once you select the Show Details for any application, the next time you use that application and select to print, the full details pane should be shown.
    If this is not happening and the applications always show the Hidden Details print dialog then you may need to perform some sort of reset.
    Also, if you were to use the Presets option and set commonly used settings as a Preset, then even if the print dialog is not showing the extra details, you can still select the desired Preset from this print dialog.

  • How can one make a Distinct  Multiplication Table ?

    This Code make Multiplication Table :-
    BEGIN
    FOR I IN 1.. 12 LOOP
    DBMS_OUTPUT.PUT_LINE('---------------------['
    ||I
    ||']----------------------');
    FOR J IN 1.. 12 LOOP
    DBMS_OUTPUT.PUT_LINE(I
    ||'*'
    ||J
    ||'='
    ||I * J);
    END LOOP;
    END LOOP;
    END;
    ---------------------[1]----------------------
    1*1=1
    1*2=2
    1*3=3
    1*4=4
    1*5=5
    1*6=6
    1*7=7
    1*8=8
    1*9=9
    1*10=10
    1*11=11
    1*12=12
    ---------------------[2]----------------------
    2*1=2
    2*2=4
    2*3=6
    2*4=8
    2*5=10
    2*6=12
    11*7=77
    11*8=88
    11*9=99
    11*10=110
    11*11=121
    11*12=132
    ---------------------[ 12 ]----------------------
    12*1=12
    12*2=24
    12*3=36
    12*4=48
    12*5=60
    12*6=72
    12*7=84
    12*8=96
    12*9=108
    12*10=120
    12*11=132
    12*12=144
    PL/SQL procedure successfully completed.
    =====================
    that's good , but I want to change my code to perform a distinct results .
    by accurate meaning , if this result happen ( 1*12=12) than I don't it repeat
    again like (12*1=12) or (2*6=12) .... ect.
    is there any suggest ?!

    Just store your results in hash table and before output check, whether results already been produced.
    declare
      type res_t is table of number index by binary_integer;
      results res_t;
    begin
      for i in 1 .. 12 loop
        dbms_output.put_line('---------------------[' || i ||
        for j in 1 .. 12 loop
          if not results.exists(i * j)  then
            dbms_output.put_line(i || '*' || j || '=' || i * j);
            results(i * j) := i * j;
          end if;
        end loop;
      end loop;
    end;Best regards
    Maxim

  • How can one make a poster video in Adobe Premier Pro- or other play  replay function?

    I want to embed my video into a blogger layout . You Tube takes it back to You Tube- I want to remain on my blog.
    Quick Time instructions require a poster video in order to incorporate play and replay controls.

    Agreed.  From the top.
    all steps followed yielding the following errors:
    Scene 1, Layer 'a', Frame 1, Line 9
    1119: Access of possibly undefined property PLAYING_STATE_ENTERED through a reference with static type Class.
    Scene 1, Layer 'a', Frame 1, Line 3
    1119: Access of possibly undefined property PLAYING_STATE_ENTERED through a reference with static type Class.
    import fl.video.VideoEvent;
    vid.addEventListener(VideoEvent.PLAYING_STATE_ENTERED,f); // line3
    function f(e:Event):void{
    splash6x3.visible=false;  // use the right name
    vid.removeEventListener(VideoEvent.PLAYING_STATE_ENTERED,f); // line 9

Maybe you are looking for