Delphi doesn't compile the examples for DIO32HS

Delphi doesn't compile the examples for DIO32HS
Some libraries appear to be required,
but there are none supplied
According to the manual, one ActiveX should be sufficient.
What version is the source provided ?

The NI CD is Version 6.9.2
There are examples : \National Instruments\NI-DAQ\Examples\Delphi
There is no mention which Version of Delphi,
I have 3,5 and 6. However there should be components
to be installed into Delphi as DigitalWaveformContinous
requires TCWNumEdit, TCWDI and so on.
It also requires the units CWUIControlsLib_TLB,
CWAnalysisControlsLib_TLB, CWDAQControlsLib_TLB which are not part of Delphi istself but have to be provided
by NI.
Today I'm going to try Borland C++Builder, of which
I have version 4 and 5. This will also require some
components to be installed in BCB, I couldn't find them
yet.
\National Instruments\NI-DAQ\Examples\BorlandC
BTW: this ActiveX that was talked about couldn't be
found on the drive either. no *.ocx
It cannot be that hard. I just want a procedure
to setup the PCI-DIO-32HS, in terms of what is input
and output, how the handshaking is done and then
read/write to the port.
Rene

Similar Messages

  • David Powers Lesson10 - 'doesn't meet the requirements for an image'

    Hi,
    I have a  problem to upload image in lesson10. It always show the error message of 'doesn't meet the requirements for an image' even the image size, width and height meet the validation. Below is upload_images.php
    My upload file size is 160K with width 640 pixels and height 480 pixels. Please help. Thank You.
    upload_images.php
    <?php
    $uploader = new Zend_File_Transfer_Adapter_Http();
    $uploader->setDestination($destination);
    $uploader->setOptions(array('ignoreNoFile' => TRUE));
    $files = $uploader->getFileInfo();
    $filenum = 1;
    foreach ($files as $file => $info) {
      $file = "photo{$filenum}";
      $caption = $_POST["caption{$filenum}"];
      if (isset($_POST["place_id{$filenum}"])) {
        $place_id = $_POST["place_id{$filenum}"];
      } else {
        $place_id = NULL;
      $filenum++;
      if ($uploader->isUploaded($file)) {
              $filename = $uploader->getFileName($file, FALSE);
              $uploader->addValidator('Size', FALSE, '500kB');
              $uploader->addValidator('MimeType', FALSE, 'image');
              $uploader->addValidator('ImageSize', FALSE, array('minheight' => 50, 'minwidth' => 100));
              if (!$uploader->isValid($file)) {
                $errors[$filename] = "$filename doesn't meet the requirements for an image";
              } else {
                $no_spaces = str_replace(' ', '_', $filename, $renamed);
                $uploader->addValidator('Extension', FALSE, 'gif, png, jpg');
                $recognized = FALSE;
                if ($uploader->isValid($file)) {
                        $recognized = TRUE;
                } else {
                        $mime = $uploader->getMimeType($file);
                        $acceptable = array('jpg' => 'image/jpeg' ,
                                                                          'png' => 'image/png',
                                                                          'gif' => 'image/gif');
                        $key = array_search($mime, $acceptable);
                        if (!$key) {
                          $errors[$no_spaces] = "$filename is an unrecognized image type";
                        } else {
                          $no_spaces = "$no_spaces.$key";
                          $recognized = TRUE;
                          $renamed = TRUE;
                if ($recognized) {
                        // get the names of existing files
                        $existing = scandir($destination);
                        // check if the name of the uploaded file is in the array
                        if (in_array($no_spaces, $existing)) {
                          // get the position of the final period
                          // use it to get the base name and extension
                          $dot = strrpos($no_spaces, '.');
                          $base = substr($no_spaces, 0, $dot);
                          $extension = substr($no_spaces, $dot);
                          // initialize a counter
                          $i = 1;
                          // use a loop to add the counter after the base name
                          // check whether the new name exists in the array
                          do {
                                  $no_spaces = $base . '_' . $i++ . $extension;
                          }  while (in_array($no_spaces, $existing));
                          // set $renamed to TRUE
                          $renamed = TRUE;
                        $uploader->clearValidators();
                        $uploader->addFilter('Rename', array('target' => $no_spaces, $info['tmp_name']));
                        $success = $uploader->receive($file);
                        if (!$success) {
                          $errors[$no_spaces] = implode('. ', $uploader->getMessages());
                        } else {
                          $uploaded = "$filename uploaded successfully";
                          if ($renamed) {
                                  $uploaded .= " and renamed $no_spaces";
                          $images[] = array('filename' => $no_spaces,
                        'caption'  => $caption,
                        'place_id' => $place_id);
                          $messages[] = $uploaded;

    I solved it finally. For your infor, I'm using php version is 5.4.3 and MAMP 2.2. Here are the changes:
    1) Open php.ini
        Look for 'extension=php_fileinfo.dll' and remove ;
    2) Download GNU file package for windows from http://gnuwin32.sourceforge.net/downlinks/file-bin-zip.php.
        Extract the zip file.
    3)  Copy 2 file from the extract folder ../share/file/magic and ../share/file/magic.mgc and paste in folder php/extra/magic
         folder. (Create the magic folder as new folder).
    4) Stop MAMP all services and start services again.
    This will work for you !

  • Stacks doesn't display the icons for files

    My downloads stack doesn't show the icons for the files it contains
    Best way to describe is by showing a photo
    http://img130.imageshack.us/img130/6176/screenshot20100102at130.png
    I don't know why this happens, any help would be appreciated, tried searching the internet for answers but couldn't find anything listing a similar problem

    *THANK YOU!!!*
    I'd been having this problem for weeks and it was driving me nuts!! I tried installing the 10.6.3 v1.1 Combo Update today (thinking the problem was caused by the first upgrade to 10.6.3), but that obviously didn't work. Tried messing w/ Airfoil b/c some people complained about it screwing up icon previews; didn't work. Tried deleting the Quicklook.thumbnailcache; didn't work.
    After reading this post I opened the Console and saw a .mkv file was screwing with quicklookd.
    Deleted it -> problem solved!
    Thanks again!

  • Errors compiling the example.rmi_iiop.ejb.generic_idl example

    Hello,
    I have WebLogic Server 6.0, jdk1.3, Inprise's Visibroker for C++ 4.0 all on Windows
    NT.
    I am following the steps on the examples\rmi_iiop\ejb\generic_idl\package-summary.html
    page in my weblogic directory. The errors occur at step 3g of the section "Compile
    the c++ stubs and client source file ".
    The errors are output by the java compiler. They are:
    C:\bea\wlserver6.0 samples\examples\rmi_iiop\ejb\generic_idl>CL /MD /DTHREAD /no
    logo -DWIN32 /GX /DSTRICT /DALIGNED /DVISIBROKER /DMSVCUSING_BUG /DMSVCNESTEDUS
    ING_BUG -Icpp -Ic:\Inprise\vbroker\include -Ic:\Inprise\vbroker\include\stubs -I
    C:\bea\wlserver6.0\samples -c Trader_c.cpp TraderHome_c.cpp cpp\Client.cpp cpp\j
    avax\ejb\EJBObject_c.cpp cpp\javax\ejb\EJBHome_c.cpp cpp\javax\ejb\RemoveEx_c.cp
    p cpp\javax\ejb\RemoveException_c.cpp cpp\java\lang\_Object_c.cpp cpp\java\lang\
    Exc.cpp cpp\java\lang\_Exception_c.cpp cpp\java\lang\Throwable_c.cpp cpp\java\
    rmi\Remote_c.cpp cpp\java\io\PrintWriter_c.cpp cpp\java\io\PrintStream_c.cpp cpp
    \java\io\Writer_c.cpp cpp\java\io\Serializable_c.cpp cpp\java\io\IOException_c.c
    pp cpp\java\io\IOEx_c.cpp cpp\org\omg\boxedRMI\seq1_wchar_c.cpp
    Trader_c.cpp
    Trader_c.hh(15) : warning C4067: unexpected tokens following pragma directive -
    expected a newline
    cpp\javax/ejb/EJBObject_c.hh(15) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\javax/ejb/EJBObject_c.hh(18) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\javax/ejb/RemoveEx_c.hh(15) : warning C4067: unexpected tokens following pra
    gma directive - expected a newline
    cpp\javax/ejb/RemoveException_c.hh(15) : warning C4067: unexpected tokens follow
    ing pragma directive - expected a newline
    cpp\java/lang/_Exception_c.hh(15) : warning C4067: unexpected tokens following p
    ragma directive - expected a newline
    cpp\java/lang/Throwable_c.hh(15) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\java/lang/Throwable_c.hh(18) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\java/io/PrintWriter_c.hh(15) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\java/io/PrintWriter_c.hh(18) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\java/io/PrintWriter_c.hh(21) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\java/io/Writer_c.hh(15) : warning C4067: unexpected tokens following pragma
    directive - expected a newline
    cpp\java/io/Writer_c.hh(18) : warning C4067: unexpected tokens following pragma
    directive - expected a newline
    cpp\java/io/IOEx_c.hh(15) : warning C4067: unexpected tokens following pragma di
    rective - expected a newline
    cpp\java/io/IOException_c.hh(15) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\java/io/IOException_c.hh(90) : error C2039: 'Exception' : is not a member of
    'lang'
    cpp\java/io/IOException_c.hh(90) : error C2504: 'Exception' : base class undefin
    ed
    cpp\java/io/IOException_c.hh(127) : error C2039: 'OBV_Exception' : is not a memb
    er of 'lang'
    cpp\java/io/IOException_c.hh(127) : error C2504: 'OBV_Exception' : base class un
    defined
    cpp\java/lang/Throwable_c.hh(21) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\java/io/PrintStream_c.hh(15) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\java/io/PrintStream_c.hh(18) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\java/io/PrintStream_c.hh(21) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\java/io/PrintStream_c.hh(22) : fatal error C1083: Cannot open include file:
    'org/omg/boxedRMI/seq1_octet_c.hh': No such file or directory
    TraderHome_c.cpp
    TraderHome_c.hh(15) : warning C4067: unexpected tokens following pragma directiv
    e - expected a newline
    C:\bea\wlserver6.0\samples\examples/rmi_iiop/ejb/generic_idl/Trader_c.hh(15) : w
    arning C4067: unexpected tokens following pragma directive - expected a newline
    cpp\javax/ejb/EJBObject_c.hh(15) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\javax/ejb/EJBObject_c.hh(18) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\javax/ejb/RemoveEx_c.hh(15) : warning C4067: unexpected tokens following pra
    gma directive - expected a newline
    cpp\javax/ejb/RemoveException_c.hh(15) : warning C4067: unexpected tokens follow
    ing pragma directive - expected a newline
    cpp\java/lang/_Exception_c.hh(15) : warning C4067: unexpected tokens following p
    ragma directive - expected a newline
    cpp\java/lang/Throwable_c.hh(15) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\java/lang/Throwable_c.hh(18) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\java/io/PrintWriter_c.hh(15) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\java/io/PrintWriter_c.hh(18) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\java/io/PrintWriter_c.hh(21) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\java/io/Writer_c.hh(15) : warning C4067: unexpected tokens following pragma
    directive - expected a newline
    cpp\java/io/Writer_c.hh(18) : warning C4067: unexpected tokens following pragma
    directive - expected a newline
    cpp\java/io/IOEx_c.hh(15) : warning C4067: unexpected tokens following pragma di
    rective - expected a newline
    cpp\java/io/IOException_c.hh(15) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\java/io/IOException_c.hh(90) : error C2039: 'Exception' : is not a member of
    'lang'
    cpp\java/io/IOException_c.hh(90) : error C2504: 'Exception' : base class undefin
    ed
    cpp\java/io/IOException_c.hh(127) : error C2039: 'OBV_Exception' : is not a memb
    er of 'lang'
    cpp\java/io/IOException_c.hh(127) : error C2504: 'OBV_Exception' : base class un
    defined
    cpp\java/lang/Throwable_c.hh(21) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\java/io/PrintStream_c.hh(15) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\java/io/PrintStream_c.hh(18) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\java/io/PrintStream_c.hh(21) : warning C4067: unexpected tokens following pr
    agma directive - expected a newline
    cpp\java/io/PrintStream_c.hh(22) : fatal error C1083: Cannot open include file:
    'org/omg/boxedRMI/seq1_octet_c.hh': No such file or directory
    Client.cpp
    Have I misapplied some steps? Or, my env has not been set correctly?
    Any help would be greatly appreciated.
    Kevin Wu

    Thanks for your respond, Eduardo.
    Could you explain me in more detail why the C++ code doesn't compile, and how the
    new target in the make file can help us?
    Thanks!
    Eduardo Ceballos <[email protected]> wrote:
    There's nothing wrong with what you've done. The C code just doesn't compile.
    Grab WLS 6.0 SP1 when it is available (shortly). There is a new target in
    the make file that narrows the IDL production by method signature.
    Kevin Wu wrote:
    Hello,
    I have WebLogic Server 6.0, jdk1.3, Inprise's Visibroker for C++ 4.0 allon Windows
    NT.
    I am following the steps on the examples\rmi_iiop\ejb\generic_idl\package-summary.html
    page in my weblogic directory. The errors occur at step 3g of the section"Compile
    the c++ stubs and client source file ".
    The errors are output by the java compiler. They are:
    C:\bea\wlserver6.0 samples\examples\rmi_iiop\ejb\generic_idl>CL /MD /DTHREAD/no
    logo -DWIN32 /GX /DSTRICT /DALIGNED /DVISIBROKER /DMSVCUSING_BUG /DMSVCNESTEDUS
    ING_BUG -Icpp -Ic:\Inprise\vbroker\include -Ic:\Inprise\vbroker\include\stubs-I
    C:\bea\wlserver6.0\samples -c Trader_c.cpp TraderHome_c.cpp cpp\Client.cppcpp\j
    avax\ejb\EJBObject_c.cpp cpp\javax\ejb\EJBHome_c.cpp cpp\javax\ejb\RemoveEx_c.cp
    p cpp\javax\ejb\RemoveException_c.cpp cpp\java\lang\_Object_c.cpp cpp\java\lang\
    Exc.cpp cpp\java\lang\_Exception_c.cpp cpp\java\lang\Throwable_c.cppcpp\java\
    rmi\Remote_c.cpp cpp\java\io\PrintWriter_c.cpp cpp\java\io\PrintStream_c.cppcpp
    \java\io\Writer_c.cpp cpp\java\io\Serializable_c.cpp cpp\java\io\IOException_c.c
    pp cpp\java\io\IOEx_c.cpp cpp\org\omg\boxedRMI\seq1_wchar_c.cpp
    Trader_c.cpp
    Trader_c.hh(15) : warning C4067: unexpected tokens following pragma directive-
    expected a newline
    cpp\javax/ejb/EJBObject_c.hh(15) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\javax/ejb/EJBObject_c.hh(18) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\javax/ejb/RemoveEx_c.hh(15) : warning C4067: unexpected tokens followingpra
    gma directive - expected a newline
    cpp\javax/ejb/RemoveException_c.hh(15) : warning C4067: unexpected tokensfollow
    ing pragma directive - expected a newline
    cpp\java/lang/_Exception_c.hh(15) : warning C4067: unexpected tokens followingp
    ragma directive - expected a newline
    cpp\java/lang/Throwable_c.hh(15) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\java/lang/Throwable_c.hh(18) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\java/io/PrintWriter_c.hh(15) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\java/io/PrintWriter_c.hh(18) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\java/io/PrintWriter_c.hh(21) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\java/io/Writer_c.hh(15) : warning C4067: unexpected tokens followingpragma
    directive - expected a newline
    cpp\java/io/Writer_c.hh(18) : warning C4067: unexpected tokens followingpragma
    directive - expected a newline
    cpp\java/io/IOEx_c.hh(15) : warning C4067: unexpected tokens followingpragma di
    rective - expected a newline
    cpp\java/io/IOException_c.hh(15) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\java/io/IOException_c.hh(90) : error C2039: 'Exception' : is not amember of
    'lang'
    cpp\java/io/IOException_c.hh(90) : error C2504: 'Exception' : base classundefin
    ed
    cpp\java/io/IOException_c.hh(127) : error C2039: 'OBV_Exception' : isnot a memb
    er of 'lang'
    cpp\java/io/IOException_c.hh(127) : error C2504: 'OBV_Exception' : baseclass un
    defined
    cpp\java/lang/Throwable_c.hh(21) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\java/io/PrintStream_c.hh(15) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\java/io/PrintStream_c.hh(18) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\java/io/PrintStream_c.hh(21) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\java/io/PrintStream_c.hh(22) : fatal error C1083: Cannot open includefile:
    'org/omg/boxedRMI/seq1_octet_c.hh': No such file or directory
    TraderHome_c.cpp
    TraderHome_c.hh(15) : warning C4067: unexpected tokens following pragmadirectiv
    e - expected a newline
    C:\bea\wlserver6.0\samples\examples/rmi_iiop/ejb/generic_idl/Trader_c.hh(15): w
    arning C4067: unexpected tokens following pragma directive - expecteda newline
    cpp\javax/ejb/EJBObject_c.hh(15) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\javax/ejb/EJBObject_c.hh(18) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\javax/ejb/RemoveEx_c.hh(15) : warning C4067: unexpected tokens followingpra
    gma directive - expected a newline
    cpp\javax/ejb/RemoveException_c.hh(15) : warning C4067: unexpected tokensfollow
    ing pragma directive - expected a newline
    cpp\java/lang/_Exception_c.hh(15) : warning C4067: unexpected tokens followingp
    ragma directive - expected a newline
    cpp\java/lang/Throwable_c.hh(15) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\java/lang/Throwable_c.hh(18) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\java/io/PrintWriter_c.hh(15) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\java/io/PrintWriter_c.hh(18) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\java/io/PrintWriter_c.hh(21) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\java/io/Writer_c.hh(15) : warning C4067: unexpected tokens followingpragma
    directive - expected a newline
    cpp\java/io/Writer_c.hh(18) : warning C4067: unexpected tokens followingpragma
    directive - expected a newline
    cpp\java/io/IOEx_c.hh(15) : warning C4067: unexpected tokens followingpragma di
    rective - expected a newline
    cpp\java/io/IOException_c.hh(15) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\java/io/IOException_c.hh(90) : error C2039: 'Exception' : is not amember of
    'lang'
    cpp\java/io/IOException_c.hh(90) : error C2504: 'Exception' : base classundefin
    ed
    cpp\java/io/IOException_c.hh(127) : error C2039: 'OBV_Exception' : isnot a memb
    er of 'lang'
    cpp\java/io/IOException_c.hh(127) : error C2504: 'OBV_Exception' : baseclass un
    defined
    cpp\java/lang/Throwable_c.hh(21) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\java/io/PrintStream_c.hh(15) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\java/io/PrintStream_c.hh(18) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\java/io/PrintStream_c.hh(21) : warning C4067: unexpected tokens followingpr
    agma directive - expected a newline
    cpp\java/io/PrintStream_c.hh(22) : fatal error C1083: Cannot open includefile:
    'org/omg/boxedRMI/seq1_octet_c.hh': No such file or directory
    Client.cpp
    Have I misapplied some steps? Or, my env has not been set correctly?
    Any help would be greatly appreciated.
    Kevin Wu

  • Tree table doesn't update the data for checkboxes properly

    Hi All,
    I'm trying to use tomahawk tree table component to render a tree column of items along with checkboxes in other columns. Note that all the other columns except tree column are generated dynamically inside backing bean and checkboxes too added to the column dynamically.
    All works fine until it comes to the valuechangelistener.Inside valuechangelistener if try to fetch the component id from the event, it doesn't return the correct id and instead always return the id that corresponds to the last node of tree.
    Has anyone successfully used tree table to display input components? or any workaround my problem would be much appreciated.
    The code where I'm adding my dynamic columns as well as checkboxes is as below.
    for (int i = 0; i < roleNames.size(); i++) {
    HtmlSimpleColumn column = new HtmlSimpleColumn();
    htmlTree.getChildren().add(column);
    // Create header
    HtmlOutputText header = new HtmlOutputText();
    header.setValue(roleNames.get(i));
    column.setHeader(header);
                   ValueExpression valueExpression = FacesContext
    .getCurrentInstance().getApplication()
    .getExpressionFactory()
    .createValueExpression(
    FacesContext.getCurrentInstance().getELContext(),
    "#{treeItem.name}",
    Object.class);
    // Create check box
    HtmlSelectBooleanCheckbox checkbox = new HtmlSelectBooleanCheckbox();
                   // add the hidden input elements
                   HtmlInputHidden input = new HtmlInputHidden();
                   HtmlInputHidden input1 = new HtmlInputHidden();
                   // Bind changeRolePresent method in to listen to the
    // role permission change
                   checkbox.setImmediate(true);
    Class<?>[] parms = new Class[] { ValueChangeEvent.class };
    System.out.println("Adding value change listener to permission grid");
    MethodExpression valueChangeListener = FacesContext
    .getCurrentInstance().getApplication()
    .getExpressionFactory().createMethodExpression(
    FacesContext.getCurrentInstance()
    .getELContext(),
    "#{customTreeBean.changeRolePermission}",
    String.class, parms);
    checkbox
    .addValueChangeListener(new MethodExpressionValueChangeListener(
    valueChangeListener));
    input.setValueExpression("value", valueExpression);
                        input1.setValue(roleNames.get(i));
                   valueExpression = app
    .getExpressionFactory()
    .createValueExpression(
    FacesContext.getCurrentInstance().getELContext(),
    "#{treeItem.roleDetailsList["+i+"].selectedRole}",
    Object.class);
    checkbox.setValueExpression("value", valueExpression);
                   //checkbox.setOnclick("selectAll(this)");
                   checkbox.getChildren().add(input);
                   checkbox.getChildren().add(input1);
    column.getChildren().add(checkbox);
    In above code there will be four columns added dynamically and for each column a checkbox component is being added here. Rest JSF takes care to create checkboxes for each row of tree. But one thing that I noticed while viewing source that JSF is creating duplicate names for checkboxes in a batch of four (So for say if I had 3 rows, every row of checkboxes had same set of four ID's assigned, like ID1, ID2, ID3, ID4)
    Please help,
    Umesh

    Hi!!!
    Could you see this document : http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=BUG&p_id=3970326
    It describes the exactly bug, but there isn't solution...

  • LV Help doesn't open the examples

    The little buttons in LabVIEW Help which are supposed to open a relevant Example do not work on my machine. I suspect this is because I didn't install LV in the recommended spot. Mine's at D:\Labview. Is there a ini file or something I can edit to fix this?
    Richard

    Yes, the HELP directory with 17MB of files is there. Help isn't the problem, it's that Help doesn't open up the Examples as it should - when you click the little buttons (see attached jpeg). I've installed LabVIEW at D:\LabVIEW, so maybe there's a pointer missing?
    Richard
    Attachments:
    exHelp.jpg ‏55 KB

  • The 'Load Details' screen doesn't show the rows for 'Loaded'

    Hi All,
    May I request for inputs on the following issue please. Request iSetup Development to confirm if this is the intended feature.
    Customer complains that when they view the details of a Load, the 'Loaded' column doesn't show any numbers (rows).
    Customer expects to see the numbers for this column. Why this is left blank?
    I can see that even the documentation shows the blank column.
    Oracle® iSetup User's Guide Release 12.1 Part No. E12899-04
    CHAPTER 5: Migrations
    Viewing a Load (Page 5-35)
    The above page shows the Screenshot of 'Load Details'. The 'Loaded' column doesn't show any details. It is blank.
    Request for confirmation.
    Regards,
    Ramana.

    Hi there 
    Welcome to the HP Support Forums! It is a great place to find the help you need, both from other users, HP experts and other support personnel. I understand that you wish to enable the reveal password icon for your system. I am happy to help. It really depends on which version of the Operating system you are running, because this sort of thing is normally controlled using the Group Policy Editor. That tool is not a part of a Home edition, you would need the Pro version or higher to have that. Assuming that you do have a pro edition or higher, then these may be of help to you:5 Ways to Access Local Group Policy Editor on Windows 10 - isunshare.comDisable or Enable the new Password Reveal Button feature in Windows 8 - windowsclub.com Unfortunately the version of Windows 10 I have installed beside me is the home edition as well, so I cannot access this, to verify, so let me know if that works for you.

  • My dell inspiron 15r finds my iphone but it doesn't trigger the box for me to give the security number to tether

    When I connect my iPhone 4 to my Dell inspiron 15R the laptop recognises the phone as a personal hotspot but it does not trigger the box for me to input the code to allow tethering.  Why does this happen when my old iPhone 4 (which Apple have just replaced) did produce the box and tethering afterwards was automatic?
    Thanks in advance, Colin from Leicester, England.

    ME TOO.  NOW MY IPHONE 6 PLUS IS SAME LIKE YOU.
    iphone is diabled- connect to iTunes because i forget passcode.
    i cannot connect iTunes because it's always asking to enter passcode on iphone.
    So, i cannot make restore my iphone 6+. And then, I cann't erase "device" in icloud.
    My iphone is new. No icloud. didn't connect to itune backage.
    That's why I try to connect iTunes but it need to enter passcode.
    So, my iphone just keep "iphone is disbled-connect to iTunes".
    IPHONE 6 PLUS

  • I can't compile the examples from the precomiler

    Hi
    I'm trying to work with the precomp on the Linux platform. But it will not work.
    When I try to use the example and I type
    proc demo_proc.mk I get a lot of errors starting at line 3 which is an comment. What can I do to make this work???????

    this is aporblem with path .. just go add one more include path ... in my installation it is /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/
    hth
    Nirav

  • Virtualbox doesn't compiles "vboxdrv" module for 2.6.24 kernel

    I installed Virtualbox, however I cannot launch any OS because the vboxdrv module doesn't exists for the latest kernel (I found another module for the 2.6.23 kernel); so the GUI says that I should execute this:
    /etc/init.d/vboxdrv setup
    However that file doesn't exists. I already tried to uninstall virtualbox and reinstalling from pacman, but still no luck.
    What should I do? Is this a bug?
    Thanks in advance.

    I think that's where the confusion  is.  When I got the package from AUR it had:
    -rw-r--r-- 1 ralvez users  217 2008-01-08 15:58 interfaces
    -rw-r--r-- 1 ralvez users 3596 2008-01-20 11:38 PKGBUILD
    -rwx------ 1 ralvez users  174 2007-12-30 04:23 vbox_build_module
    -rw-r--r-- 1 ralvez users 2384 2007-12-30 07:39 vbox.install
    -rw-r--r-- 1 ralvez users 2179 2007-12-30 07:31 vboxnet.patch
    So the patch file is there (in bold text) ... and is not executable is a text file. That's why I'm asking if I have to do something with it to make the whole thing work.
    Since it is just a plain text file if I try to use it as an upgrade patch it fails with error:
    loading package data... error: error while reading package vboxnet.patch: Unrecognized archive format: Invalid or incomplete multibyte or wide character
    error: failed to add target 'vboxnet.patch'
    So, I'm stuck. I see no way to solve the problem.
    R.
    Edit: On re-reading your post I wonder what package from core are you referring to? I was under the impression that when we use AUR we are "fetching" files not from core but form the AUR source.
    Am I wrong?
    Last edited by ralvez (2008-02-13 22:50:31)

  • Compiler fails to compile the file for iOS

    I have been on porting a flash project on the iOS platform. At first I was able to convert small files to iOS without any error. But when i started compile a big file (fla of around 5-6 MB and 100-120 .as files) for the same it gave me an error.
    Error creating files.
    ERROR: formatting double using non-ecmascript rules.
    Please if anyone knows why this happens please let me know. I have been behind this file for a while now.
    Thanks in advance.

    I will try excluding .as files one by one...but i cant put the source code as an attachment because its too big and its belongs to my firm.
    I know it makes your job very difficult, Apologies for that. But if you have any other suggestions that I can try please let me know.
    I really need an expert opionion.
    Thanks in anticipation.

  • [SOLVED] Tmux doesn't parse the configuration for ~/.tmux.conf

    Similar to the issue found here, although since the solution posted does not work, I have nothing to go off of.  I did a trace on tmux, and it's reading the configuration file (also, even a removed ~/.tmux.conf doesn't have it read /etc/tmux.conf), but it isn't actually executing the commands I put in there.  I can source configuration manually inside tmux, so it's a minor annoyance at best.  Permissions are 644, it's in where it's supposed to read, but for some reason it just isn't parsing. 
    My tmux configuration right now:
    set-option prefix C-a
    set status-fg brightgreen
    set status-right "#[fg=brightwhite] (>^,^)><(^,^)><(^,^)><(^,^<) #[fg=brightgreen] #T #[fg=brightwhite] <(^,^<*>^,^)> #[fg=brightwhite] %F %T"
    set status-right-length 100
    set status-interval 1
    set status-bg blue
    bind C-a select-window -t !
    bind C-n select-window -t +
    bind C-p select-window -t -
    bind C-Space select-window -t +
    bind Space select-window -t +
    I've also killed the server and removed the socket and directory at /tmp/tmux-$(id -u)/ to no avail including a quick reboot.  I've also tried starting with tmux -f ~/.tmux.conf, also to no avail.  Am I missing something?
    Last edited by minozake (2012-08-25 14:55:18)

    I figured it out.  First off, I needed to use set -g in order to get the options set globally, otherwise they would be thrown away.  For all the keys I wanted to rebind, I needed to unbind them first.  All in all, I finally figured it out, but I don't remember actually needing to unbind the keys before rebinding them.

  • I don't remember my security questions and it doesn't give the option for reset.

    I do not remember my security questions and so I can not do in app purchases. Does anyone know how to reset them because it doesn't give me the option of resetting them.

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (114414)

  • Why does a specific website say validating and doesn't open the site for me?

    why does a specific website say validating and doesnt open the site?

    My Safari also has a hiccup. My ISP (comcast) helped me by suggesting I try the same task using a different browser (firefox). I had both installed, and firefox completed the task smoothly with no issues. I was told the problem was on my end and my safari browser was most likely flawed. I cannot find the procedure to uninstall & reinstall the Safari app. My iMac came with 2 discs (os & bundled apps) But the ability to choose Safari only, for this task remains illusive. Any suggestions or fixes to repair a glitch infected Safari will be appreciated. 

  • Can't compile the examples

    I followed the instructions here: http://labs.adobe.com/wiki/index.php/Proscenium
    Trying to run it throws the following error:
    http://grab.by/b06b
    Compiler settings are also good, fp version is 11, swf version 13.

    I believe setup FP 11 correctly following this link: http://priyeshsheth.wordpress.com/2011/10/05/how-to-use-flash-player-11-air-3-with-flash-p rofessional-cs5-5/
    Is there anything missing? Is there a more official how to setup proscenium and FP11/Air 3.0 guide from Adobe?

Maybe you are looking for