Error in displaying dynamic contents in tableview?

Hi Experts,
                 I am developing a jspDynpage which displays dynamic contents in a tableview. ie, the contents are retrieved from LDAP  Active directory. But i am getting wrong number of results. For example,
If i give last name as Name1,
MAIL       COMPANY           NAME             PHONE
UsrMail    Company1       Fnm,Name1        +1 23456 397                                                                               
Line 1 / 1
Displays the name one time.
first name - name2
MAIL       COMPANY           NAME             PHONE
UsrMail    Company2        Fnm,Name2       +1 789654 397
UsrMail    Company2        Fnm,Name2       +1 789654 397
UsrMail    Company2        Fnm,Name2       +1 789654 397
UsrMail    Company2        Fnm,Name2       +1 789654 397                                                                               
Line 1 / 4
Repeating  the name 4 times.
Lastname - name3
MAIL          COMPANY           NAME             PHONE
UsrMail       Company1       Frstnm,Name3       +1 654321 356
UsrMail       Company1       Frstnm,Name3       +1 654321 356
UsrMail       Company1       Frstnm,Name3       +1 654321 356
UsrMail       Company1       Frstnm,Name3       +1 654321 356
UsrMail       Company1       Frstnm,Name3       +1 654321 356
UsrMail       Company1       Frstnm,Name3       +1 654321 356
UsrMail       Company1       Frstnm,Name3       +1 654321 356
UsrMail       Company1       Frstnm,Name3       +1 654321 356
UsrMail       Company1       Frstnm,Name3       +1 654321 356
UsrMail       Company1       Frstnm,Name3       +1 654321 356                                                                               
Line 1 / 10
Repeating  the name 10 times.
But in Active directory the names are unique .Please Guide me.
Thanks in advance.
Regards,
Krishnan

Hi
    The problem is with Vector which i used to store the retirved information.
After cleared that i got the proper result.
I thought the problem is with tableview.But it is not.
Note: To clear the vector i used Vec.clear() method. It doesn't work. So i created that vector newly inside the loop.
Regards,
Krishnan

