Problems with a closed loop

I will briefly describe what i am doing, but my problem is not with any hardware it is with programming iterative loops in labVIEW.
What i am trying to do is get the input for an activex aircraft instrument. The attitude data is coming from an inertial sensor connected directly to com1. The activeX instrument that is causing problems is a turn coordinator. Which, in real life, includes a ball in a curved tube surrounded by a viscous liquid, sort of like a spirit level. I need to determine the position of this virtual ball based on the real acceleration data. My initial thoughts were, and would be possible in another language, start with an initial ball position. Using this initial position and body axis acceleration calculate th
e tangential acceleration present on the ball and from this calculate the distance travelled in a small period of time. This short distance would then be added to the inital position to find the new position. The procedure would then start over with this new position. However i cannot just join the wires in labVIEW up like this as i get an error saying there is a closed loop that cannot be executed.
Can anyone tell me how to construct a loop that uses an inital value which is then used in a calculation to update that inital value? Please find attached my very poor attempt at this VI. I hope things will be clearer by looking at my first attempt, and someone will be able to tell me what i am doing wrong
Phil
Attachments:
TCtest.vi ‏102 KB

Hello Laura,
Basically what you'll want to do to get stated is to register your ActiveX object with the operating system. If the supplier's documentation of how to register is not complete, then I would suggest you take a look at the knowledgebase discussing manual registration of ActiveX objects.  
Once the object is registered, you can open an ActiveX reference using the Automation Open VI on the block diagram. The registered object will show up as a selectable class in the class browser when you right click on the automation refnum. Now with the automation reference, you can use property and invoke nodes to interface with your remote control device. For an overview of ActiveX use in LabVIEW, please take a look at the linked application note. I hope this information is useful for you!
Mike D.
National Instruments
Applications Engineer

