Putting two programs together

Ok these guys want me to finish this project up and Im stilla beginner in this haha. Well I have a program where u input 4 parameters and it does a process in the Console to thread it to another program(this is not my problem) but then I want this data that the other program makes and put it to the graph....I have all of the code ready(or know how I will implement it) but I cannot seem to put his graph into the other program....if you want the code and a better description then you can IM me KrayzeeMunkee400, email me [email protected], or just post here...its appreciated

You can use getters:public int[] getData () {
    return data;
}or similar.

Similar Messages

  • Putting 2 programs together

    I have these 2 individual java progrmas that I want to run together. I would like the programs to first ask for the users name and then output the date and then the users name. Here are the two programs individually:
    import javax.swing.*;
    import java.util.*; //for Date
    import java.text.*; //for SimpleDateFormat
    class DateDisplay {
    public static void main( String[] args ) {
    Date today;
    SimpleDateFormat simpleDF1;
    today = new Date();
    simpleDF1 = new SimpleDateFormat("EE-MM-dd-yy, hh:mm a\nDDD");
    //Default short format display
    JOptionPane.showMessageDialog(null, "Today is " +
    simpleDF1.format(today) +"th day in the year.");
    ....and
    import javax.swing.*;
    class HW1 {
    public static void main(String[]args) {
    String name, first, middle, last, space;
    space = " ";
    //Input the full name
    name = JOptionPane.showInputDialog
    (null, "Enter your full name (first, middle, last):");
    //Extract first, middle, and last names
    first = name.substring(0, name.indexOf(space));
    name = name.substring(name.indexOf(space)+1, name.length());
    middle= name.substring(0, name.indexOf(space));
    last = name.substring(name.indexOf(space)+1, name.length());
    //Output the name
    JOptionPane.showMessageDialog(null,"Your name is: " + first +
    " " + middle +" " + last + "\nReformatted: " + last +"," +" "
    + first +" " + middle.substring(0, 1) +".");
    Each of these works on its own but I want them together. How would I go about doing this? Thanks in advance.

    Right, I get that. This is my very first attempt at writing code so I'll keep that static thing in mind later. Anyhoo, this is what I've come up with:
    /*Travis Mandrell Homework#1
    CSC 211 G. Andrus 9/18/05*/
    import javax.swing.*;
    import java.util.*; //for Date
    import java.text.*; //for SimpleDateFormat
    class HW1 {
    public static void main(String[]args) {
    String name, first, middle, last, space;
    space = " ";
    //Input the full name
    name = JOptionPane.showInputDialog
    (null, "Enter your full name (first, middle, last):");
    //Extract first, middle, and last names
    first = name.substring(0, name.indexOf(space));
    name = name.substring(name.indexOf(space)+1, name.length());
    middle= name.substring(0, name.indexOf(space));
    last = name.substring(name.indexOf(space)+1, name.length());
    Date today;
    SimpleDateFormat simpleDF1;
    today = new Date();
    simpleDF1 = new SimpleDateFormat("EE-MM-dd-yy, hh:mm a\nDDD");
    //Short format display
    JOptionPane.showMessageDialog(null, "Today is " +
    simpleDF1.format(today) +"th day in the year.\n\nYour name is: " + first +
    " " + middle +" " + last + "\nReformatted: " + last +"," +" "
    + first +" " + middle.substring(0, 1) +".");
    It compiles and fuctions as written but does it look alright? By alright I guess I mean that nothing appears out of the ordinary. Thanks.

  • Putting two photos together in iPhoto

    For an online project, I need to take two photos and put them together with a line down the middle to separate them. It's two people and we have two separate photos but we want to use them in one photo space, if that makes sense. How do I create one photo out of two and separate the pictures in the middle with a vertical line? Thank you for your help.

    Do you know of a program that is easy to use?
    That would depend on what your level of expertise is. Most can be run in demo mode so you can try them and see which works best for you. If you intend to get into a lot of editing I suggest you try Photoshop Elements 9 for Mac. It can do some very sophisticated editing like this and this.
    OT
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier versions) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    NOTE: this is not the same as routinely backing up your entire iPhoto library folder to protect your photos. It only protects the loss of your organizational efforts that the database file contains.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. There are versions that are compatible with iPhoto 5, 6, 7 and 8 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    NOTE: The new rebuild option in iPhoto 09 (v. 8.0.2), Rebuild the iPhoto Library Database from automatic backup" makes this tip obsolete.

  • Batch Processing and Putting Two files together?

    Hello,
    I'm trying to find out if there is a way, in Photoshop, to automate placing a logo file and border from another file into a set of photos? Basically, I have a folder of, let's say, 4x6 images, and I have a file that has two layers, a thin transparent border layer, and a layer housing the logo. I would like to find out if it's possible to automate the process where I can batch a lot of files to put this file (or the two layers) onto the original image, then save and close and go on to the next file. Any ideas how to accomplish this? Thanks!
    Regards,
    Dave

    Here is a simple script I made a while back that allows you to place one of two different logo files on the image, depending whether the image is upright or horizontal in orientation.
    All you need is to put you two logo files in a folder and tell the script which folder they are in. After that, when you run the script, it will place the appropriate logo file onto you image depending on the orientation. I used "C:\\MyLogoA.tif" and "C:\\MyLogoB.tif" for this script.
    You can run this script from a batch process.
    var doc = app.activeDocument; // This defines the active document
    var width = doc.width.value; // This is the width of the original image
    var height = doc.height.value; // This is the height of the original image
    // Call the placeLogo function
    if(width>height){
    placeLogo("C:\\MyLogoA.tif");
    }else{
    placeLogo("C:\\MyLogoB.tif");
    // This is the placeLogo function
    function placeLogo(path)
    // =======================================================
    var id35 = charIDToTypeID( "Plc " );
    var desc8 = new ActionDescriptor();
    var id36 = charIDToTypeID( "null" );
    desc8.putPath( id36, new File( path ) );
    var id37 = charIDToTypeID( "FTcs" );
    var id38 = charIDToTypeID( "QCSt" );
    var id39 = charIDToTypeID( "Qcsa" );
    desc8.putEnumerated( id37, id38, id39 );
    var id40 = charIDToTypeID( "Ofst" );
    var desc9 = new ActionDescriptor();
    var id41 = charIDToTypeID( "Hrzn" );
    var id42 = charIDToTypeID( "#Pxl" );
    desc9.putUnitDouble( id41, id42, 0.000000 );
    var id43 = charIDToTypeID( "Vrtc" );
    var id44 = charIDToTypeID( "#Pxl" );
    desc9.putUnitDouble( id43, id44, 0.000000 );
    var id45 = charIDToTypeID( "Ofst" );
    desc8.putObject( id40, id45, desc9 );
    executeAction( id35, desc8, DialogModes.NO );
    // =======================================================

  • How do I put two songs together to one?

    ?????????

    The surest way would be to burn the two songs to CD. Then reinsert the CD and let iTunes pick it up. Next, select the two tracks. From the Advanced menu, select "Join Tracks". Then set the album name and artest. Now, import the CD. One file should have been generated.
    If you don't have CD burner and the files are MP3s, there is a handy little program called MP3 Joiner. I used it to combine multiple CDs (one MP3 file per CD) into fewer files. I've computer a 29 CD audiobook into four files with the length of 9+ horus each.
    Hope this helps,
    Steven

  • How to Put two icons together in a result field in ABAP

    Hi All,
    I have a results column in a report which basically show if the delievery was made on time/late/early. I also have a another column which shows icons as below.
    On Time: ICON_LED_GREEN.
    Late:     : ICON_LED_RED.
    Now what I am trying to do is in the same column I want to have 2 Icons. example i want to merge the following icons together,
    ICON_LED_RED & ICON_LESS_RED in the field.
    Is this possible? if so how
    Thanks

    why you need to merge both the lights in a column when there is no need to have  thse lights in ur column you just have to use them in your write statement.
    loop at i_final.
    if i_final-filed1 = 'early' or
       i_final-filed1 = 'timely' .
    write:/10 icons_led_green, 20 i_final-filed1.
    else.
    write:/10 icons_led_red, 20 i_final-filed1.
    endif.
    endloop.

  • Putting two tracks together

    I have one music track, to which I'm trying to add an already recorded voice track. when I drag this aiff into GB, it goes from about 10 sec long to about 6. why is this, and can I make it stop?
    Thanks.

    seems like it is compressed. it shrinks from 10 secs down to about 6. could this involve the pitch?
    Hmmm, you're not sure if the pitch is changing? And by "compressed" do you mean the words are spoken faster/closer together (Compressed, in audio, means something completely different)
    If there is a pitch shift then:
    http://thehangtime.com/gb/gbfaq2.html#toofast

  • I need to edit out parts of a song to cut it down to two minutes for my daughter's talent show. I went to info and it will cut down one part but only one part. I need to put three parts together. I tried adding duplicates of the song to the list but if I

    I need to edit out parts of a song to cut it down to two minutes for my daughter's talent show. I went to info/start time and it will cut down one part but only one part. I need to put three parts together. I tried adding duplicates of the song to the list but if If I change the start time on one it will change it on all of them.

    In your library, right-click the song you want to edit.
    select "get info".
    go to "options" and select the start and stop times for your first section of the song.
    click "OK".
    Find the shortened version of the song in your library. It may take a minute for it to show up. right click it again and select "create (????) version". (the ???? is different for different formats).
    The library will spit out a new, second version of the song which you can rename. I suggest you use the original title and add a 1 to the end.
    Now you can go back to the other version and repeat the process with a different  start/stop time.
    Once you are done editing, you can burn all of your versions to a disk, just make sure your interval time is zero so there are no gaps between edits.
    To keep the orginal song on your library, just go back to the original and put the start/stop times back to the original settings.

  • Is there a simple way to put two pieces of music together seamlessly? I just want a single, longer track.

    The music is 3:14 long.  I want to repeat it...seamlessly...withount a second or so hole between them. It's for  slide show background.
    I am definitely not a musician. But I figure I can do this in GarageBand.
    Thanks!

    OK... if it's the top right corner of the work space (the place where the track lies) where do I drag it to? Forgive me, but I'm not a musician, I'm a writer. To me, it's the "top right corner" there's no place for me to drag it to... except down or to the left.
    FYI:  The music is a very simple acoustic guitar solo.  The medium beat is clear and the point at which I'd put the two pieces together is equally clear. It's a pleasant piece.  Now you know as much as I do about the music.
    Thanks.
    1deu

  • Need help on combining these two program

    Hi all,
     I needed some help on combining these two program. But i not very sure how to do it.
    My program in working with TimeIn/TimeOut attendance taking. The snippet vi "insert data" is the where i start to TimeIn and insert into the microsoft access. And i wanted to insert it together with a camera catching the user's face. But i have no clues on how to combine them.
     Can u guys give me some ideas to help me ?
    Thanks in advance.
    Attachments:
    IMAQdx.png ‏55 KB
    insert data.png ‏68 KB

    Hi Himanshu,
    But if i put everything inside the IMAQdx loop ,it make my whole program more complicated. 
    This is how my program looks like below.
    I only want to display the image only when i "insert" all data into the database ( which i given at the perivous post).
    Is there other way?? And how do u make the IMAQdx loop stop without putting a stop button?? Because everytime i run the program,it will run continuously at the IMAQdx loop..
    Thank in Advance.
    Attachments:
    FYP.png ‏205 KB

  • Joining two files together

    I'm kinda new to Java, but i'm trying to create a program which joins 2 files together. It works fine with .txt files, but when i try to join two .wmv files, only the one it processes first will show, though the output file will have the size of the two files together. Here's my code for joining them together:
    try {
                        JFileChooser location = new JFileChooser();
                        location.showDialog(this, "Save file");
                        File videoout = location.getSelectedFile();
                        OutputStream os = new FileOutputStream(videoout);
                        BufferedOutputStream out = new BufferedOutputStream(os);
                        InputStream is = null;
                        BufferedInputStream in = null;
                        ListIterator pathsIterator = paths.listIterator();
                        while(pathsIterator.hasNext()) {
                            File part = new File(pathsIterator.next().toString());
                            is = new FileInputStream(part);
                            in = new BufferedInputStream(is);
                            int line;
                            while((line = in.read()) != -1) {
                                out.write(line);
                        in.close();
                        out.close();
                        JOptionPane.showMessageDialog(this, "Done");
                    } catch(IOException io) {
                        System.out.println("IO: " + io);
                    }Any idea what i'm doing wrong?
    Thanks

    Just because you put 2 files in the same file doesn't mean some application can understand that it's 2 files in 1. Meaning, the player of the merged WMV can't know that there's 2 files and that it should play both back to back. You have to read the WMV files knowing the WMV format and then generate 1 file that combines the 2, which typically would include updating header information in the file. Java's I/O classes are not going to provide that sort of thing for you.

  • Copy data of two rows together into a new row

    Hello everyone.
    I have a question about copying data of two existing rows together into a new third row.
    See this short example:
    This is the current situation. The rows STATE_1 and STATE_2 contain different separated information.
    In the past data were saved randomly in one of those rows.
    This is the table State:
    ID
    Cust_ID
    STATE_1
    STATE_2
    STATE_3
    1
    88
    Customer is waiting.
    Call from yesterday.
    2
    11
    Mr. Smith, no answer.
    Waiting until December
    3
    11
    Pls create PO.
    Old PO was cancelled
    4
    5
    No access to system.
    From now on everything has to be saved to the empty STATE_3 but I also need the old entries from the past which also have to be copied together into STATE_3
    like this:
    ID
    Cust_ID
    STATE_1
    STATE_2
    STATE_3
    1
    88
    Customer is waiting.
    Call from yesterday.
    Customer is waiting. Call from yesterday
    2
    11
    Mr. Smith, no answer.
    Waiting until December.
    Mr. Smith, no answer. Waiting until December.
    3
    11
    Pls create PO.
    Old PO was cancelled.
    Pls create PO. Old PO was cancelled.
    4
    5
    No access to system.
    No access to system.
    Is there an easy SQL-command?
    Thanks for any help.

    Hi,
    DB2000 wrote:
    Hello everyone.
    I have a question about copying data of two existing rows together into a new third row.
    See this short example:
    This is the current situation. The rows STATE_1 and STATE_2 contain different separated information.
    In the past data were saved randomly in one of those rows.
    This is the table State:
    ID
    Cust_ID
    STATE_1
    STATE_2
    STATE_3
    1
    88
    Customer is waiting.
    Call from yesterday.
    2
    11
    Mr. Smith, no answer.
    Waiting until December
    3
    11
    Pls create PO.
    Old PO was cancelled
    4
    5
    No access to system.
    When you say "row", do you mean "column"?
    DB2000 wrote:
    Because in this case STATE_1 and STATE_2 are only text of a log file/history.
    So I think 1NF isn't really violated and because of performance of the database in this case it's better to put obsolete rows together.
    Why do you think that?
    The definition of First Normal Form is that every column of every row contains 1 piece of information, not a variable number of pieces.  Whether or not that data is only text of a log file/history has nothing to do with it.
    You might claim you have good reasons (such as performance) for violating First Normal form, but you can't say that you're not violating it.

  • What's a good app to use to put two photos on a single page like Windows Paint?

    I have a OSX Lion with an iPhoto app. I would like to put two photos on a single page like Windows Paint. What's a good app for this? Is there a Windows Paint app for Mac or something similar?

    You can print two photos on a single page with iPhoto, you can put two photos on a single page with Pages, Word or any word processor. Or are you trying to edit two photos together?
    In order of price here are some suggestions:
    Seashore (free)
    The Gimp (free)
    Graphic Coverter ($45 approx)
    Acorn ($50 approx)
    Pixelmator ($50 approx)
    Photoshop Elements ($75 approx)
    There are many, many other options. Search on MacUpdate. You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.

  • How do I connect two lines together.

    I have two lines at an angle but where the corner of the angle is supposed to be there is a little triangle missing. I tried joining the two lines together but when I hit join one line goes past the other.
    Before Joining:
    After Joining:

    There is no need to lock one of the paths, because you do not have to tediously select endpoints just to join paths. Doing so was necessary in Illustrator for most of its history, but it finally (decades behind other drawing programs) gained the ability to join paths at their nearest endpoints by just selecting the paths.
    Undo (or cut) the unwanted join.
    Black pointer: Select the left and right paths.
    Join.
    Alternativley, when drawing line art, it is not uncommon to set your default Graphic Style to use rounded endcaps. That negates the problem of the "missing triangle" (as you call it) appearance of coincident straight end caps.
    JET

  • Combining these two programs...

    I have two programs i want to combine into one. I have a solar system view which shows the solar system as a whole and i also have another program where you can individually view the planets by clicking on a button to load them. What i want to be able to do is in the solar system model (which shows the whole solar system) i can click on a planet and bring up the planetary view that i have. So i have two things i need to do:
    i) A mouse event to allow the user to click on a planet in full solar system view and load the 3D representation of that planet
    ii) A way to seperate my planet identifiying program so that each planet has its own code so that they can be clicked on individually
    Lets start with number 1:
    My code for the solar system model:
    onClipEvent (load) {
    function path(t1, t2){
      return Math.sqrt(t1 * t1 + t2 * t2);
    function label(){
      showLabel = !showLabel;
      if(showLabel) for(k = 0; k < count; k++) this[k].info = n[k];
      else for(k = 0; k < count; k++) this[k].info = "";
    c1 = new Array();  // endpoints coordinates of each ellipse conjugate diameters
    c2 = new Array();
    c3 = new Array();
    this.drag._x = 800;  // set zoom
    this.drag._y = -100; // set elevation
    var showLabel = false;
    // Planetary Orbital Elements (J2000)
    J2000 = new Date(2000, 0, 0, 12);
    n = new Array('Mercury', 'Venus', 'Earth', 'Mars', 'Jupiter', 'Saturn', 'Uranus', 'Neptune','Quaoar','Varuna');
    a = new Array(0.38709893, 0.72333199, 1.00000011, 1.52366231, 5.20336301, 9.53707032, 19.19126393, 30.06896348, 39.48168677, 17.94175491, 43.373493, 13.6209635, 43.2718562);
    e = new Array(0.20563069, 0.00677323, 0.01671022, 0.09341233, 0.04839266, 0.05415060, 0.04716771, 0.00858587, 0.24880766, 0.96727724, 0.037457, 0.3809974, 0.0529874);
    i = new Array(7.00487, 3.39471, 0.00005, 1.85061, 1.30530, 2.48446, 0.76986, 1.76917, 17.14175, 162.24220, 7.992, 6.93691, 17.12943);
    o = new Array(48.33167, 76.68069, -11.26064, 49.57854, 100.55615, 113.71504, 74.22988, 131.72169, 110.30347, 58.86004, 188.923, 209.32713, 97.28538);
    w = new Array(77.45645, 131.53298, 102.94719, 336.04084, 14.75385, 92.43194, 170.96424, 44.97135, 224.06676, 111.86560, 156.292, 339.09846, 275.22088);
    l = new Array(252.25084, 181.97973, 100.46435, 355.45332, 34.40438, 49.94432, 313.23218, 304.88003, 238.92881, 115.68, 267.1875, 48.62884, 83.80675);
    p = new Array(87.969, 224.701, 365.256, 686.980, 4332.589, 10759.22, 30685.4, 60189, 90465, 27795, 105192, 18573, 104096);
    cr = Math.PI/180;
    today = new Date();
    dt = (today - J2000)/864e+5;
    count = n.length;
    inc = 1;
    var pre = null; // drag motion detect
    zoom = 8;
    d = new Array();
    B = new Array();
    co = new Array();
    so = new Array();
    ci = new Array();
    si = new Array();
    for (j = 0; j < count; j++) {
      d[j] = 2 * Math.PI / p[j];
      co[j] = Math.cos(o[j] * cr);
      so[j] = Math.sin(o[j] * cr);
      ci[j] = Math.cos(i[j] * cr);
      si[j] = Math.sin(i[j] * cr);
      u[j] = (w[j] + l[j]) * cr;
      b[j] = Math.sqrt( (1 + e[j]) / (1 - e[j]) );
      c1[j] = traf(0);
      c2[j] = traf(Math.PI / 2);
      c3[j] = traf(3 * Math.PI / 2);
      this.attachMovie("ellipse", count + j, j);
      this.attachMovie("dot", j, j + count);
      if(j > 8) this[j]._alpha = this[count + j]._alpha = 50;
    function traf(e1){
      vector = new Object();
      var v = 2 * Math.atan( b[j] * Math.tan(e1/2) ) + u[j];
      var r = a[j] * ( 1 - e[j] * Math.cos(e1) );
      vector.x = r * ( co[j] * Math.cos(v) - so[j] * ci[j] * Math.sin(v) );
      vector.y = r * ( so[j] * Math.cos(v) + co[j] * ci[j] * Math.sin(v) );
      vector.z = r * si[j] * Math.sin(v);
      return vector;
    function place(pass){
      cmx = Math.cos(mx);
      smx = Math.sin(mx);
      zoom = 5 + drag._x/20;
      if (zoom < 1) zoom = 1;
      if (zoom > 120) zoom = 120;
      this.sun._xscale = this.sun._yscale = zoom;
      xk = zoom * pass.x;
      yk = zoom * (pass.z * smx - pass.y * cmx);
      this[j]._x = xk;
      this[j]._y = yk;
      if(pre != drag._y * drag._x){      // if zoomed or turned transform ellipses
       x1 = zoom * c1[j].x;
       y1 = zoom * (c1[j].z * smx - c1[j].y * cmx);
       x2 = zoom * c2[j].x;
       y2 = zoom * (c2[j].z * smx - c2[j].y * cmx);
       x3 = zoom * c3[j].x;
       y3 = zoom * (c3[j].z * smx - c3[j].y * cmx);
       ax = (x2 + x3 + y3 - y2)/2 - x1;
       ay = (x2 - x3 + y2 + y3)/2 - y1;
       bx = (x2 + x3 + y2 - y3)/2 - x1;
       by = (x3 - x2 + y2 + y3)/2 - y1;
       xc = (x2 + x3)/2;
       yc = (y2 + y3)/2;
       ek = path(bx, by) / path(ax, ay);
       ex = bx + ek * ax;
       ey = by + ek * ay;
       es = path(ex, ey);
       et = ( ay * (xc - x1) - ax * (yc - y1) ) / (ax * ex + ay * ey);
       xm = xc - x1 - ey * et;
       ym = yc - y1 + ex * et;
       xa = ax - xm;
       ya = ay - ym;
       sa = path(xm, ym);
       with(this[count + j]){
        _x = xc - sa * ex / es;
        _y = yc - sa * ey / es;
        _xscale = sa;
        _yscale = path(xa, ya);
        _alpha = 25 + 100 * _yscale / _xscale;
        _rotation = 180 * Math.atan2(-ey, -ex) / Math.PI;
    function kepler(){
      for(j = 0; j < count; j++){
       m = dt * d[j];
       e0 = m + e[j] * Math.sin(m);
       e0 = m + e[j] * Math.sin(e0);
       place( traf(e0) );
    onClipEvent (enterFrame) {
    mx = this.drag._y * cr / 2;
    kepler();
    pre = this.drag._y * this.drag._x;
    dt += inc;
    where would i put a mouse event that allows the user to click on a planet in full solar system view and load the 3D representation of that planet?
    Thanks for any and all help!

    Your solar system code is all AS2 code, not AS3, so if your planet code is AS3 then you will probably need to rethink this--you cannot mix the two languages in one file.  If your planet code is AS2, then you should post in the AS2 forum.

Maybe you are looking for

  • SQL Developer Problem: Connect Database Windows Wont Show

    Hi, I have Windows Vista Home Basic and I have installed Oracle XE 10g which works great. However, I need to install SQL Developer too but it wont work. I think it may be a compatibility issue, or else some problem with Java. The thing is that no mat

  • Update freezes on Mac

    Hi I was trying to update my software for 'Digital Camera RAW compatability update' and 'iWork update' and my app store has frozen on the update and says 'checking for updates' on the top left of the app store. I have since searched for the updates o

  • Integrating code for mouse click!

    Hello! I'm trying to get this code working where I want to integrate a shortcut for clicking an button made in Egde Animate. The code snippets you see is just some copied areas of the whole working code, Serial.print(c);         if (c == '\n') {     

  • Search help for the CJ20N trn

    Hi,     I want to populate the search help for the CJ20N Transaction for the fields in the user fields tab. Can you pl tell the suitable user exit for this. Thanks, Joe

  • How to export my image with transparent bkground (CC)

    Before I ask my question, I want to point out I am currently exporting my image by going to File>Export>.PNG>(72PPI+Transparent) The issue im running into is; for example when I am exporting text, I am also exporting a certain amount of area around m