Similar Messages

  • Need to display dynamic content on portal page

    I have an htmldb application that a client can upload doctor profiles for the web users to lookup and find a doctor within a certain radius. When they click on the doctor's name, it shows a profile of the doctor. I need to be able to display this information directly on the oracle portal instead of iframing it because i need it to be searchable. I created an xml report in htmldb and linked it to the oracle portal with an omniportlet. The test page can be seen at [http://portal2.bynum.com/portal/page/portal/test/xml%20data%20test]
    I need the link on the go to a page in portal and display the information from the database like it does on htmldb. Is it possible to:
    1. Add a drop down box in the omniportlet that allows me to chose all doctors whose last name begins with the letter in the dropdown box.
    2. Point the link to oracle portal, pass the object_id to the page, and display the doctor profile all in the portal instead of iframing from htmldb.

    Ok, i found the solution. I created a page with the parameters that i want passed in order to display the datbase content. the parameters where created in the page properties section for the page. I created id, first_name, and last_name parameters. Then i created a dynamic pl/sql web page with the dynamic html portlet included with oracle and tied those parameters to the queries. Dynamic content is now displayed when the omniportlet links to the page.

  • Error in displaying hierachry report with TableView and Tableiterator

    Hello,
    I tried to create a BSP as shown in this tutorial:
    /people/vijaybabu.dudla/blog/2008/08/04/display-hierarchy-report-in-bsp-using-tableview-and-tableview-iterator
    When starting the BSP I get an error that a field symbol is not assigned in the method get_column_name.
    When debugging the method get_column_name I can see that row_ref is initial. So the field symbols <row> and <col> are not assigned to any values, which causes the error some lines below.
    METHOD get_column_value .
    *-To get the Column values which is used in the Interator
      FIELD-SYMBOLS: <row> TYPE ANY, <col> TYPE ANY, <cur> TYPE ANY.
      ASSIGN row_ref->* TO <row>.
      ASSIGN COMPONENT column_name OF STRUCTURE <row> TO <col>.
      DATA tempchar(240) TYPE c.
      IF currency IS NOT INITIAL.
        ASSIGN COMPONENT currency OF STRUCTURE <row> TO <cur>.
        WRITE <col> CURRENCY <cur> TO tempchar.
        MOVE tempchar TO column_value.
        CONCATENATE column_value ` ` <cur> INTO column_value.
      ELSE.
        WRITE <col> TO tempchar.
        MOVE tempchar TO column_value.
      ENDIF.
      CONDENSE column_value.
    ENDMETHOD.
    Any help?
    Thank you

    Hi Patrick,
    Thank you for the answer.
    Unfortunately there is still the error with the unassigned field symbol after implementing the render_row_start method.
    Any help?
    Edit: It works now. There was an error with a wrong variable name (stupig mistake.)
    Thanks for the help!
    Edited by: Robert Karlovic on Mar 5, 2009 10:29 AM

  • In struts Can't display dynamic content using "include"?

    Hi everyone:
    I am using struts1.1. I have a index.jsp and it have a hyperlink "<html:link forward="show">Show All forum</html:link>". In my struts-config.xml there is a element:"
    <global-forwards>
    <forward name="show" path="/jsp/allarticle.jsp"/>
    <forward name="oneforum" path="/article.jsp"/>
              <action path="/article" type="lyo.hotmail.bbs.lovearticle.Savelovearticle" input="/jsp/error.jsp">
              <forward name="success" path="/jsp/loveforum.jsp"/>
    </action>
    I want that the index.jsp will redirect to allarticle.jsp when user click the hyperlink "Show All forum".
    In the allarticle there is a hyperlink "<html:link forward="oneforum">one forum</html:link>"
    The Savelovearticle is an Action class and it disply all the data from database.I using "if(list!=null){
              session.setAttribute("listtable",list);
         }".I display all the content using "<logic:iterate id="love" name="listtable">
    " tag in allarticle.jsp.
    But the Tomcat report error "can't find listtable in any scope"?
    The problem is if I change the struts-config.xml to:
    ////////////////////////after change///////////////////////////////////////////
    <global-forwards>
    <forward name="show" path="/article"/>
    <forward name="oneforum" path="/article.jsp"/>
              <action path="/article" type="lyo.hotmail.bbs.lovearticle.Savelovearticle" input="/jsp/error.jsp">
              <forward name="success" path="/jsp/loveforum.jsp"/>
    </action>
    It will display all the content successfully.Why?
    Whether because that the Action is a servlet so it must retrieve a request directly.My first code don't send the request to the servlet other than send the request to a jsp page.The jsp page can't send the same request to the servlet so the error happened.right?
    How do I fix it?Thks :(

    You want to be using <html:link forward="YOUR_FORWARD"> only when you want to forward to static elements and not elements that require actions. So in index.jsp, since you just want to forward to a static jsp page (allarticle.jsp), you can use
    <html:link forward="show">Show All forum</html:link>But since you want your "one forum" link to populate a session attribute BEFORE loading /jsp/loveforum.jsp, you need
    <html:link action="article">one forum</html:link>The reason it's not working now is because you're accessing a session attribute that isn't populated becuase you link to the page statically and it never gets the value of "list" actually stored in the session.
    The reason it works when you change your forward element is because it calls the action that saves "list" into your session.

  • Error in displaying  database content in choice

    Sir,
    The program is meant to show the contents of the the fields of the database file in choice control. But the data is not seen in the choice control
    //The program displays the data stored in the database file students.mdb. The //file contains the fields 'Name' and 'Grade'.
    import java.net.*;
    import java.sql.*;
    import java.awt.*;
    import java.awt.event.*;
    public class jdbc extends Frame
    Choice students;
    Choice grades;
    Connection connection;
    Statement statement;
    public jdbc()
    students = new Choice();
    grades = new Choice();
    setLayout(new FlowLayout());
    try
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    connection = DriverManager.getConnection(
    "jdbc:odbc:students", "Steve", "password");
    statement = connection.createStatement();
    String SQL = "SELECT Name FROM Students";
    ResultSet resultset = statement.executeQuery(SQL);
    while (resultset.next())
    students.addItem(resultset.getString(1));
    SQL = "SELECT Grade FROM Students";
    resultset = statement.executeQuery(SQL);
    while (resultset.next())
    grades.addItem(resultset.getString(1));
    catch(Exception e) {}
    add(students);
    add(grades);
    public static void main (String args[])
    Frame f = new jdbc();
    f.setSize(300, 300);
    f.addWindowListener(new WindowAdapter() {public void
               windowClosing(WindowEvent e) {System.exit(0);}});
    f.show();
    }

    I made the content of the field to be displayed in the choice control. But the field contents are not visible in the control, eventhough the choice controls are displayed in the window. This program was taken from the text Java 2 Programming (Black Book) by Steven Holzner.

  • Display dynamic content

    Hi
    Hoping anyone can help I am currently using Livecycle Designer ES2.
    The current form has a subform which contains drop downs, notes section and price fields. These three fields are repeated 4 times each has different selections in the drop downs, different typed notes and different prices.
    Example
    drop down 1: unit a, unit b, unit c
    note 1: user typed
    price: 23.99
    drop down 2: unit a, unit b, unit c
    note 2: user typed
    price: 45.99
    and so on
    What is currently being produced is a invoice page showing all four sections regardless if there is any data in the fields which is leaving blank spaces on the invoice sheet.
    What i would like to happen is that if drop down 1 and 4 and filled in then on the invoice page it only shows those 2 one after the other with out having gaps where the other should be if filled in.
    Any help or examples would be appreciated
    Many Thanks

    Thanks for the reply.
    The main issue is not to do with having the forms hidden/visable
    I will try to explain better.
    On the last page i have 4 subforms which are hidden.
    Depending on the conidtions from the drop down list on the form anyone of the 4 subforms can become visble while the others remain hidden.
    The problem starts when subform 2 and 4 are visble and subform 1 and 3 are hidden. There are empty gaps where subform 1 and 3 are. But the end result should be subform 2 and 4 next to each other so there are no gaps while subform 1 and 3 remain hidden.
    Its a case of moving the subforms so that the document flows without gaps
    Hope that explains it more
    Thanks.

  • What are you using to create dynamic content?

    I'm new to the cisco DMP system and I'm trying to figure out how others are displaying dynamic content.  The built in designer is a bit limiting.  I've created a few elements in flash, but if the system does not like anything full-screen.
    I've used previous digital signage products and they were all a bit like powerpoint with different slides and each slide could have text, animations, etc.
    Thanks.

    If you are doing it via a web page and can edit the css do something like:
    body{
    margin:0;
    padding:0;
    Then make the flash 100% wide and tall.

  • Problem with "PL/SQL Dynamic Content" and displaying rows

    hi,
    im new to APEX, and pl/sql [but not web dev or sql].
    ive found the bit in APEX that lets you add data from your DB using the 'CREATE' > 'PL/SQL Dynamic Content'.
    maybe there's a better option for people who dont know pl/sql? i dont know?
    however, i think i can getting working with a little bit of help but im stumbling around in the dark a bit here.
    ok so this is the pl/sql ive come up with to show three example values on page 23 of my aplplication:
    BEGIN
    SELECT ID, NAME, OWNER
    FROM COM_MAILSHOTS
    INTO :P23_ID, :P23_NAME, :P23_OWNER;
    END;
    im getting the error:
    1 error has occurred 
    ORA-06550: line 5, column 21: PL/SQL: ORA-00933: SQL command not properly ended ORA-06550: line 4, column 1: PL/SQL: SQL Statement ignored
    thanks for reading!

    Metabaron wrote:
    hi,
    im new to APEX, and pl/sql [but not web dev or sql].
    ive found the bit in APEX that lets you add data from your DB using the 'CREATE' > 'PL/SQL Dynamic Content'.
    maybe there's a better option for people who dont know pl/sql? i dont know?
    The easiest (and best) way to "display rows" is using a report. Dynamic PL/SQL regions are more complex and are required much less frequently.
    The Oracle® Database 2 Day + Application Express Developer's Guide tutorial explains how to create reports and other basic APEX techniques.

  • Error while displaying contents of Interactive Dashboard

    Hello All,
    I am new to OBIEE and ran into some issues with displaying the contents of Interactive Dashboard. Following are the steps I have followed so far.
    OS: Linux 2.6.9-89
    Oracle Client: 10.2.0.4
    1. Installed new OBIEE 7.9.6 software.
    2. All the services, BI Service, BI Presentation and oc4j are up and I am able to login thru browser.
    3. Configured user.sh with required ORACLE_HOME and TNS_ADMIN
    export ORACLE_HOME=/oracle/client/10.2
    *export TNS_ADMIN=${ORACLE_HOME}/network/admin*
    *export PATH=${ORACLE_HOME}/bin:/opt/bin:$PATH*
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib32:$LD_LIBRARY_PATH
    4. Created symbolic links to libclntsh.so.10.1 in lib32 folder
    --[oracle@XXXXX lib32]--$ ls -ltr libclnt*.*
    -rwxrwx--- 1 oracle dba 18982848 Jan 21 2009 libclntsh.so.10.1
    lrwxrwxrwx 1 oracle dba 17 Jan 21 2009 libclntsh.so -> libclntsh.so.10.1
    -rw-rw---- 1 oracle dba 31634362 Jan 21 2009 libclntst10.a
    When I tried to display the contents from interactive dash board after copying .rpd files, I am getting seeing the following error in browser window
    View Display Error
    Odbc driver returned an error (SQLExecDirectW).
    Error Details
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 17001] Oracle Error code: 942, message: ORA-00942: table or view does not exist at OCI call OCIStmtExecute. [nQSError: 17010] SQL statement preparation failed. (HY000)
    SQL Issued: SELECT Time."Fiscal Quarter" saw_0, "Facts - Balance Sheet Statement"."Current Assets" saw_1, "Facts - Balance Sheet Statement"."Current Liabilities" saw_2, "Facts - Balance Sheet Statement"."Net Working Capital" saw_3, "Facts - Asset Turnover Ratios"."Working Capital Turnover" saw_4 FROM "Financials - GL Balance Sheet" WHERE ((Time."Fiscal Quarter" <= VALUEOF(NQ_SESSION."CURRENT_FSCL_QUARTER")) AND (Time."Fiscal Quarter" > VALUEOF(NQ_SESSION."FSCL_QTR_YEAR_AGO"))) ORDER BY saw_0
    NQServer.log has the following errors:*
    2009-08-19 15:00:01
    [nQSError: 43059] Init block 'ETL Run Date': Dynamic refresh of repository scope variables has failed.
    libclntsh.so.9.0: cannot open shared object file: No such file or directory
    [nQSError: 46029] Failed to load the DLL /oracle/obiee/OracleBI/server/Bin/libnqsdbgatewayoci8i.so. Check if 'Oracle OCI 8.x' d
    atabase client is installed.
    I am not sure why its looking for 9i libraries. Would someone point me in right direction.
    Thanks in Advance.

    hi,
    there is a problem with the connection pools.
    can you check the connection pools assigned in the rpd?
    and also, if a driver for the same has been created in odbc.ini file ?

  • Edit error message as displayed when browsers fail to display dynamic pdfs

    I'm sure many people here are aware of the problems that arise when many browsers attempt to open a dynamic writable pdf. The built in plugin that ships with most browsers is unable to display the content, and as a result the following message is shown.
    "If this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to display this type of document. You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by visiting http://www.adobe.com/go/reader_download.
    For more assistance with Adobe Reader visit http://www.adobe.com/go/acrreader."
    (I trimmed a bit because the message is quite long)
    My question is, is there some way to modify the message above by editing the pdf using a program like Adobe Livecycle or Acrobat Pro? The message that displays is basically useless, because the problem is actually due to the browser's inability to display the pdf. If it is possible to replace this message with something more meaningful, such as instructions on downloading the form with right click, that would be fantastic for the users.
    Does anyone know where this information is stored? It doesn't seem to be browser specific (as the browsers I've tested seem to display the same message).

    I got the error messages to work from properties file and some helper class, but not through just defining in faces-config or web.xml.
    I am sure there is a better way to do but hopefully this will help you.
    FacesContext context = FacesContext.getCurrentInstance();
    In my validation method - I have the following code, which will associate
    the appropriate message
    String failureMsg = ErrorMessages.getString("SignUpData.NO_USER_NAME");
    FacesMessage message = new FacesMessage(FacesMessage.SEVERITY_ERROR,          failureMsg, failureMsg);
    context.addMessage("login_form:username", message);     
    My properties file - errormessage.properties - have the following info
    SignUpData.NO_USER_NAME =Please Enter User Name
    SignUpData.NO_PASSWORD =Please Enter Password
    Helper class - ErrorMessages.java
    import java.util.MissingResourceException;
    import java.util.ResourceBundle;
    public class ErrorMessages {
    private static final String BUNDLE_NAME = "com.path1.path2.resources.error_messages";
    private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);
    private ErrorMessages() {
    public static String getString(String key) {
    try {
    return RESOURCE_BUNDLE.getString(key);
    } catch (MissingResourceException e) {               return '!' + key + '!';
    I am also looking for a way to avoid all this extra helper classes if there is a better alternative.
    thanks
    ponni

  • InContext editing error: This region contains content with dynamic behavior added..

    We just set up a web site with InContext editing following the procedures in Business Catalyst documentation to do that. But now when we go to the administration section of the site, and turn on InContext editing, it won't let us update the text. We receive an error message:
    "This region contains content with dynamic behavior added..."
    Does anyone know what causes this problem, and how to fix it?

    Hi,
    InContext Editable (ICE) regions can only contains static areas like text and static  assets, it cannot wrap around javascript – populated areas or dynamic content like slideshows. (most likely causing the error)
    ICE can edit only static page content such as regular HTML content. It cannot edit any element that is dynamically updated for example a div (or another element) which is manipulated (created or its contents are modified) by JS– populated areas or dynamic content like slideshows. It cannot edit menus, content holders or content outputted by system modules or tags either.
    By default, on a page that has no ICE editable regions defined the editor attempts to find any regions you might want to edit and if possible make them editable. If it does not find the correct regions you want to edit you will need to explicitly define some editable regions.
    Refer to this article on Defining InContext Editing editable regions - http://kb.worldsecuresystems.com/838/cpsid_83855.html?bc-partner
    Hope this helps!
    -Sidney

  • Error "a plugin is needed to display this content" for embedded Google map, but no plugin identified.

    When I try to view a page that has a Google map embedded on the page, I get the error message "a plugin is needed to display this content". However, I don't know what plugin, where to get it, etc. I've tried searching for this issue but haven't been able to come up with anyone else experiencing a similar issue, nor does there seem to be a plugin for Google Maps that I can find.
    The page is here:
    http://osiama.org/lodges#
    The map displays when one of the links is clicked in the table.

    I'm not sure why, but the site uses &lt;embed> for the map instead of &lt;iframe>.
    When Firefox wants to render an &lt;embed>, it needs to know what type of object is being embedded, and the site doesn't supply that information, so you see a generic "I don't know how to handle this" error.
    Unfortunately, I don't think there is a quick workaround for you as the end user. If you are the type to tinker, you can manually edit the code of the page in the web console as follows:
    * right-click the plugin message and choose Inspect Element (Q) - the web console will open to the Inspector, with the &lt;embed> element selected (screen shot #1)
    * double-click embed and edit it to iframe, then press Enter to finish the edit
    * Firefox will now load the map (screen shot #2)
    This isn't a general fix-all for plugin errors, and ultimately the site will need to change this.

  • I try to see a movie, an error is displayed: An error ocurred loading this content. Try again later, and i can´t see the movie and I payed for it. What can i do,  I tried at least 10 times, and the problem continues

    I try to see a movie, an error is displayed: An error ocurred loading this content. Try again later, and i can´t see the movie and I payed for it. What can i do,  I tried at least 10 times, and the problem continues

    Welcome to the Apple Community.
    Try pulling all the cables for a few moments and trying again.

  • Error displaying odd content after build...

    After I built my application, an error appeared displaying this ( http://dl.dropbox.com/u/3783094/Screen%20shot%202011-02-23%20at%207.35.37%20PM.p ng ) I figured out that this code below is what is causing this error. I can't seem to figure out how to fix it...
    AquaticPrime *licenseValidator = [AquaticPrime aquaticPrimeWithKey:key];
    NSData *licenseData = [license dataUsingEncoding:NSUnicodeStringEncoding];
    NSDictionary *licenseDictionary = [licenseValidator dictionaryForLicenseData:licenseData];
    if (licenseDictionary == nil)
    return @"<< Not registered";
    else
    return [licenseDictionary objectForKey:@"Name"];
    Here is the entire code structure....
    #import "AppController.h"
    #import "AquaticPrime.h"
    @implementation AppController
    @synthesize name;
    - (void)awakeFromNib
    [self setName:[self checkLicense:[textView string]]];
    - (IBAction)validate:(id)sender
    NSUserDefaultsController *defaultsController = [NSUserDefaultsController sharedUserDefaultsController];
    [defaultsController save:sender];
    [self setName:[self checkLicense:[textView string]]];
    - (NSString *)checkLicense:(NSString *)license
    // This string is specially constructed to prevent key replacement // * Begin Public Key *
    NSMutableString *key = [NSMutableString string];
    [key appendString:@"0x9C209"];
    [key appendString:@"B"];
    [key appendString:@"B"];
    [key appendString:@"B4F109BEF8A387BB8963A"];
    [key appendString:@"F32781A"];
    [key appendString:@"4"];
    [key appendString:@"4"];
    [key appendString:@"0BF260AD57719417447BF"];
    [key appendString:@"831D91DF"];
    [key appendString:@"B"];
    [key appendString:@"B"];
    [key appendString:@"3A12049534449EB000E5"];
    [key appendString:@"67"];
    [key appendString:@"0"];
    [key appendString:@"0"];
    [key appendString:@"A7AAE7AD8ADB71CA831F353A17"];
    [key appendString:@"276AFE379C525FBC048138A1850FD3"];
    [key appendString:@"4860B7686B"];
    [key appendString:@"1"];
    [key appendString:@"1"];
    [key appendString:@"011479AF53CEB822B7"];
    [key appendString:@"1C79D6E5DA1C7AC"];
    [key appendString:@"7"];
    [key appendString:@"7"];
    [key appendString:@"5BD07BED88815"];
    [key appendString:@"132"];
    [key appendString:@"7"];
    [key appendString:@"7"];
    [key appendString:@"0A5D805F5ACAAD407AB84D22C"];
    [key appendString:@"E253C3820CCE0D106F"];
    // * End Public Key *
    AquaticPrime *licenseValidator = [AquaticPrime aquaticPrimeWithKey:key];
    NSData *licenseData = [license dataUsingEncoding:NSUnicodeStringEncoding];
    NSDictionary *licenseDictionary = [licenseValidator dictionaryForLicenseData:licenseData];
    if (licenseDictionary == nil)
    return @"<< Not registered";
    else
    return [licenseDictionary objectForKey:@"Name"];
    @end

    Your AquaticPrime framework isn't 64-bit.

  • Error when displaying portlets..

    hello all,
    I have some pages with some tabs including some portlets (forms, reports and
    dynamic pages). it was running well before.. but now it gives error instead of
    displaying the portlet. the error massage replaces the portlet.
    and that happened with many of them for different types of portlets (forms,
    reports,...)
    although these components run well when running it alone from its application
    area!!
    the errors are like follows,
    ERROR: Time out for content = 20031
    ERROR: Time out for content = 20032
    ERROR: Time out for content = 20046
    ERROR: Time out for content = 20047
    please it's urgent..
    waiting for your help.
    thanks
    maha.

    try this one as it helped me,
    on server find zone.properties file and increase the
    e.g. servlet.page.InitArgs=requesttime=1000
    and bounce the apache
    Hope this helps
    thanks
    Bakulesh

Maybe you are looking for

  • Roadmap for SSRS from SQL2012 to SQL2014 and beyond?

    Hi there, We are the authors of a web application that has grown over a number of years and serves a lot of corporate clients, each client with a lot of users all authenticating to our single application instance. We integrated to SSRS 2008 to provid

  • How do i make the word save as dialog box stop popping up when trying to convert to pdf?

    how do i make the word save as dialog box stop popping up when trying to convert to pdf?

  • File I/O Error 1430 Path Problems?

    Hey guys, I'm somewhat new to labview, and I'm working on a relatively easy program right now.  Just to fill you in on what it's basically going to do.. It reads a voltage from a NI-DAQ which is hooked up to a machine that controls the filling of a l

  • Why is Preview not displaying fonts correctly?

    Since the last Snow Leopard upgrade, Preview is not displaying some fonts correctly. I checked to see if the fonts were embedded in the PDF (by resorting to Adobe Acrobat 5... which is not displaying them correctly either) and they are True Type with

  • HOST command in SQLPlus

    Hi everybody I have a script with two HOST commands inside one script. The problem is that the second host command is executed just before the first host command terminates. Is there a way to make the second waits till the first ends ? Thanks to all