Similar Messages

  • Problem with non-stop looping

    This file has been supposedly changed from As2 to As3. It seems as if it used to stop when I first got it. But the links didn't work. When I followed troubleshooting protocols, it started looping non-stop.
    Please help. I can't seem to attach the flv and the action script files. All I get from the output window is "Fonts should be embedded for any text that may be edited at runtime, other than text with the "Use Device Fonts" setting. Use the Text > Font Embedding command to embed fonts."
    Please help. I paid a coder to switch the file from as2 to as3 and this is what he gave me...

    contact that coder and let them know the problem.  if it's a problem with their code, they should fix it without charge.

  • Problems with safari closing itself.

    I don't know what happens , but sometimes i open a heavy site and it close itself. is that normal ?

    There is a rumor going around the apple Inc. for improving this errors with its software upgrade 2.0.1. That the company Apple is already testing the first maintenance and security updates for version 2.0 of its i-Phone Software that aim to improve performance and fix a number of outstanding bugs. We do know by now that the testing began prior to the launch of device software 2.0 and the i-Phone 3G on July 11th. It further tells that apple is taking into consideration about the constant safari web browser crashes and among others things that were giving problems to the I-Phone customers/owners.
    But however its important to mentioned, Since testing has remained internal, it's unclear exactly what areas of the software the updates will target. Some users, however, report that iPhone Software 2.0 effectively crippled the camera applications on both their original iPhone and new iPhone 3G. Separately, a number of other users are reporting a variety of problems with the accelerometer on their new i-Phone 3Gs. These include jerky responses, unintentional landscape shifts, or no response at all after the handset sleeps.
    Message was edited by: John-macOwner

  • Problem with lid closed mode

    So as far as i know, to get the computer to run in lid closed mode you press f7 until you get video mirroring, the second mode i believe, close the display, then wake the computer with the external mouse or keyboard. I've done this, but almost as soon as i wake the computer, it goes back to sleep again.
    How do i fix this??
    Is it a problem for I'm using a windows keyboard, but i wouldn't think that could be it.

    Also, if you haven't already done this, make sure that Bluetooth is enabled and that you "Allow Bluetooth devices to wake this computer" (Systpref/Bluetooth/Settings)

  • PROBLEMS With my FOR LOOP , PLEASE HELP!!!

    Hello,
    I have the following event action button method. It has a loop itterates 10 times. I have an imagePanel of a map with an image of a car over the map. The car image moves with the method moveCar();
    MY PROBLEM: even though i have my moveCar() method inside the for loop, it doesnt move the car on the map until the loop is finished executing and the car image just jumps over. Can somebody pleae tell me why it does this and how to fix it?????????? thanks so much       public ActionListener startActionListener() {
             ActionListener listener = new ActionListener() {
             public void actionPerformed(ActionEvent event) {
             for (int i=0; i<10; i++) {
                             imagePanel.moveCar();
                        try {
                             Thread.sleep(1000); //waits approx. 1 second
                        } catch (InterruptedException e) {
                             System.exit(0);
               return listener;
         }thanks!

    Well, the easiest way is like this:
    public ActionListener startActionListener()
         ActionListener listener = new ActionListener()
              public void actionPerformed(ActionEvent event)
                   new Thread(new Runnable()
                        public void run()
                             for (int i=0; i<10; i++)
                                  imagePanel.moveCar();
                                  imagePanel.repaint();
                             try
                                  Thread.sleep(1000); //waits approx. 1 second
                             catch (InterruptedException e)
                                  //System.exit(0);
                   }).start();
              return listener;
    }I simply converted your loop to run asynchronously and added a call to repaint after the move. You would be better off to use a Swing Timer instead, but I will leave that to you.

  • Problem with unwanted endless loop while reading a file

    Hi everyone,
    i got stuck with a class, that reads all words out of an input file, counts each file's frequency and prints out a list with words and frequency.
    Everything works fine as long as i use a In.read() method included in a example class provided by the book i use to learn java. But this method will not be allowed to use in the exam, even if the whole lecture at uni based on it. Well, not that much a problem, if i would be able to replace it by a FileReader or something like this.
    Problem: The test file (input.txt) contains a phrase like "This is a test text to count the words included in the test text". Shoul return all unique words and their frequency. As my pc crashed everytime i started the class, i found out that my failure has to come from the readWord method. It reads the first word in an endless loop (which seems to be the reason for the crashs) and is not willing to continue reading the next word after it returned the first to the main method. Instead it resets and starts from the beginning. I stripped of any additional processing methods and included a "system.out.println()" in order to narrow down the failure.
    I really don't understand this, because read() reads character after character and it is added to the buffer as planed and i don't see any reason why it resets to 0. I can use the same code (apart from the file reader and exception handling stuff and the "!= -1" check) with the In.java-class and it works.
    Here comes the code. Any help would be greatly appreciated.
    Greg
    import java.io.*;
    public class WordCount {
          * @param args
         public static void main(String[] args) throws IOException {
              //reads first word out of the input file
              String w = readWord();
              while(w != null){
                   //test output to verify anything is read
                   System.out.println(w);
                   //next word to read
                   w = readWord();
              //close input stream
              System.in.close();
         static String readWord() throws IOException{
              FileReader eingabestrom = new FileReader("input.txt");
              StringBuffer word = new StringBuffer();
              int gelesen;
              /*read first character
               * -1 if no text in the input file. In this case,
               * both while loops are skipped and "null" is returned
              do gelesen = eingabestrom.read();
              //skip blanks
              while(gelesen != -1 && !Character.isLetter( (char) gelesen));
              //read all characters of a word and append it to the "word" stringbuffer
              while(gelesen != -1 && Character.isLetter( (char) gelesen)){
                   word.append( (char) gelesen);
                   gelesen = eingabestrom.read();
              //if read was successful, convert buffer to string and return it to main.
              if(word.length() > 0){
                   return word.toString();
              //if read was unsuccessful, return null
              }else{
                   return null;
    }

    Thank you! :)
    Works perfectly, i do understand most of it and i discovered the little mistake that prevented it from starting ;)
    Set<Map.Entry><String,Integer>> set = tm.entrySet();Needs less than half the code i used before :)
    Thx again
    Greg

  • Problems with a while loop within a method... (please help so I can sleep)

    Crud, I keep getting the wrong outputs for the reverseArray. I keep getting "9 7 5 7 9" instead of "9 7 5 3 1". Can you guys figure it out? T.I.A (been trying to figure this prog out for quite some time now)
    * AWT Sample application
    * @author Weili Guan
    * @version 1999999999.2541a 04/02/26
    public class ArrayMethods{
       private static int counter, counter2, ndx, checker, sum, a, size, zero;
       private static int length;
       private static int [] output2, output3, reverse, array;
       private static double output;
       private static double dblsum, dblchecker, average;
       public static void main(String[] args) {
          //int
          //int [] reverse;
          System.out.println("Testing with array with the values [1,3,5,7,9]");
          size = 5;
          array = new int [size];
          reverse = new int [size];
          array[0] = 1;
          array[1] = 3;
          array[2] = 5;
          array[3] = 7;
          array[4] = 9;
          System.out.println("Testing with sumArray...");
          output = sumArray(array);
          System.out.println("Sum of the array: " + sum);
          System.out.println();
          System.out.println("Testing with countArray...");
          output = countArray(array);
          System.out.println("Sum of the elements : " + checker);
          System.out.println();
          System.out.println("Testing with averageArray...");
          output = averageArray(array);
          System.out.println("The average of the array : " + average);
          System.out.println();
          System.out.println("Testing with reverseArray...");
          output2 = reverseArray(array);
          output3 = reverseArray(reverse);
          //System.out.print(reverse[4]);
          System.out.print("The reverse of the array : ");
          for(ndx = 0; ndx < array.length; ndx++){
             System.out.print(reverse[ndx] + " ");
       private ArrayMethods(){
       public static int sumArray(int[] array){
          checker = 0;
          ndx = 0;
          counter = 0;
          sum = 0;
          while(counter < array.length){
             if (array[ndx] > 0){
                checker++;
             counter++;
          if(array.length > 0 && checker == array.length){
             while(ndx < array.length){
                sum += array[ndx];
                ndx++;
             return sum;
          else{
             sum = 0;
             return sum;
        /*Computes the sum of the elements of an int array. A null input, or a
        zero-length array are summed to zero.
        Parameters:
            array - an array of ints to be summed.
        Returns:
            The sum of the elements.*/
       public static int countArray(int[] array){
          checker = 0;
          ndx = 0;
          counter = 0;
          sum = 0;
          while(counter < array.length){
             if(array[ndx] > 0 && array[ndx] != 0){
                checker++;
             counter++;
          return checker;
        /*Computes the count of elements in an int array. The count of a
        null reference is taken to be zero.
        Parameters:
            array - an array of ints to be counted.
        Returns:
            The count of the elements.*/
       public static double averageArray(int[] array){
          dblchecker = 0;
          ndx = 0;
          counter = 0;
          dblsum = 0;
          while(counter < array.length){
             if(array[ndx] > 0){
                dblchecker++;
             counter++;
          if(array.length > 0 && checker == array.length){
             while(ndx < array.length){
                dblsum += array[ndx];
                ndx++;
             average = dblsum / dblchecker;
             return (int) average;
          else{
             average = 0;
             return average;
        /*Computes the average of the elements of an int array. A null input,
        or a zero-length array are averaged to zero.
        Parameters:
            array - an array of ints to be averaged.
        Returns:
            The average of the elements.*/
       public static int[] reverseArray(int[] array){
          ndx = 0;
          counter = 0;
          counter2 = 0;
          if(array.length == 0){
             array[0] = 0;
             return array;
          else{
                //reverse = array;
             while(ndx <= size - 1){
                   reverse[ndx] = array[4 - counter];
                   counter++;
                   ndx++;
                   System.out.print("H ");
          return reverse;
        /*Returns a new array with the same elements as the input array, but
        in reversed order. In the event the input is a null reference, a
        null reference is returned. In the event the input is a zero-length array,
        the same reference is returned, rather than a new one.
        Parameters:
            array - an array of ints to be reversed.
        Returns:
            A reference to the new array.*/
    }

    What was the original question? I thought it was
    getting the desired output, " 9 7 5 3 1."
    He didn't ask for improving the while loop or the
    reverseArray method, did he?
    By removing "output3 = reverseArray(reverse):," you
    get the desired output.Okay, cranky-pants. Your solution provides the OP with the desired output. However, it only addresses the symptom rather than the underlying problem. If you'd bother yourself to look at the overall design, you might see that hard-coding magic numbers and returning static arrays as the result of reversing an array passed as an argument probably isn't such a great idea. That's why I attempted to help by providing a complete, working example of a method that "reverses" an int[].
    Removing everything and providing "System.out.println("9 7 5 3 1");" gets him the desired output as well, but (like your solution) does nothing to address the logic problems inherent in the method itself and the class as a whole.

  • Problem with PL/SQL loop

    Hi,
    Here is what I am trying to do. The SQL query retrurns only one record but the loop is execuitng twice. The count returns 2. What could be the problem? Thanks for your help.
    type t_name is record(id number, c_name varchar2(100));
    type t_names is ref cursor return t_name
    Procedure returnVal()
    v_t_names t_names;
    count number;
    BEGIN
    count : = 0;
    OPEN v_t_names for select user_id, u_name from tableA WHERE dept_id = 100;
    LOOP
    FETCH v_t_names into t_name;
    Exit when v_t_names%not found;
    count := count + 1
    END LOOP
    END returnVal;
    ---------------------------------------------------------------------

    After fixing the million and one errors with your example code, I turned it into the following similar so I could run it:
    declare
      type t_name is record(id number, c_name varchar2(100));
      type t_names is ref cursor return t_name;
      v_t_names t_names;
      v_t_name_rec t_name;
      l_count number;
    BEGIN
      l_count := 0;
      OPEN v_t_names for select 1, 'Fred' from dual;
      LOOP
        FETCH v_t_names into v_t_name_rec;
        Exit when v_t_names%notfound;
        l_count := l_count + 1;
      END LOOP;
      dbms_output.put_line(l_count);
    END;
    /the output was: 1.
    The loop does get executed twice - the first time through it does a fetch, finds a record, so doesn't satisfy the EXIT criteria, and updates l_count, and finishes the first loop through. It must then go back to the top of the loop, and fetch another record. However, because there was only 1 record, the exit criteria is now met, so the procedure now jumps out of the loop without updating l_count. So, the loop has been entered twice.
    Does that explain things?
    Message was edited by:
    Boneist
    One thought: Since your code was so obviously an example you made up to illustrate your problem, can you guarentee that the "increment the counter" step was AFTER the "exit when cursor%notfound" step in the original?
    My guess is that it's before it, so that the count goes up regardless of the cursor having fetched a row or not.

  • Problem with Message-Mapping: Loop over Elements possible?

    Hi all,
    I want do create a Message-Mapping for an IDoc-to-File Scenario. In the Source Structure there are some Elements which can appear more than once (1..unbounded). I need a mechanism which loops over these elements and search for specified values. From the Element which contains an element with this specified value the mapping should write a value in the target structure.
    Here a simple example (source structure) for better understanding:
    <root>
       <invoice>
          <number> 10 </number>
          <sum> 200.00 </sum>
       </invoice>
       <invoice>
          <number> 20 </number>
          <sum> 150.00 </sum>
       </invoice>
       <invoice>
          <number> 30 </number>
          <sum> 120.00 </sum>
       </invoice>
    </root>
    Now the duty of the Mapping should be to search in the elements <invoice> for the number 30. And then the sum of the invoice with the number 30 should be written in a field of the target structure.
    I tried it out with a constant togehter with an equalsS-function and an ifWithoutElse-function, but it is working only then, if the invoice with the number 30 has the first position in the root context.
    Can anybody help me? Thanks
    With kind regards
    Christopher

    Hi,
    Write a UDF to sum the required values and map to target node.
    See while writing the UDF select the type as queue.
    number -- removecontext-UDF targetnode
    sum----removecontext--/
    number abd sum or the two inputs
    in UDF
    int nsum = 0;
    for(int i;i < number.length;i++){
      if number(i).equals("30") then
         nsum = nsum + valueOf(sum(i));
    result.addValue(nsum); // convert the nsum into string
    Regsrds
    Chilla

  • Problem with a while loop.

    I'm very new to java so please bear with me!!!
    This is my code:
    import java.io.*;
    public class IfExample2
        public static void main (String[] args) throws IOException
         // Read in a number
         BufferedReader br = new BufferedReader(
                         new InputStreamReader (System.in));
         System.out.print ("Enter a number between 0 and 10 inclusive: ");
         String temp = br.readLine();
         double x = Double.parseDouble(temp);
         // check user input
         if (x > 10)
             System.out.println("The number you entered is too high");
              System.out.println("Please re-enter the number");
         else if (x < 0)
             System.out.println("The number you entered is too low");
              System.out.println("Please re-enter the number");
         else
             System.out.println("The number you entered is " + x);
    }Basically I want, if the number entered is too high or too low I want it to ask the user to re-enter the number, I want to use a while loop but I'm not sure where or how to use it, please help!

    while ( condition ) {
        // stuff here
    }More on while: [http://java.sun.com/docs/books/tutorial/java/nutsandbolts/while.html|http://java.sun.com/docs/books/tutorial/java/nutsandbolts/while.html]
    Edited by: oscarjustesen on Oct 7, 2008 5:40 PM
    Edited - fixed link

  • Problem with Do-While Loop in a Binary Search

    The idea of the program is to randomly generate 10 integers, store them in an array then use a binary search to find the values at each position of the array in 10 or less steps.
    My problem is that the do-while loopisn't doing what it should be and I can't see the problem :S
    Thanks in advance.
    Se�n.
    int counter=0, guess=500, MIN=0, MAX=0;
    int arr[] = new int[10];
              for(int i=0; i<10; i++) {
          int ranNum= ( (int)(Math.random()*1000)+1 );
          arr=ranNum;
         System.out.println(ranNum);
         for(int j=0; j<10; j++) {
              do{
                   if(guess>arr[j]){
                        guess=MAX;
                        guess=guess/2;
                   else if(guess<arr[j]){
                        guess=MIN;
                        MAX=MIN*2;
    guess=((MAX-MIN)/2)+MIN;
                   else
                        guess=arr[j];
    }while(guess!=arr[j]);
              System.out.println("The number at position "+j+" in the array is :"+arr[j]);
    //resets the values each time the do-while loops breaks
              MIN=0;
              MAX=0;
              guess=500;

    Looks toe like MAX and MIN are always going to be zero.

  • Problem with After Effects looping.

    What I actually want on after effects and i cant archieve it is looping. I make
    a banner for my site, how it is supposed to work is, run once the animations I made(appearing
    the text and moving it arround) and rain at the same time. So basically after the text appears
    and its animation stops, I want it to keep raining without re-appering the text, so looping the whole
    swf. So my problem is that I cant make one part of the movie loop without having the rest looping.
    If there is any other software than adobe dont be shy to post it. However what I thought was do
    this in adobe flash actionscript or make 2 seperated swf which when the one finishes the other runs and the
    other is a non stop loop.

    However what I thought was do this in adobe flash actionscript or make 2 seperated swf which when the one finishes the other runs and theother is a non stop loop.
    Nah! Nobody and really nobody would do it this way. All you need is a simple goToAndPlay() in Flash to loop stuff inside the same movie, reusing the same items over and over. You have some serious reading up to do on Flash. Creating the clips in AE is really the least of your worries...
    Mylenium

  • A problem with Threads and loops.

    Hi, I have some code that needs to be constantly running, like while(true)
          //code here
    }However, the code just checks to see if the user has input anything (and then if the user has, it goes to do some other stuff) so I don't need it constantly running and hogging up 98% of the CPU. So I made my class (which has the method that needs to be looped, call it ClassA) implement Runnable. Then I just added the method which needed to be looped into the public void run()
    I have another class which creates an instance of the above class (call it ClassB), and the main(String[] args) is in there.
    public static void main(String[] args)
              ClassA test = new ClassA();
              Thread thread = new Thread(test.getInstanceOfClassA());
              thread.start();
              while(true)
                           //I do not know what to put here
                   try
                        thread.sleep(100);
                   catch(InterruptedException iex)
         }However, the thread only calls run() once,(duh...) but I can't think of away to get it to run - sleep - run -sleep forever. Can someone help me?

    Hi, I have some code that needs to be constantly
    running, like while(true)
    //code here
    }However, the code just checks to see if the user has
    input anything (and then if the user has, it goes to
    do some other stuff) so I don't need it constantly
    running and hogging up 98% of the CPU. Where does the user input come from. Are you reading from an InputStream? If so, then your loop will be blocked anyway when reading from the InputStream until data is available. During that time, the loop will not consume processor cycles.
    public static void main(String[] args)
              ClassA test = new ClassA();
    Thread thread = new Thread(test.getInstanceOfClassA());I have never seen this idiom. If ClassA instanceof Runnable, you simply write new Thread(test).
              thread.start();
              while(true)
    //I do not know what to put
    do not know what to put here
                   try
                        thread.sleep(100);
                   catch(InterruptedException iex)
         }However, the thread only calls run() once,(duh...)Yeah, why would you want to call it more than once given that you have an infinite loop in ClassA.run()?
    Harald.
    Java Text Crunching: http://www.ebi.ac.uk/Rebholz-srv/whatizit/software

  • Problems with Safari closing after update, anyone else?

    Help!! Ever since the latest update while I'm on Safari, it will just close at any given time. It opens up as soon as I touch the icon but just shuts down whenever it wants.

    You are not alone. You can look through this lengthy list of discussions and see if you can find anything that works for you.
    https://discussions.apple.com/search.jspa?peopleEnabled=true&userID=&containerTy pe=&container=&spotlight=true&q=safari+crashes+in+ios+5
    You can also try the standard recommended fixes. This is one that I use every time Safari crashes. It buys me some time - until the next crash. It could be an hour - could be six hours - no real rhyme or reason to it with my iPad.
    Go to Settings>Safari>Clear History, Cookies and Data. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Thee other basic steps that you can try ....
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    Quit Safari and restart. Go to the home screen first by tapping the home button. Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.

  • Having problems with do.while loops

    import javax.swing.*;
    import java.text.DecimalFormat;
    public class Assign32437 {
      public static void main(String[] args) {  // METHOD
       String strCost, strResVal, strUseLife, strDepre;
       double useLife = 0, deprec=0, Cost=0,resVal=0,accumulatedDepreciation = 0;
       double yearlyDepreciation = 0,Carryingvalue = 0;
       int repeat = 0, year = 0;
       DecimalFormat myFormat = new DecimalFormat("$0.00");
       JTextArea outputTextArea= new JTextArea();
         outputTextArea.append("\t\t Depreciation Schedule\n\n" + " End of year\t"
                               + "Cost\t" + "Yearly deprecation\t" +
                               "Accumulated Depreciation\t" + "Carrying value\n");
       do{   //ENTER COST OF ITEM
           strCost = JOptionPane.showInputDialog("Enter cost (>0):");
           Cost = Double.parseDouble(strCost);
        while (Cost < 0);
        do {       //ENTER ESTIMATED VALUE
           strResVal = JOptionPane.showInputDialog(
               "Enter residual value(>=0 and <cost:)");
           resVal = Double.parseDouble(strResVal);
        while (resVal < 0 || resVal > Cost);
        do {       //ENTER USEFUL LIFE
           strUseLife = JOptionPane.showInputDialog("Enter useful life(>0):");
           useLife = Double.parseDouble(strUseLife);
        while (useLife < 0);
        for (year = 0; year <= useLife; year++)
           deprec = (Cost - resVal) / (useLife);
           accumulatedDepreciation = (yearlyDepreciation * year); //CALCULATIONS
           Carryingvalue = (Cost - accumulatedDepreciation);
           outputTextArea.append(year + "\t" + Cost + "\t" + deprec + "\t" +
           accumulatedDepreciation + "\t" + Carryingvalue + "\n");
         JOptionPane.showMessageDialog(null, outputTextArea);
         repeat = JOptionPane.showConfirmDialog(null, "DO YOU WANT TO CONTINUE?\n",
                                                "Continue?",
                                                JOptionPane.YES_NO_OPTION);
         while(repeat==0);
       System.exit(0);
          }

    no error msgs. im not asking someone to do it for me. just looking for some pointers...
    when i run my code i am not being asked for more then one year ie: no loop is occuring. so i enter information and on my outputTextArea.append(year + "\t" + Cost + "\t" + deprec + "\t" +
           accumulatedDepreciation + "\t" + Carryingvalue + "\n"); displays one years totals like 30 times

Maybe you are looking for

  • Duplicating an existing form

    How do I duplicate an existing form?  We want to keep the current form but just recreate it and make some changes to it. 

  • CS3 and Linux fileserver

    Hi, Last week I installed the upgrade to CS3 (Dutch) on my Mac (OSX10.4.10). All my files are located at a Linux file server in my network. I make a connection to my fileserver with SMB. Also my websites are located at the file server: Server > Websi

  • Performance Point Services as a Service

    Hi, Is it possible to consume a report/Dashboard/scorecard/etc created in PPS to be consumed from a third party (Custom Application). I mean can the pps be exposed as a service which can be consumed by other UI Applications (not just through SharePoi

  • CS6 - cannot save due to program error

    I CAN NOT SAVE ANYTHING IN PHOTOSHOP CS6. KEEP GETTING THE MESSAGE "CAN NOT SAVE (TITLE & TYPE OF FILE) BECAUSE OF PROGRAM ERROR. THIS HAPPEND ALL OF A SUDDEN. I'VE BEEN USING THIS FOR ABOUT THREE MONTHS. THIS EVEN HAPPENS WITH OLD COMPLETEF FILES. C

  • Btrfs + flashcache?

    I use to have flashcache working a couple weeks ago. I switched to btrfs, but I don't think it works with flashcache because I get badboys like these: Jul 04 23:55:49 echelon kernel: [<ffffffffa044f4f4>] ? btrfs_merge_delayed_refs+0x214/0x400 [btrfs]