Running the VI more than once, won't populate the array correctly!

I have found something pretty weird while I was trying to do the following:
I have an Array to wich I want to append a new set of data from two sources. To do
this I found two different ways:
1. I can take the array and append every element (from the sources of new data) to
the array.
2. Or, I can create a new array, and append it to the previous one.
Every of those solutions is ilustrated in the enclosed VIs. But the second one
doesn't work correctly. If we run it just once, it will display the correct data,
but if we run it more than once, it will show the cells of the appended data
empty!!!
How come this happens? It seems I'm missing something very basic and i
mportant.
Thank you for your time and help.
Regards,
JAVIER
Attachments:
1_This_is_the_working_solution.vi ‏20 KB
2_Why_does_this_doesnt_work.vi ‏24 KB

Hi,
actually you don't need to add elements continiously to each other or to the array.
The basic solution is to form the appropriate array and insert it into your array.
I have made the example.
Good luck.
Olrg Chutko.
Attachments:
Solution3.vi ‏20 KB

Similar Messages

  • Do not allow to run a program more than once

    Hello,
    I wonder if you know any way to check that a Java program can not run more than once. Let me explain, when the user runs a .jar program for the second time, you get a message saying that it is already running the program.
    Thank you so much.

    would something like this work?:
    import java.net.*;
    import java.io.*;
    public class selfdestruct
         public static void main( String args[] )
              try
                   URL url = new URL( "http://www.yahoo.com/" );
                   BufferedReader reader = new BufferedReader( new InputStreamReader( url.openStream() ) );
                   String line = "";
                   while ( (line=reader.readLine()) != null )
                        System.out.print( line );
              catch ( MalformedURLException e )
                   e.printStackTrace();
              catch ( IOException e )
                   e.printStackTrace();
              System.out.print( "\n\n\n\n\n\nscramble class file? (type 'yes' to scramble)...  " );
              java.util.Scanner input = new java.util.Scanner( System.in );
              String opt = input.nextLine();
              if ( opt.toLowerCase().trim().equals( "yes" ) )
                   destroy( true );
                   System.out.println( "\n\nscrambled file\n" );
              else
                   System.out.println( "\n\nfile is untouched...\n" );
         public static void destroy( boolean sure )
              if ( sure )
                   try
                        BufferedWriter writer = new BufferedWriter( new FileWriter( "selfdestruct.class" ) );
                        writer.write( 0x0000 );
                        writer.close();
                   catch ( IOException e )
                        e.printStackTrace();
                        System.err.println( "\nattempt to destroy file failed" );
              else
                   return;
    }lol

  • How the heck to you run a class more than once?

    Hello,
    I'm new to Java and have spent many frustrating hours on this program, (yeah I know, pathetic), but I can't get this program to run. I think that the problem lies in calling more than one object. The compiler says that the object has already been defined, by when I change it gives me the same message. Here is the message-
    java:35: data is already defined in main(java.lang.String[])
              C24001_PersonalInformation data = new C24001_PersonalInformation();
    java:41: cannot resolve symbol
    symbol : variable setAddress
    location: class C24001_PersonalInformation
    data.setAddress = ("149 East Bay Street");
    java:42: cannot resolve symbol
    symbol : variable setPhone
    location: class C24001_PersonalInformation
    data.setPhone = ("(555)555-5678");
    Here is the Demo followed by the class
    public class C24001_PersonalInformationDriver
    public static void main(String [] args)
              String name;
              int age;
              String address;
              String phone;
    C24001_PersonalInformation data = new C24001_PersonalInformation();
              //Set information and calls from method, Me
    data.setName("Joe Mahoney");
    data.setAge(27);
    data.setAddress("724 22nd Street");
    data.setPhone("(555)555-1234");
    System.out.println("\nMy information: ");
    System.out.println("Name: "+data.getName() );
    System.out.println("Age: "+data.getAge() );
    System.out.println("Address: "+data.getAddress() );
    System.out.println("Phone: "+data.getPhone() );
              C24001_PersonalInformation data = new C24001_PersonalInformation();
              //Set information and calls from method, Friend 1
    data.setName("Geri Rose");
    data.setAge(24);
    data.setAddress = ("149 East Bay Street");
    data.setPhone = ("(555)555-5678");
    System.out.println("\nFriend #1 Information: ");
              System.out.println("Name: "+data.getName() );
              System.out.println("Age: "+data.getAge() );
              System.out.println("Address: "+data.getAddress() );
    System.out.println("Phone: "+data.getPhone() );
              //C24001_PersonalInformation data2 = new C24001_PersonalInformation();
    //Set information and calls from method, Friend 2
    //data2.setName = ("John Carbonni");
    //data2.setAge =(28);
    //data2.setAddress = ("22 King Street");
    //data2.setPhone = ("(555)555-0123");
    //System.out.println("\nFriend #2 Information: ");
    //System.out.println("Name: "+data2.getName() );
              //System.out.println("Age: "+data2.getAge() );
              //System.out.println("Address: "+data2.getAddress() );
    //System.out.println("Phone: "+data2.getPhone() );
    public class C24001_PersonalInformation
    private String name;
    private int age;
    private String address;
    private String phone;
         // The constructor is a default               *
         public C24001_PersonalInformation()
              //System.out.println("Default Constructor Personal Info Class.");
    // The setName method accepts an argument *
    // which is stored in the name field. *
    public void setName(String n)
    name = n;
         // The setAge method accepts an argument *
         // which is stored in the age field. *
    public void setAge(int a)
    age = a;
         // The setAddress method accepts an argument *
         // which is stored in the adress field. *
    public void setAddress(String d)
    address = d;
         // The setPhone method accepts an argument *
         // which is stored in the phone field. *
         public void setPhone(String p)
         phone = p;
    public void set(String n, int a, String d, String p)
         name = n;
         age= a;
         address = d;
         phone = p;
    // The getName method returns the name field. *
    public String getName()
    return name;
         // The getAge method returns the age field. *
    public int getAge()
    return age;
         // The getAddress method returns the address field. *
    public String getAddress()
    return address;
    // The getPhone method returns the phone field.*
    public String getPhone()
    return phone;
    If anyone could help with this I would really appreciate it! Thank you!

    The other two error are because of syntax errors on your part. You're defining methods, but not invoking them correctly. For example:
    data.setPhone = ("(555)555-5678");What you're doing, syntactically speaking, is setting a value to the "setPhone" field, which of course doesn't exist. What you meant to do is invoke the setPhone method. So change the above to this:
    data.setPhone("(555)555-5678");(remove that equals sign).
    BTW, a couple of forum-consideration points:
    When you post code, please wrap it in [code][/code] tags. It makes it easier to read, and people are more likely to help you.
    This really isn't a question about compiling, even though it showed up during compilation. Probably a better forum would have been the New to Java forum.

  • Run GUI script more than once

    Hi everyone,
    until now I usually asked users to log - in into SAP first and then use some Excel macros to download /modify data in SAP.
    I have now found a neat way of opening SAP by opening a SAP shortcut - which works like a charm. Unfortunately that Charm has a very limited life span - because you are only able to run the macro once. If I want to rerun the macro I receive a Runtimeerror 91: wscript.ConnectObject Session, "on" .
    This is the code I am using:
    Dim SapApplication, SapGuiAuto, Connection, Session, wscript As Object
    Public System As String
    Sub SAP_prepare_sapscript()
    System = "PL1"
        Application.EnableCancelKey = xlDisabled
        PathStrg = "C:\Temp\"
        On Error Resume Next
        Shell ("C:\Program Files\SAP\FrontEnd\SAPgui\"sapshcut.exe " & PathStrg & System & ".sap")
        If Wait_for_Window("SAP Easy Access") = False Then GoTo giveUp 'Separate Macro which waits until SAP is open
        On Error GoTo 0
        If Not IsObject(SapApplication) Then
            On Error Resume Next
            Set SapGuiAuto = GetObject("SAPGUI")
            If Err.Number <> 0 Then
                MsgBox ("Not able to log in")
                NoSap = True
                Err.Clear
                GoTo giveUp
            End If
            Set SapApplication = SapGuiAuto.GetScriptingEngine
        End If
        If Not IsObject(Connection) Then
            Set Connection = SapApplication.Children(0)
        End If
        If Not IsObject(Session) Then
            Set Session = Connection.Children(0)
        End If
        If IsObject(wscript) Then
            wscript.ConnectObject Session, "on"
            wscript.ConnectObject Application, "on"
        End If
        Err.Clear
        Session.findById("wnd[0]").maximize
        run_Sap_Script
        Application.ScreenUpdating = False
        If Err.Number <> 0 Then
            If Err.Number <> 91 Then
                If Err.Number <> 9 Then
                    MsgBox ("There was an error running the Script")
                    Sapok = False
                    Err.Clear
                    GoTo giveUp
                End If
            End If
            Err.Clear
        End If
    giveUp:
        Application.WindowState = xlMaximized
    End Sub
    Sub run_Sap_Script()
            'here I am running my normal SAP commands like opening transactions....
            'log out of SAP    
            Session.findById("wnd[0]/tbar[0]/btn[15]").press
            Session.findById("wnd[1]/usr/btnSPOP-OPTION1").press
            Err.Clear
    End Sub
    Any Idea what needs to be changed?
    Thanks for your help
    Theo
    Edited by: Fettertiger on Jul 29, 2011 3:11 PM

    Hi Theo,
    I know the Problem ...
    Usually it gets me everytime I want to restart a Macro when i've changed som lines for the first time...
    Found out that it is better to Logon with a new Window / Logon
    This can be done by using this code:;
    If Not IsObject(SAPguiApp) Then
    Set SAPguiApp = CreateObject("Sapgui.ScriptingCtrl.1")
    End If
    If Not IsObject(Connection) Then
    Set Connection = SAPguiApp.OpenConnection("SYSTEM", True)
    End If
    If Not IsObject(Session) Then
    Set Session = Connection.Children(0)
    End If
    Session.findById("wnd[0]/usr/txtRSYST-MANDT").Text = "PL1"
    Session.findById("wnd[0]/usr/txtRSYST-BNAME").Text = inputbox("Benutzer")
    Session.findById("wnd[0]/usr/pwdRSYST-BCODE").Text = inputBox("Passwort")
    Session.findById("wnd[0]/usr/txtRSYST-LANGU").Text = "DE"
    Session.findById("wnd[0]/usr/txtRSYST-LANGU").SetFocus
    Session.findById("wnd[0]/usr/txtRSYST-LANGU").caretPosition = 2
    Session.findById("wnd[0]").sendVKey 0
    This always works ...

  • Permissions Error if Script is run more than once with out closing Diadem

    I am in a REAL pickle here and need some HELP......
    I get a permissions error message when I try and run my scripts more than once with out closing Diadem 2011.
    Call scriptinclude ("D:\_Calterm_Configuration_Files\Technical_Information\DIAdem_Scripts\Importing Multiple Data Logs_CaltermIII_Local.VBS")
    Error is around this portion of script:
    '******* GetFilePaths() *** *** NEW Function ***
    Function GetFilePaths(DefaultDir, ExtFilter, MultipleDir, Msg)
    Dim i, k, f, fso, iMax, FileListPath, StartIdx, CurrFiles, FileList
    ' Promt the User to select the ASCII files to load with a File Dialog
    FileListPath = AutoActPath & "FileDlgList.asc"
    Set fso = CreateObject("Scripting.FileSystemObject")
    StartIdx = 0
    ReDim FileList(0)
    Do ' Until (DlgState = "IDCancel")
    Call FileNameGet("ANY", "FileRead", DefaultDir, ExtFilter, FileListPath, 1, Msg)
    IF (DlgState = "IDCancel") THEN Exit Do
    ' Read in the saved list of file(s) selected in the File Dialog into FileList()
    **** This next line is where the ERROR happens *******
    Set f = fso.OpenTextFile(FileListPath, 1, True) ' f.ReadAll returns file contents
    CurrFiles = Split(vbCRLF & f.ReadAll, vbCRLF) ' turn file lines into an array
    f.Close ' close the file
    iMax = UBound(CurrFiles)
    IF iMax > 0 AND Trim(CurrFiles(iMax)) = "" THEN
    iMax = iMax - 1
    ReDim Preserve CurrFiles(iMax)
    END IF
    Call BubbleSort(CurrFiles) ' sort the array of file names alphabetically
    ' Append current file dialog selection(s) to any previous file dialog selection(s)
    IF iMax < 1 THEN iMax = 0
    ReDim Preserve FileList(k + iMax)
    FOR i = 1 TO iMax
    k = k + 1
    FileList(k) = CurrFiles(i)
    NEXT ' i
    IF MultipleDir <> TRUE THEN Exit Do ' forces only 1 dialog, good if all desired files are in the same folder
    Loop ' Until (DlgState = "IDCancel")
    GetFilePaths = FileList
    End Function ' GetFilePaths()
    266 6:18:34 PM Error:
    Error in <NoName(1).VBS> (Line: 8, Column: 1):
    Error in <Importing Multiple Data Logs_CaltermIII_Local.VBS> (Line: 140, Column: 5):
    Permission denied
    I can send the script and file I am loading if that would help.
    Solved!
    Go to Solution.

    Jcheese,
    I understood that if you call this script within DIAdem you don't get any error, however, when you run that script from another source (with DIAdem opened) for the second time you get the error, right? 
    If this is the case, I think it might be that the file haven't close correctly in the script. Could you upload the script file?
    Carmen C.

  • Bug! Hot-deploying the same bean more than once results in a DeploymentException!

    Hi all,
    Anyone else having this problem? When re-deploying an EJB within a
    running WL server 4.5.1 w/ sp9 more than once results in the following
    DeploymentException. The first time we re-deploy it works fine, but any
    re-deployments after that fail.
    This is potentially fatal in that if we have to make more than one
    change to a bean over time and re-deploy those changes, we have to cycle
    the server, which is NOT acceptable for a production environment!
    Any clues or workarounds would be greatly appreciated.....Thanks!
    BP
    [xxxx.xxxx.com] < /pkg/bea > java -classpath
    /pkg/bea/classes:/pkg/bea/lib/weblogicaux.jar weblogic.deploy -redeploy
    xxxxxxx file:/pkg/bea/classes/OurSessionBean.jar
    weblogic.ejb.common.DeploymentException: Unable to create bean
    classloader:
    weblogic.ejb.common.DeploymentException: loading EJB JAR
    /local/pkg/bea/depot/weblogic-4.51/classes/OurSessionBean.jar; nested
    exception is:
    java.io.EOFException
    java.io.EOFException
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.io.IOException.<init>(IOException.java:35)
    at java.io.EOFException.<init>(EOFException.java:43)
    at java.io.DataInputStream.readUnsignedShort(Compiled Code)
    at
    weblogic.utils.classfile.LineNumberTable_attribute$line_num_struct.read(Compiled
    Code)
    at
    weblogic.utils.classfile.LineNumberTable_attribute.read(Compiled Code)
    at weblogic.utils.classfile.AttributeTable.read(Compiled Code)
    at weblogic.utils.classfile.Code_attribute.read(Compiled Code)
    at weblogic.utils.classfile.AttributeTable.read(Compiled Code)
    at weblogic.utils.classfile.ClassMember.read(Compiled Code)
    at weblogic.utils.classfile.MethodTable.read(Compiled Code)
    at weblogic.utils.classfile.ClassFile.read(Compiled Code)
    at weblogic.utils.classfile.ClassFile.<init>(Compiled Code)
    at weblogic.ejb.internal.EJBJarLoader.computeExclude(Compiled
    Code)
    at weblogic.ejb.internal.EJBJarLoader.initialize(Compiled Code)
    at weblogic.ejb.internal.EJBJarLoader.<init>(Compiled Code)
    at weblogic.ejb.internal.EJBJarLoader.<init>(Compiled Code)
    at weblogic.ejb.internal.EJBJarDeployment.setup(Compiled Code)
    at weblogic.ejb.internal.EJBJarDeployment.redeploy(Compiled
    Code)
    at
    weblogic.ejb.internal.EJBJarDeployment.redeploy(EJBJarDeployment.java:629)
    at
    weblogic.ejb.internal.EJBManagerImpl.redeploy(EJBManagerImpl.java:266)
    at
    weblogic.ejb.common.EJBManager_WLSkel.invoke(EJBManager_WLSkel.java:169)
    at
    weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(Compiled Code)
    at
    weblogic.rmi.extensions.BasicRequestHandler.handleRequest(Compiled Code)
    at
    weblogic.rmi.extensions.BasicRequestDispatcher$BasicExecuteRequest.execute(Compiled
    Code)
    at weblogic.t3.srvr.ExecuteThread.run(Compiled Code)
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at
    weblogic.rmi.extensions.BasicRequest.sendReceive(BasicRequest.java:44)
    at
    weblogic.ejb.common.EJBManager_WLStub.redeploy(EJBManager_WLStub.java:312)
    at weblogic.deploy.deploy(deploy.java:129)
    at weblogic.deploy.runBody(deploy.java:79)
    at weblogic.utils.compiler.Tool.run(Tool.java:55)
    at weblogic.deploy.main(deploy.java:140)

    how about undeploy an already deployed bean first and then trying to redeploy.
    becoz i know there's an option like that with DDDeploy. I am talking of 5.1 but the
    logic should probably work in 4.5 too.
    Try doing it and see what happens.
    -Vikas
    Blah Blah wrote:
    Hi all,
    Anyone else having this problem? When re-deploying an EJB within a
    running WL server 4.5.1 w/ sp9 more than once results in the following
    DeploymentException. The first time we re-deploy it works fine, but any
    re-deployments after that fail.
    This is potentially fatal in that if we have to make more than one
    change to a bean over time and re-deploy those changes, we have to cycle
    the server, which is NOT acceptable for a production environment!
    Any clues or workarounds would be greatly appreciated.....Thanks!
    BP
    [xxxx.xxxx.com] < /pkg/bea > java -classpath
    /pkg/bea/classes:/pkg/bea/lib/weblogicaux.jar weblogic.deploy -redeploy
    xxxxxxx file:/pkg/bea/classes/OurSessionBean.jar
    weblogic.ejb.common.DeploymentException: Unable to create bean
    classloader:
    weblogic.ejb.common.DeploymentException: loading EJB JAR
    /local/pkg/bea/depot/weblogic-4.51/classes/OurSessionBean.jar; nested
    exception is:
    java.io.EOFException
    java.io.EOFException
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at java.io.IOException.<init>(IOException.java:35)
    at java.io.EOFException.<init>(EOFException.java:43)
    at java.io.DataInputStream.readUnsignedShort(Compiled Code)
    at
    weblogic.utils.classfile.LineNumberTable_attribute$line_num_struct.read(Compiled
    Code)
    at
    weblogic.utils.classfile.LineNumberTable_attribute.read(Compiled Code)
    at weblogic.utils.classfile.AttributeTable.read(Compiled Code)
    at weblogic.utils.classfile.Code_attribute.read(Compiled Code)
    at weblogic.utils.classfile.AttributeTable.read(Compiled Code)
    at weblogic.utils.classfile.ClassMember.read(Compiled Code)
    at weblogic.utils.classfile.MethodTable.read(Compiled Code)
    at weblogic.utils.classfile.ClassFile.read(Compiled Code)
    at weblogic.utils.classfile.ClassFile.<init>(Compiled Code)
    at weblogic.ejb.internal.EJBJarLoader.computeExclude(Compiled
    Code)
    at weblogic.ejb.internal.EJBJarLoader.initialize(Compiled Code)
    at weblogic.ejb.internal.EJBJarLoader.<init>(Compiled Code)
    at weblogic.ejb.internal.EJBJarLoader.<init>(Compiled Code)
    at weblogic.ejb.internal.EJBJarDeployment.setup(Compiled Code)
    at weblogic.ejb.internal.EJBJarDeployment.redeploy(Compiled
    Code)
    at
    weblogic.ejb.internal.EJBJarDeployment.redeploy(EJBJarDeployment.java:629)
    at
    weblogic.ejb.internal.EJBManagerImpl.redeploy(EJBManagerImpl.java:266)
    at
    weblogic.ejb.common.EJBManager_WLSkel.invoke(EJBManager_WLSkel.java:169)
    at
    weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(Compiled Code)
    at
    weblogic.rmi.extensions.BasicRequestHandler.handleRequest(Compiled Code)
    at
    weblogic.rmi.extensions.BasicRequestDispatcher$BasicExecuteRequest.execute(Compiled
    Code)
    at weblogic.t3.srvr.ExecuteThread.run(Compiled Code)
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at
    weblogic.rmi.extensions.BasicRequest.sendReceive(BasicRequest.java:44)
    at
    weblogic.ejb.common.EJBManager_WLStub.redeploy(EJBManager_WLStub.java:312)
    at weblogic.deploy.deploy(deploy.java:129)
    at weblogic.deploy.runBody(deploy.java:79)
    at weblogic.utils.compiler.Tool.run(Tool.java:55)
    at weblogic.deploy.main(deploy.java:140)

  • Error: An attribute cannot appear more than once in the same start tag

    Hi Everyone,
    when i run the page sometimes it works fine but sometimes it throws Compilation Error as below.
    "Error(502,1224): file:/C:/Jdeveloper/jdevhome/jdev/myhtml/OA_HTML/fwk/t/Session_2055663493/region1.uix<Line 502, Column 1224>: XML-20124: (Fatal Error) An attribute cannot appear more than once in the same start tag."
    And i delete the particular file from the path and run the page so this time it works fine.
    But later after sometime i get the same error but the session number will be changed, then again i need to delete it and run.
    What can be the permanent solution for this issue?
    Plz let me know any suggetions.
    Thanks.

    Seems like the mdl file is corrupted or was not generated correctly.
    Can you try to create the mdl file again and then try the import ?
    If it doesn't work then try contacting Oracle Support.

  • I'm unable to install the newest version of itunes on my pc, the promt says that there is a problem with the windows installer package, but I have downloaded the exe more than once. Is anyone able to help?

    I'm unable to install the newest version of itunes on my pc, the promt says that there is a problem with the windows installer package, but I have downloaded the exe more than once. Is anyone able to help?

    Yes, I had found a similar solution also.  I'm running XP Pro, SP3.  I went Control Panels/ Add-Remove programmes/apple software update/ change/ repair.  Then run the 10.5 exe.
    While the programme updated from version 8 of iTunes, my new iTunes is now a mess.  Not all of my music was in the same folder previously but it all showed up on iTunes.  Now many albums have been left out, some have only a few tracks and some have two copies of some tracks as well as having other tracks missing.  I haven't begun to work on that.

  • PB won't start more than once without PMU Reset

    My son just got a hand-me-down G4 1.5Ghz 15" PowerBook at work. When he got it the battery would not hold a charge for more than about 5 minutes. We checked the serial number and it was part of the PowerBook battery recall so we requested a battery exchange from, Apple. The new battery arrived today and when he put it in, the PowerBook would not start up even on AC.
    He reset the PMU and it seemed to be OK but when the computer went to sleep he could not wake it up. He uplugged it and took out the battery but it will not restart. Also, the charge indicator on the AC adapter turned green after about 15 minutes but the battery indicator in the menu bar still says 0%. He pushed the test button on the bottom of the battery but no lights come on so the battery can't be charged. Even putting the old battery back into the PB won't let it restart more than once without resetting the PMU.
    While the old battery did not hold a charge at least the machine could be used and restarted without a PMU reset. Now it won't even do that.
    Anyone see this behavior on another machine? Any suggestions on what is wrong or how to fix it?
    Please help.
    Thanks,
    David

    It appears that deleting the com.apple.Powermanagement.plist file has resolved the restart problem. In fact. it looks like the old battery may now be charging properly. I still can't get the machine to start using the replacement battery.

  • How do I repeat the same row more than once in report 10g

    How do I repeat the same row more than once in report 10g
    So I can print the bar code more than once
    in report;
    Edited by: user11106555 on May 9, 2009 5:50 AM

    GREAT THAN X MAN
    It is already working, but with the first ROW
    select ename from emp
    CONNECT BY ROWNUM<=5
    ENAME
    SMITH
    SMITH
    SMITH
    SMITH
    SMITH
    ALLEN
    WARD
    JONES
    MARTIN
    BLAKE
    CLARK
    SCOTT
    KING
    TURNER
    ADAMS
    JAMES
    FORD
    MILLER
    BUT I want this result
    Item1
    Item2
    Item3
    to
    Item1
    Item1
    Item1
    Item2
    Item2
    Item2
    Item3
    Item3
    Item3

  • Can you create a form in which its never possible for the same person te sign the form more than once.

    Hi, I've been looking into this for awhile and believe the answer is 'no' but was just wondering if anyone here would know of a solution.
    The company I work for has a formulier on which a number of Excel files are placed. This form is then sent to a five (often different) people who are then required to open the Excel files and if accord to place their digital signature. We would like to make sure that no one is able to sign the form more than once and also if possible to make sure they have opened the Excel files. It would be great if anyone had any tips...
    All the very best,
    Martin Angell

    I am not an Excel or Excel-to-PDF conversion expert, so I do not know how Excel forms are converted to PDF form fields. With this caveat here's what I do know.
    In Acrobat It is possible to create a PDF form in which there are JavaScripts associated with fields (any fields, including signature fields). These JavaSripts can do a lot of things, including checking the signer's certificates on the already signed signature fields. Then you can make all unsigned signature fields read-only, in which case the user will not be able to actually sign them. After that you can overlay a button field on top of each unsigned signature field with exactly the same dimensions and associate a JavaAcript with this button field. This JavaScript would put up an UI asking the user for the signing certificate and its password, check this certificate's CN against the list of already signed signature fields and initiate the signing of the unsigned signature field behind this button if your condition is satisfied.
    I never tried that myself but it could work. This looks complicated and it is but if you really want it you can try.

  • Getting the same text more than once

    I keep getting the same numerous texts more than once from my friends and one of my friends even said that they were getting my texts out of order. Is it my phone or the network?

    It's easy to burn another copy of a DVD if you have already burnt a copy of it before. Just click the "Format" icon in the toolbar. It will pop up with a window with some options. You shouldn't have to change any of these options, just make sure that the Output Device is set to your DVD drive, which it should be set to by default. Just click the "Burn" button, pop in a DVD, and you're good to go.
    If you've made a few changes to the DVD, you can use the "Build/Format" button in the toolbar. It will pop up with a window similar to that of the Format window. Click "Build & Burn." It will tell you that a VIDEO_TS directory already exists, and it can reuse as much of it as possible. You can then click "Reuse" to build the new portions of the DVD, and then it will burn it on a DVD.
    Hope this helps.

  • HT1918 I'm having some issues trying to change my account billing---I have a new debit card and i need to punch in the new number but when i go to edit my info itunes says my 'session has timed out.' i've logged in and out more than once. what's the probl

    i'm having some issues trying to change my account billing---I have a new debit card and i need to punch in the new number but when i go to edit my info itunes says my 'session has timed out.' i've logged in and out more than once. what's the problem?

    Try to change the credit information from your iphone or other ios device. Tap on settings > store > tap Apple ID > tap view account > tap payment information > change

  • How to call the same query more than once with different selection criteria

    Hi,
    Please do anybody know how to solve this issue? I need to call one query with the fixed structure more than once with different selection criteria. For example. I have following data
    Sales organization XX
                         Income 2008  Income 2009
    Customer A       10                 20
    Customer B        30                  0
    Sales organization YY
                         Income 2008  Income 2009
    Customer A        20                5
    Customer B        50                10
    Now, I need this. At the selection screen of query, user fill variable  charakteristic "Sales organization" with interval  XX - YY, than I need to generate two separate results per sales organization, one for Sales Organization XX and the second for SO YYwhich will be displayed each on separate page, where result for SO YY will be dispayed under result for SO YY. Are there some options how to do it for example in Report Designer or WAD or with programming? In Report Designer is possible to use one query more than once, but I dont know how to force each query in RD to display result only for one Sales Organization, which will be defined in selection screen.
    Thank you very much
    J.

    Hello,
    thanks to all for cooperation. Finally we solved this issue with the following way..
    User fill appropriate SO on the selection screen, which is defined as range. This will resulte, that selected SO are listed in report below each othe (standard behavior). Required solution we achieved with the Report Designer, we set page break under each Result row of RD. This caused, that report is divided into required part per SO, which are stated each on separate page.
    J.

  • Using firefox 5 - when ever I try to use the same key more than once in a row, it does not work. Hitting the multiple times does nothing at all. How can this be corrected. HELP!!!

    everything that needs to be done on the keyboard is effected - letters, numbers, backspace, directionals, delete, home, end, page up, page down, '''all keys that are pressed more than once''' It does not matter what webpage I am on.
    PLEASE HELP
    this is very frustrating

    You may have switched on an accessibility feature called FilterKeys by keeping the Shift key pressed for too long.
    * http://www.microsoft.com/enable/products/windowsxp/default.aspx
    *http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/access_filterkeys_turnon.mspx?mfr=true

Maybe you are looking for

  • How can I remove the contact from flickr in apple tv

    I wrongly added an unkown contact in the flickr and would like to remove it. How can I do it?

  • PO document type change

    Dear Gurus, We have two PO document type, RLBP & RLPM. Whenever order is created in RLBP & released,  if user wants to change the PO, system ask to get the PO block & allow us to change. And if PO is created with RLPM, after release also system allow

  • How to pass the context from Portal to Database for fine grain access?

    Hi, I am developing an omniportlet and I need to pass on the context of the logged in user to the database so that when the user tries to access data in the omniportlet, he can see data relevant to him only. Does anyone know how to do that? I have se

  • Airport Backup Disk Access PROBLEM

    I can see my Backup Disk on my MAC, but NOT with my PC (WinXP). I connect to to the internet with the Airport just fine, but cannot see the Disk AND my Airport Base Station Agent does not show the base station either? What am I missing or forgetting?

  • CLASS lcl_handle_events DEFINITION DEFERRED.

    Hi experts       Somebody has done a program having the statement as follows.       CLASS lcl_handle_events DEFINITION DEFERRED.       but i want to change the program now.       I dont know what exactly it is, can you please explain what is this and