How do i display 2 amplitudes with unknown range limits

How do i display 2 amplitude values in graphs with uknown data for range limits. if both could display in the middle of the graph would be great. Any inputs would help me greatly.
Thank you,
Ran

why separate threads for same question. continue here

Similar Messages

  • How can i Display images with may own table

    Hi
    I want display images with my own table. How can I use in this query.
    SELECT    '<a href="#" onclick="javascript:'
           || 'getImageHeight(''my_img'
           || '#ROWNUM#'');javascript:redirect'
           || '(''f?p=&APP_ID.:212'
           || ':&SESSION.:DISPLAY:NO::P212_IMAGE_ID:'
           || ID
           || ''');">'
           || '<img src="#IMAGE_PREFIX#edit.gif" '
           || 'alt="Edit"></a>' ID,
              '<img id="my_img'
           || '#ROWNUM#" src="#WORKSPACE_IMAGES#'
           || filename
           || '"/>' image
      FROM wwv_flow_filesThanks
    Nr
    Edited by: user10966033 on Sep 28, 2009 1:41 PM

    You don't use #workspace_images# since that is for STATIC files, not images in a table..
    see this thread for help: Re: Display image from blob
    Thank you,
    Tony Miller
    Webster, TX

  • How to get/display  time with minutes in a test item

    Dear experts,
    Forms [32 Bit] Version 10.1.2.0.2 (Production)
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    Oracle Toolkit Version 10.1.2.0.2 (Production)
    PL/SQL Version 10.1.0.4.2 (Production)I've the following requirements.
    In my form, there are three text items and one save button.
    Text items named as
    No_of_days --> Number data type
    (user will enter number of days)
    hours_limit --> Char data type with format mask (HH:MI);
    (user will enter hours with minutes)
    Upto_date_time --> date data type;
    this field calculated as (No_of_days+hours_limit+sysdate)
    User will enter No_of_days or hours_limit:
    Based on the values I've to calculate Upto_date_time
    Here is the problem:
    1) If user doesn't enter hours_limit I want to show default time as " 04:00 PM"
    2) If user enter hours_limit field we should allow them to enter in the following format
    "HH24:MI" format;
    what whould be suitable data type for hours_limit field..
    I tried with char and i've set the format mask as ,
    set_item_property('BLOCK3.hours_limit',format_mask,'HH:MI');
    But I'm geeting the error
    "FRM-50027:Invalid format mask for given datatype"
    Please help to solve this problem,
    Regards,
    Karthi

    Hi vansul ,
    set_item_property('BLOCK3.hours_limit',format_mask,'HH:MI');
    Format mast is only allowed to date data type fields.If i set the hours_limit item's data type as date , I'm getting the error message "ORA-01843:Not a valid month"..
    How could i make this field only getting or display time with minutes?
    Regards,
    Karthi

  • How to display value withing some range?

    Hi,
    I am trying to display months name using map and my results are as below:-
    1)January
    2)February
    3)March
    4)April
    5)May
    6)Jun
    Now I want to display the result in some range i.e. display from 2) to 5) or from 4) to 9); whatever user inputs the range.
    So how can I achieve this?
    Regards,
    Prateek

    Hi,
    With the help of Range droplet I am able to set the limit of my month list like if I give the value as 3 in howmany parameter;it shows the following result-
    1)january
    2)february
    3)march
    But as I said previously how can I show te result as below if user gives some input like (3-4):-
    3)march
    4)april
    5)march
    Thanks.

  • How do I display variables with # in them?

    Hello Cf peeps.
    I let users of my site create unique usernames and upload pictures.  They are then able to search those items for the exact name they entered.
    Today a user signed up with the name goboy#4.
    How can I avoid getting a cf error when on his profile page I output <cfoutput>#username#</cfoutput> where username = goboy#4?
    Thanks!

    Yes, because - as Reid said - # is a meaningful character in the composition of URLs... it's the separator between the path to the document, and an anchor within the document, eg:
    http://domain/path/to/doc.html#nameOfAnchor
    So you need to escape the # in the filename.  Fortunately CF caters for this, with the urlEncodedFormat() function.
    You should also familiarise yourself with how URLs work:
    http://tools.ietf.org/html/rfc1738
    Adam

  • How do we display Pages with drop down one below the other ?

    Hi,
    I am beginner to Financial report 9.3.1 . I have repot mock up where i need to place pages like Time Period , Version etc one below the other with the drop down .
    How should i proceed to achieve the same ?
    Thanks & Regards,
    Vijaya

    Try selecting a grid in the top left corner to highlight it,
    Double check your dimension layout in the properties pane,
    Make sure Grid Point of View is selected.
    Can you be a little more specific as to what kind of report you are trying to create?
    What are your Report layouts Columns, Rows and Page?
    Brian Chow

  • How to store/display images with SQL Server 2000

    Hi everybody, I'm totally new to ColdFusion, and creating a
    sample project, where a user would enter in a person's info and
    upload a picture of that person. I trying to get my app to save
    that image to SQL Server database and then to display that pic.
    Currently, it "seems" that I'm able to save to SQL server (my table
    saves user info but all values in my photo column says
    <binary>-I don't know if that is correct), but I can't seem
    to get image and display it on my cf page. I have pasted portions
    of my code below.
    I've been hammering away at this but no luck, so Any comments
    are very well appreciated, example code would be great!
    Thank you so much,
    noijet
    # 1.) I have a 'User Info Entry' page that submits to page
    #2:
    <cfform...>
    <input name="fileToUpload" id="fileToUpload" type="file"
    size="64"/>
    </cfform>
    # 2.) This page does the actual saving, this doesn't output
    any errors but am I saving the image to SQL server correctly? I
    have no idea really how to save images to database, so please
    advise or possibly provide example code. Afterwards, it goes to
    page #3 to display confirmation page that data has been saved.
    <cfif isDefined("Form.fileToUpload") and Form.fileToUpload
    neq "">
    <cfset uploadPath =
    GetDirectoryFromPath(GetBaseTemplatePath()) & "uploads\">
    <cfif not DirectoryExists(uploadPath)>
    <cfdirectory action="create" directory="#uploadPath#">
    </cfif>
    <cffile action="upload" fileField="fileToUpload"
    destination="#uploadPath#" nameConflict="overwrite">
    <cfset imagefile= "uploads\\" & cffile.serverFile
    & "'">
    </cfif>
    <cfquery name="qInsertPerson" dataSource="HRP">
    Execute insertPerson
    N'#Trim(FORM.sLastname)#',N'#Trim(FORM.sFirstname)#',N'#Trim(FORM.sMiddle)#',N'#Trim(FORM .sAlias)#',
    '#imagefile#'
    </cfquery>
    <cflocation url = "savePersonResult.cfm" addToken =
    "No">
    #3.) This confirmation page displays last user entered and a
    picture of the user. The user info retrieved from SQL server is
    displaying correctly but the picture is not displaying(just a small
    red 'x' box). The image calls another getPersonPhoto.cfm file to
    display image.
    <cfquery name="lastPerson" datasource="HRP">
    Exec getLastRow
    </cfquery>
    <cfoutput query="lastPerson">
    #firstName# #middle# #lastName# was added to our Persons
    list. That Person has been given id: #id# <br>
    Thank you for your assistance and cooperation.
    <img src="getPersonPhoto.cfm?id=71" border="0" width="128"
    height="180">
    </cfoutput>
    #4.) This is .cfm file that only displays image of person
    <cfsetting enablecfoutputonly="Yes">
    <cfsetting showdebugoutput="No">
    <cfquery name="getBlob" datasource="HRP">
    SELECT TOP 1 photo FROM Persons WHERE id = 71
    </cfquery>
    <cfheader name="content-disposition"
    value="Inline;filename=ExamplePerson.jpg">
    <cfcontent type="image/jpeg; charset=iso-8859-1">
    <cfoutput>#tostring(tobinary(getBlob.photo))#</cfoutput>
    Note: In my ColdFusion admin, I checked "Enable ... BLOB's"
    and set Blob Buffer to 20000

    Regarding doing the actual saving, here are some other things
    to consider:
    * a max on the image's file size
    * check if it really is an image
    * don't use nameconflict="overwrite". consider
    nameconflict="MAKEUNIQUE"
    * delete uploaded image on file system after insert into db
    Also, on the cfm page that returns an image, try putting the
    cfcontent tag and the cfoutput tag on one line.
    <cfheader name="Content-Type" value="image/jpeg">
    <cfcontent
    type="image/jpeg"><cfoutput>#getBlob.photo#</cfoutput>
    Good luck!

  • How can I display pictures with an odd size in Aperture 3.0

    My camera : Leica Digilux 3 (supported). I use to shoot in Raw format and the regular size for these pictures is 3148*2350 (7,4 MP = 14,34 Mo). I have no problem with them. Some times I take pictures in panoramic format, also Raw 3148*1762 (5,5MP = 10,78 Mo), they appear in the library, but when I click on them to view and edit them they appear about 1 second in the viewer, and disappear letting an empty viewer or displaying the previous regular picture viewed, without no error message. If I control-click one one of these panoramic picture, it appears in the viewer as long as I maintain the click and disappear when I release. I don't encounter this problem in LR (dare I say it)
    Thank you for your help

    My camera : Leica Digilux 3 (supported). I use to shoot in Raw format and the regular size for these pictures is 3148*2350 (7,4 MP = 14,34 Mo). I have no problem with them. Some times I take pictures in panoramic format, also Raw 3148*1762 (5,5MP = 10,78 Mo), they appear in the library, but when I click on them to view and edit them they appear about 1 second in the viewer, and disappear letting an empty viewer or displaying the previous regular picture viewed, without no error message. If I control-click one one of these panoramic picture, it appears in the viewer as long as I maintain the click and disappear when I release. I don't encounter this problem in LR (dare I say it)
    Thank you for your help

  • How do I contact apple with unknown charges to my account

    My account was charged almost $30.00 for apps that I did not purchase! How do I contact apple about these charges?

    I'm guessing you are in the US, apologies if i'm wrong, but if you are then do the following
    Check your account history for the relevant order numbers/purchase date, cost etc. of the disputed items
    Go to the Apple Express Lane Support for iTunes
    https://expresslane.apple.com/GetproductgroupList.do?PRKEYS=PF4
    Choose iTunes Store
    Then Purchases, Billing & Redemption
    Click Continue
    Choose the devices and versions of iTunes that you normally connect to the iTunes store from and click continue
    you will be taken to a page where you can e-mail Apple who will aim to respond within 24 hours
    hope this helps

  • How can I display Photograph with GUI

    I want to display a picture when a button is clicked on. BinTallOne is the button. Compiler can't resolve symbol, symbol being getImage(). Is there a method I could use to get a jpg file and display it? ActionListener has been implemented and added to button.Thanks Toshi1
    code:
    public void actionPerformed(ActionEvent ae) {
    String label = ae.getActionCommand();
    if (label.equals("BinTallOne")) {
    BinTallOne = getImage("MePic.JPG");

    You can do the following:
    get the Graphics object of the container where you want your photo displayed, and the call it's drawImage() method.
    Let's say you have:
    Panel myPanel = new Panel ();
    Graphics g = myPanel.getGraphics();
    g.drawImage (BinTallOne, x, y, myPanel);where x and y represent the size of your image. Don't forget that in order to display the image the panel (myPanel) must be added to your Frame, Applet or whatever you're using.
    Good luck,
    Calin

  • Key probelm w. Generic EnumMap -- How to replace a value with unknown key?

    Hi, i have a problem that i want to replace an value of an key/value pair, but I dont have the approiate key for that, to avoid passing the key throug all methods, I just implemented
    a method in the delegate class.
    public K getFirstAssociatedKey(BilanzObjekt bo){
               Set<K> keys = this.container.keySet();
               for(K key: keys){
                   V value = this.container.get(key);
                   if (bo == value){                    
                        return key;
               return null;
         }It works, but I can't use the retrieved key for a put-statement, cause the satic type comparision seems to fail. Even the key is retrieved from the original, the compilier is unable to validate that the key is in the approiate Enum, so it refuses the operation.
    In my special case I can avoid this by returning the value to the calling mehod inside the delegate, but that can't be the solution for all cases. Even If i would pass the key-vaue through all methods, the universial declaraction of ? extends Enum<?> would raise the same problem, that the compiler can't verify if the given key ist part of the Enum of the current EnumMap.
    Cause i still not an expert dfor generics, I might have overseen an solution.
    So is there any way to retrieve valid keys for the put-method at runtime without declaring a specilized subtype? Using rawtypes would supress compiler-errors, but that isn't the way what Generics intends. I allready have some lager Enums and some subsuets with EnumSet. But this solution isn't absolutly clean, cause you have to use the EnumSet to Iterate over the map and can't use keySet() anymore (Without special preparations for the values not contained in the EnumSet). Also I don't want to limit the code to only one type of Enum. So I my looking for another solution.
    Is there hoepfully any easy and gernerally solution to that problem?
    Thanks a lot in advance.
    Greetings Michael

    Hi, I redesigned my programm a little bit by returning the Objeckt which should be replaced to the delegate, but this causes the problem that I know that it is the exact type, cause the previous value had the same type before, but I can't replace it as long I don't except a fixed type for the value-parameter of the EnumMap.
    The workaround which worked with keys via Map.Entry, cause I didn't replaced them, don't work here.
    I found a solution which works for me (after the redisign mentioned above), even it is quite dirty., cause it moves the error detection form compiletime to runtime. But to gain more flexibilty, i prefer this. The else clause is just to find some programming faults as early as possible. I was quite suprised that the cast to V is legal, but the put -method will throw a ClassCastEcxception if it is not. So its a trade off betwenn flexibility and early error detection. I'm sure that should not used widely, but is a soluion or workaround for my problem.
    /* dirty cast */
    V new_v = (V) old.getReplacingValue();
                        if ( new_v != null){
                                  /* If the both instance are of the same base class, this operation is safe,
                                   * Cause if the previous value was ok, then the new value must be also OK!
                                   * This should be the default case.*/
                             if(new_v.getClass().getName().equals( old.getClass().getName()) ){                         
                                         this.container.put(key,  new_v);                         
                               }else{
                             /* Otherwise a class-cast exception is most likely,
                              * but should normally not reached, if replacing methods are always returning the most specialized type and are overwritten in all subtypes.  */
                                 try{
                                  this.container.put(key,  eBoNew);
                                  }catch(ClassCastException cce){
                                  cce.printStackTrace();
                   }Greetings Michael

  • How to unlock an iPad with unknown passcode?

    Hi!
    After a lot of waiting I was given an iPad Air from my local government because of my involvement in local politics. I believe it is so they can send out
    meeting papers on email and not have to spend a lot of money on making a lot of copies and sending out masses of paper.
    I have not been impressed by their tech guy, he left the iPad in reception for me to pick up(on Friday), I forgot to check the contents of the box so it was weekend before I realised the charge cable was missing. On Monday(yesterday) he left a cable in the reception on city hall for me to pick up.
    So I charged the iPad and attempted to use it and found it had a passcode that he had not given me. I find this a little strange as he had expressed surprise that the cable was missing as "he had not charged it". Someone must have used it for there to be a code set.
    Now he is on christmas holiday and have not responded to my sms asking for the code.
    I had hoped to use the iPad to Skype grandparents over christmas as my iMac is downstairs in my office and my laptop have pretty much given up.
    Is there any way to get around the passcode when it is an iPad that I have not had synced to my iMac before?
    Thx and merry christmas.
    Howie

    Troublesome problem but there's an easy fix. I just started a teaching job and my school issues all teachers a laptop and iPad. The previous owner of my iPad had set up a passcode and I was able to reset the device with the following steps:
    1. Turn off the device,
    2. Connect the USB/charging cord to only your computer (don't connect to the iPad).
    3. Press and hold down the home button on the iPad just before plugging in the USB connection to your computer.
    4. Keep the home button held down until the iPad shows a screen with the connection cord and an arrow pointing to the iTunes logo.
    5. Your computer should bring up a small iTunes window asking if you want to "restore" the device.
    6.   ...restore the device.

  • How can I display step info in User Interface with Tracing Disabled?

    I'm trying to modify the CVI Operator Interface application to update the execute panel with some step information during the execution of the program. i.e. I want to display the measurement, high & low limits during the run WHEN TRACING IS DISABLED. (Doing this, when tracing is enabled is easy, all you do is access the step record that's been constructed (I can cope with that!))
    I've successfully implemented a User defined execution event to signal the User Interface application when the current step is a result (using TS_UIMsg_UserMessageBase etc. I'm posting a UI Message in the Process Model under the ProcessModelPostStep so that I will only display if its a result step.) I've added a user defined
    entry in the execute.c module execution event switch statement which will call a function in the exedisp.c module to update the display. However, I don't have a context to the step that I can use. (I can't use e.g. the exeRec record since this is only completed with the context if tracing is enabled.) I've got a handle to the correct panel to write the information to, but how do I get the context to the current step when tracing is disabled?
    Regards,
    Brian

    Hi,
    no problem - btw, if you wanted to acheive this in TS 1.x, you could always write to a local variable with the ActiveX reference for the step concerned, and then use the msg reference that you have in the OI within the UI Message handler, to dig through to the Execution ->Sequence File->Sequence->Locals, or Execution->Thread->SequenceContext (and you can get almost anywhere from that).
    Hope that helps
    S.
    // it takes almost no time to rate an answer

  • HT2486 My address book only displays e-mails. How can I sync it with my i-phone to display the address book the same way as my contacts in my i-phone?

    Currently my address book only displays e-mail addresses. It uses the portion of the address in front of the @ as the name. How can I sync it with my i-phone 4S that has name/numbers and addresses of my contacts?

    Hello there, Seta.
    You are correct that this can be done with iCloud. The following Knowledge Base article provides some great instruction for syncing contacts:
    iOS: How to transfer or sync content to your computer
    http://support.apple.com/kb/ht1296
    Particularly:
    Contacts, Calendars, Bookmarks, and Notes
    You can sync contacts, calendars, bookmarks, and notes with other applications on your computer. This allows you to keep all your information in sync across multiple computers and iOS devices. The settings for these items are all in the Info tab for your iOS device in iTunes. With your iOS device connected to the computer, select your iOS device. Then click the Info tab.
    For details on syncing content on your iOS device with your computer, click the sections below.
    Contacts
    To sync contacts with your computer, choose "Sync Contacts with" within iTunes for Windows, or "Sync Contacts" in OS X v10.8, or "Sync Address Book Contacts" in OS X v10.7 and earlier.
    You can sync your contacts with:
    Microsoft Outlook 2003, Microsoft Outlook 2007, Microsoft Outlook 2010 (Windows XP, Windows Vista, Windows 7, and Windows 8)
    Windows Address Book (Windows XP)
    Windows Contacts (Windows Vista, Windows 7, and Windows 8)
    Address Book (Mac OS X v10.7 and earlier)
    Contacts (Mac OS X v10.8)
    Microsoft Entourage 2004, Microsoft Entourage 2008, or Microsoft Outlook 2011 for Mac
    Notes:
    When syncing contacts, you can choose to sync all of your contacts or only selected groups. The option to sync selected items may not show up until after the first sync.
    You can select a group of contacts to which all new contacts created on your iOS device will be added.
    Additional options for syncing include syncing your contacts with Yahoo or Gmail/Google Mail. You will need to configure it with the user name and password for your Yahoo or Google account.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • How can I display the vendor associated with result of my running total sum

    I have a report that lists vendors with their most vecent order dates.  I need to set up a rotation so that the vendor with the latest order date is next to be selected.  I used the running total summary to pick the latest date.  How can I display the vendor associated with result of my running total summary?

    If your "latest" order date means the "oldest" order date, why don't you try this:
    Go to Report tab -> Record Sort Expert -> Choose your order date in ascending order
    This will make your oldest order your first record shown. 
    You can then create a running total count for each record.
    Lastly, in your section expert under conditional suppress X+2 formula, write this:
    {#CountRecords}>1
    The result will only show the oldest record in your report.
    I hope that helps,
    Zack H.

Maybe you are looking for

  • ITunes will not sync to my iPhone

    I add music to my iTunes, and I plug up my phone and click sync. iTunes goes through all the processes, and even tells me the sync is done, but no new songs are on my iPhone. I thought that maybe it was just the songs/file type I was trying to downlo

  • Rep-1401 Error

    Hi , How can I solve below mentioned problem? In report it is showing the Error like "Rep-1401 'Desc_thickformula' Fatal PL/SQL error occured ora-06502 PL/SQL numeric or value error". Before this report is working fine. No modification done in the re

  • Screen will start to pixelate and error message appears to restart

    I have a iMac G5 17". It will boot up, apple start up screen, Mac OS X screen, and then finally Desktop. but about 20 seconds the screen will start to pixelate and kinda "wig out" then it will tint a dark grey and a error message in multiple language

  • Question related to Java Concurrent Program

    Hi Friends, I have a basic question related to Java Concurrent Program in the Oracle application. I would like to know the how Java concurrent program is executed in Oracle applications.Also, want to know where can I find the document for the AOL pac

  • KIN One m won't receive mms messages

    My KIN ONEm won't receive mms messages, I've had the problem once or twice before and every time it's happened it shows this error message "someone sent you a message but it can't be retrieved right now" with the error code "3-4003" it's fixed itself