Lagging problem

Hello everyone
I just have a quick question.
I made an application that displays an array of cards in a JFrame with three buttons under it. One button perfectly shuffles the deck(I won't get into what I mean by that unless someone is interested) the other randomly shuffles the deck and the third sets the deck back in its original order. Everything works fine except when i push the button that sets the deck, it lags for a good 10 seconds before it works. Anyone have any ideas to why?
Thanks in advance

Kieth,
Thanks for the reply and the how to ask questions page.
I posted the wrong code, thats why the putDeckInOrder method didnt exist
import java.applet.Applet;
import java.applet.*;
import java.awt.event.*;
import java.awt.*;
import java.awt.image.*;
import javax.swing.border.*;
import javax.swing.*;
import java.io.*;
import java.net.*;
import javax.imageio.*;
import java.util.Random;
public class CardName extends Applet implements ActionListener
     BufferedImage [] deck = new BufferedImage[52];
     BufferedImage img = null;
     JButton shuffleB;
     JPanel cards;
     JLabel test;
     BufferedImage [] finalDeck = new BufferedImage[52];
    public CardName()
         setArray();
    public void setArray()
         for (int i = 0; i<52; i++)
              getImage(i+1);
              deck[i] = img;
         for (int i = 0; i<52; i++)
              getImage(i+1);
              finalDeck[i] = img;
   public void getImage(int count)
         try
         if (count == 1)
              img = ImageIO.read(new File("as.gif"));
         if (count == 2)
              img = ImageIO.read(new File("2s.gif"));
         if (count == 3)
              img = ImageIO.read(new File("3s.gif"));
         if (count == 4)
              img = ImageIO.read(new File("4s.gif"));
         if (count == 5)
              img = ImageIO.read(new File("5s.gif"));
         if (count == 6)
              img = ImageIO.read(new File("6s.gif"));
         if (count == 7)
              img = ImageIO.read(new File("7s.gif"));
         if (count == 8)
              img = ImageIO.read(new File("8s.gif"));
         if (count == 9)
              img = ImageIO.read(new File("9s.gif"));
         if (count == 10)
              img = ImageIO.read(new File("10s.gif"));
         if (count == 11)
              img = ImageIO.read(new File("js.gif"));
         if (count == 12)
              img = ImageIO.read(new File("qs.gif"));
         if (count == 13)
              img = ImageIO.read(new File("ks.gif"));
         if (count == 14)
              img = ImageIO.read(new File("ad.gif"));
         if (count == 15)
              img = ImageIO.read(new File("2d.gif"));
         if (count == 16)
              img = ImageIO.read(new File("3d.gif"));
         if (count == 17)
              img = ImageIO.read(new File("4d.gif"));
         if (count == 18)
              img = ImageIO.read(new File("5d.gif"));
         if (count == 19)
              img = ImageIO.read(new File("6d.gif"));
         if (count == 20)
              img = ImageIO.read(new File("7d.gif"));
         if (count == 21)
              img = ImageIO.read(new File("8d.gif"));
         if (count == 22)
              img = ImageIO.read(new File("9d.gif"));
         if (count == 23)
              img = ImageIO.read(new File("10d.gif"));
         if (count == 24)
              img = ImageIO.read(new File("jd.gif"));
         if (count == 25)
              img = ImageIO.read(new File("qd.gif"));
         if (count == 26)
              img = ImageIO.read(new File("kd.gif"));
          if (count == 27)
              img = ImageIO.read(new File("ah.gif"));
         if (count == 28)
              img = ImageIO.read(new File("2h.gif"));
         if (count == 29)
              img = ImageIO.read(new File("3h.gif"));
         if (count == 30)
              img = ImageIO.read(new File("4h.gif"));
         if (count == 31)
              img = ImageIO.read(new File("5h.gif"));
         if (count == 32)
              img = ImageIO.read(new File("6h.gif"));
         if (count == 33)
              img = ImageIO.read(new File("7h.gif"));
         if (count == 34)
              img = ImageIO.read(new File("8h.gif"));
         if (count == 35)
              img = ImageIO.read(new File("9h.gif"));
         if (count == 36)
              img = ImageIO.read(new File("10h.gif"));
         if (count == 37)
              img = ImageIO.read(new File("jh.gif"));
         if (count == 38)
              img = ImageIO.read(new File("qh.gif"));
         if (count == 39)
              img = ImageIO.read(new File("kh.gif"));
         if (count == 40)
              img = ImageIO.read(new File("ac.gif"));
         if (count == 41)
              img = ImageIO.read(new File("2c.gif"));
         if (count == 42)
              img = ImageIO.read(new File("3c.gif"));
         if (count == 43)
              img = ImageIO.read(new File("4c.gif"));
         if (count == 44)
              img = ImageIO.read(new File("5c.gif"));
         if (count == 45)
              img = ImageIO.read(new File("6c.gif"));
         if (count == 46)
              img = ImageIO.read(new File("7c.gif"));
         if (count == 47)
              img = ImageIO.read(new File("8c.gif"));
         if (count == 48)
              img = ImageIO.read(new File("9c.gif"));
         if (count == 49)
              img = ImageIO.read(new File("10c.gif"));
         if (count == 50)
              img = ImageIO.read(new File("jc.gif"));
         if (count == 51)
              img = ImageIO.read(new File("qc.gif"));
         if (count == 52)
              img = ImageIO.read(new File("kc.gif"));
catch (IOException e)     {}
         public JPanel theCards()
         JPanel forButton = new JPanel(new BorderLayout());
         forButton.setBackground(Color.GREEN);
         cards = new JPanel(new GridLayout(2, 26));
         cards.setBackground(Color.GREEN);
         JPanel bottom = new JPanel();
         bottom.setOpaque(false);
         shuffleB = new JButton("Perfect Shuffle");
         shuffleB.setActionCommand("shuffle");
         shuffleB.addActionListener(this);
         for (int k = 0; k <52; k++)
              Icon warnIcon = new ImageIcon(deck[k]);
                  JLabel images = new JLabel(warnIcon);
                  images.setOpaque(false);
              cards.add(images);
         forButton.add(cards, "North");
         bottom.add(test = new JLabel("0"));
         bottom.add(shuffleB);
         JButton randomShuffleB = new JButton("Random Shuffle");
         randomShuffleB.setActionCommand("random");
         randomShuffleB.addActionListener(this);         
         JButton putDeckInOrderB = new JButton("Put Deck In Order");
         putDeckInOrderB.setActionCommand("order");
         putDeckInOrderB.addActionListener(this);
         bottom.add(randomShuffleB);
         bottom.add(putDeckInOrderB);
         forButton.add(bottom, "South");
         cards.setBackground(Color.GREEN);
          return forButton;
        void randomShuffle()
             Random rgen = new Random();  // Random number generator
          //--- Shuffle by exchanging each element randomly
          BufferedImage [] temp2 = new BufferedImage [52];
          temp2 = deck;
          for (int i=0; i<temp2.length; i++)
                  int randomPosition = rgen.nextInt(temp2.length);
              BufferedImage temp = temp2;
               temp2[i] = temp2[randomPosition];
               temp2[randomPosition] = temp;
          deck = temp2;
     void putDeckInOrder()
          deck = finalDeck;
public void shuffle()
     BufferedImage [] temp = new BufferedImage [53];
     int half = 52/2;
     int j = 0;
     for(int i = 0; i < half;i+=2 )
          temp[i] = deck[j];
          temp[i+1] = deck [half];
          half++;
          j++;
     deck = temp;
void Reset()
for (int k = 0; k <52; k++)
          Icon warnIcon = new ImageIcon(deck[k]);
               JLabel images = new JLabel(warnIcon);
          cards.add(images);
public void actionPerformed (ActionEvent e)
     processButton(e.getActionCommand());
     void processButton(String command)
          if(command.equals("shuffle"))
     cards.removeAll();
     shuffle();
     Reset();
     counter();
     if(command.equals("random"))
     cards.removeAll();
     putDeckInOrder();
     randomShuffle();
     Reset();
     counter();
     if(command.equals("order"))
     cards.removeAll();
     setArray();
     Reset();
     counter();
void counter()
     String temp = test.getText();
     int temp2 = Integer.parseInt(temp);
     temp2++;
     test.setText(Integer.toString(temp2));
public static void main(String[] args) throws IOException
JFrame f = new JFrame("Test");
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
CardName s = new CardName();
f.getContentPane().add(s.theCards());
f.setSize(1260,575);
f.setLocationRelativeTo(null);
f.setVisible(true);
As for the images being too large and too many,  I'm not positive but i dont think thats the problem because when either shuffle button is pressed there is no lag. its only for the put deck in order button.
do you want the images of the cards? i dont know how i would send them.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • Horrible video skip / lag problem - once per second in all apps!

     I built a new system last month (my first AMD) and I am having a really aggravating problem. In all games and all video playback I get an annoying skip once per second, every second. It affects sound during gameplay but not during movie or mp3 playback. It even happens with the visualization mode in Windows Media Player.
    My system is as follows: MSI K8N Neo4-F, A64 3200+ venice core, MSI 6800GT 256MB PCI-E, two sticks of Corsair valueselect DDR400 512MB each, 500 watt PS, 160GB 7200 SATA HDD. Most recent NVIDIA drivers for everything. WinXP Pro with SP2 and all updates, DX9C. Nothing overclocked, all settings standard.
    I have tried the following solutions:
    1) BIOS upgrades, started with 1.4, installed 1.5, MSI tech support gave me 1.6b2 and I installed that. No luck with any of them.
    2) Memory, installed per MSI directions, but I've tried all legal combinations, including one stick at a time. No change.
    3) full format and reinstall of WinXP. No luck.
    4) Switching between WinXP IDE drivers and NVidia drivers, with and without RAID drivers, No luck.
    5) Removal of 6800GT PCI-E card and replacing with Ancient 8MB PCI Permedia2 video card. Problem still persists.
    6) Disable onboard sound and LAN. No luck.
    7) Running Fedora core 4 on second partition. Installed Nvidia video drivers, tried some games. THIS WORKS! No hitch, no skip, no nothing. Framerates are noticably slower but very stable. In WinXP I saw framerates bounce all over the place, from 230 FPS down to about 70 with one game. That same game on Linux ran smoothly at about 166 FPS with only occasional slight drops. The big FPS drops in Windows usually came right after one of the skips but didn't occure after every skip.
    Right now I'm stumped. Linux uses totally different drivers for sound, LAN and SATA support. Some of those drivers don't fully use the Nforce4 chipset's features, maybe that's part of the difference.

    Thanks TireSmoke:
    I had found that sticky, but I took your advice and went thorugh it in detail last night.  Lots of great info, fixes tweaks and tools, sadly none of them fixed my problem.  The lag problem most people are reporting is not really like the wierd problem I am having.  I have tried the recoommended fixes with ablsolutely no change in my system's behavior.
    I am beginning to suspect a faulty motherboard component.
    Russ_XP:
    I think you are correct about fast writes.  I googled the heck out of that last night and couldn't find any reference to enabling or disabling fast writes on PCI-E.
    The drive is SATA-1.  The Neo4-F is not SATA-2 enabled (there is a hack for it though).  From memory I think it's a Western Digital WD1600-something, 7200 RPM dirve.  I've tried it on both SATA buses and tried disabling the unused bus in BIOS.
    I'm pretty sure I can dig up an old PATA drive somewhere and give that a try.
    Gpalmer:
    True enough, and I don't have these problems under Fedora.  Sadly this is a cross-platform game development box, I need both XP and Fedora working.
    Black_God:
    Nope, this is a clean install.  Although I wonder, could any of the built in XP update and security tools be causing this?  I have disabled Windows firewall and virus protection monitoring.

  • Lag problem with JFileChooser

    I have searched the archives and haven't found any useful information regarding the fact that creating a JFileChooser lags horribly on some systems...namely mine. I have tried running my own program and the FileChooserDemo on java versions 1.4.1_02, 1.4.1_06, 1.4.2_01-b06, and 1.5.0 beta and all of them have the INCREDIBLY slow lagging problem. I am running Win XP pro P3 800 386MB and it takes over 40 seconds to load the chooser. I have disabled all anti-virus software to no avail. I have run my program on a computer at my college which runs Win XP also and there it runs fine...so I am at a complete loss as to what could be wrong. If anyone has any insight into this problem please let me know!
    thanks

    Yeah...they talk a lot about theories of what the problem may be, but only offer a few solutions...none of which have helped me (loading the JFileChooser when app starts, and stopping anti-virus software). Thanks though.

  • Just installed iOS7 on iPhone 4.  Huge typing lag problem now.  Any fixes?  Apple please fix asap.

    I just installed iOS7 on my new iPhone 4.  Huge typing lag problem now.  Any fixes out there?  How do I uninstall this update.  The phone worked better without it.  Don't even like the new layout and icon design.
    Apple, please fix this now!!!

    Try a Restart. 
    Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider. Press and hold the Sleep/Wake button until the Apple logo appears.
     Resetting your settings
    You can also try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your device settings again.... All of the settings in the settings app will have to be re-entered. You won't lose any data, but it takes time to enter all of the settings again.
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears. Apple recommends this only if you are unable to restart it.
    Or if this doesn't work and nobody else on the blog doesn't have a better idea you can contact Apple. 
    Here is a link to their contacts with most of the information below. 
    http://www.apple.com/contact/

  • I've been considering the Yosemite upgrade but especially after reading some of blue tooth lag problems, I'm wondering how to be able to go back to mountain lion.

    i have been considering upgrading to Yosemite from Mountain Lion but especially after reading about some of the bluetooth lag problems, i would want to be able to return to my current OS, just in case and am unsure what steps to take.

    Drive Partition and Format
    1. Open Disk Utility in your Utilities folder.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Apply button and wait until the process has completed.
    4. Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    5. Set the format type to Mac OS Extended (Journaled.) Click on the Security button, check the button for Zero Data and click on OK to return to the Erase window.
    6. Click on the Erase button. The format process can take up to several hours depending upon the drive size.
    To clone your existing system:
    Clone Yosemite, Mavericks, Lion/Mountain Lion using Restore Option of Disk Utility
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
         1. Select Disk Utility from the main menu then press the Continue
             button.
         2. Select the destination volume from the left side list.
         3. Click on the Restore tab in the DU main window.
         4. Select the destination volume from the left side list and drag it
             to the Destination entry field.
         5. Select the source volume from the left side list and drag it to
             the Source entry field.
         6. Double-check you got it right, then click on the Restore button.
    Destination means the external backup drive. Source means the internal startup drive.

  • Preview lag problem on Premiere Pro CC 2014

    Hi everything!
    I have a big problem on Premiere, when I work on every type of file the Program monitor lag too much.
    I can see one frame every few second!
    But the audio work well...
    It seems that the computer have not enough power to show the video! And I have not modified or applied effect or transition!
    I have got a MacBook Pro Early 2011 with the AMD Radeon HD 6750M (1024 MB) with the OpenCL 1.2 Engine, 2,2 GHz Intel Core i7-2720QM Quad Core (With Multithreading to 8 Core), 16 GB 1666 MHz RAM, with a Magnetic Disc (No SSD). The Machintosh is equipped by OS X Yosemite, reinstalled last week to try to fix the problem.
    Before installing the CC 2014 I used the CS6 for 2 years without problem.
    In Project Settings i have active the Mercury Playback Engine, and the other settings are not changed!
    Someone had the same problem? Or know how to resolve? Because is not easy to use in this condition!
    Thank you very much, Andrea.

    Hi!
    Thank you for the answer!
    My source footage is 1080 50p AVCHD (from Panasonic AC-AG160AEJ), but the problem is on every type of footage, because I tried with a 720 50p from a Canon EOS 6D and the ProRes 422 1080 25p of BlackMagic Production Camera 4K.
    The problem doesn't change with the weight of the footage, with all of the footage type the problem is the same.
    I use the original 7200rpm 750GB hard disk connected with the SATA interface. I think that is SATA 3 at 6 Gbit/s.
    I have tried with all playback resolution possible (Full, 1/4 and 1/8) but the problem doesn't change, even if I change the resolution.
    Unfortunately with the format of last week I lost the CS6...
    I'm writing from Italy and I use the PAL standard!
    I attach a video of the problem and a picture of my graphic card, if they are usefull!
    Video available at this link:
    Lag Problem.mov - Google Drive
    Thank you Ryan!

  • Lag problem in CC and CC 2014

    Hello everyone
    I have been searching for an answere for my lag problem and tried all kinds of stuff but I had now luck. I recorded two movies where you can observe my problem. One from Photoshop CC 2014 and one from Illustrator CC 2014.
    The problem occurs both when using mouse and a cintiq. I disconnected the cintiq and restarted the system using only the mouse but still the same problem.
    I have the system below:
    OS                                          Microsoft Windows 7 Home Premium
    Version                                   6.1.7601 Service Pack 1 build 7601
    Manufacturer                          Sony Corporation
    Model                                     VPCF22S1E
    Type                                       x64-based PC
    Processor                               Intel(R) Core(TM) i7-2630QM CPU @ 2.00GHz, 2001 Mhz, 4 kärnor, 8 logiska processorer
    BIOS-version and date          American Megatrends Inc. R1190V3, 2011-09-05
    SMBIOS-version                    2.7
    RAM                                      8,00 GB
    Total RAM                             7,98 GB
    Available RAM                       5,66 GB
    Total virtual memory             16,0 GB
    Avaiable memory                  12,5 GB
    Graphic card:
    Name                                     NVIDIA GeForce GT 540M
    RAM                                      1,00 GB (1 073 741 824 byte)
    Driver                                     nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Driver version version            9.18.13.3788
    Best regards
    Peter

    What zoom level are you brushing at and what kind of brush are you using. I find a lot of lag when the document has a large number of pixels and you zoom out like fit on screen.  Additional lag introduced when wet mixer brush are used a large tip size increase the lag even more.
    Remember Photoshop was designed to be an image editor.  Paint is a nice addition but not Photoshop main gold.  If you want to paint I'm sure a program designed to be a paint program would perform better and have more painters features.  A paint pint program may paint  on the scaled down image and apply the paint to the large document in the background where is look like Photoshop Paint on the large document layer then scale the results down to the zoom out view for there is no lag in Photoshop when you paint at the 100% or higher view.
    Digital Painting Software Review 2014 | Best Painting Software | Paint Programs - TopTenREVIEWS

  • SAFARI LAGGING PROBLEM SOLVED!!!

    Safari has been driving me crazy with serious lagging. I uninstalled the current version of Flash Player and reinstalled older version 10.1, which is available from Adobe. LAGGING PROBLEM SOLVED!!!

    Welcome to Apple Discussions
    Thanks for posting your fix. I'm sure it will help others having problems with log-ins etc.

  • Lagging Problems

    I've been experiencing these lagging problems when I'm recording to my laptop. It freezes then starts up again and repeats itself. So the results are the same when I play it back.  I’ve been recording from a canon XL2 through a 4pin to 4pin firewire.  Below are my specs to my laptop which I believe should be way more then sufficient to run this program.  Not to mention this is a brand spanking new laptop purchased like a week ago.  The only program that I loaded on this is Premiere Pro CS4 and Onlocation CS4.  And have only used onlocation on it so far. 
    HP HDX18t Premium Series
    Genuine Windows Vista Home Premium with Service Pack 1 (64-bit)
    Intel(R) Core(TM)2 Duo Processor T9900 (3.06 GHz, 6 MB L2 Cache, 1066MHz FSB)
    6GB DDR3 System Memory (2 Dimm) - For 1GB Nvidia GeForce GT 130M
    500GB 7200RPM SATA Hard Drive from
    1GB Nvidia GeForce GT 130M - For DDR3 Memory

    Your laptop specs are fine. Check your cables and connectors and make sure you've run Adobe Updates.
    JP

  • Having lagging problems with YouTube videos, it simply takes so long for the red bar to completely load and the videos frequently pause and take too long to restart playing again.

    I have been having lagging problems with YouTube videos for a number of months now. It simply takes so long for the red bar to completely load and the videos frequently pause and take too long to restart playing again. Even with little 2 and 3 minute videos.
    I have a fast computer and my webpages load really, really fast. I have FireFox 4 browser and a Vista Home Premium 64-bit OS. So I don't have a slow computer or web browser. But these slow YouTube vids take way too long to load for some reason.
    Does anyone have any idea how I can speed up YouTube?

    Hi
    The forums are customer to customer in the first instance, Only the mods (BT) will ask for personal information through a email link. Would you mind posting your Hub stats & BT speed test results this will help all with diagnosis-
    To post the full stats from your router
    for home hub - 192.168.1.254
    Navigate to ADSL Settings or use the A-Z at the top right
    Click on More Details and then post the results.
    Run BT speed tester and post the results from http://speedtester.bt.com/
    If possible it would be best to connect to the BT master socket this will rule out any telephone/broadband extension wiring also consider the housing of the hub/router as anything electrical can cause problems as these are your responsibility, if these are found to be the case Openreach (engineer) will charge BT Broadband, which will be passed onto you, around £130.00.
    Noisy line! When making telephone calls, if so this is not good for your broadband, you can check-
    Quite line test dial 17070 option 2 and listen - should hear nothing best done with old type analogue phone digital (dect) will do but may have slight hiss If you hear noise- crackling pops etc, report it as a noisy line on your phone, don’t mention broadband, Bt Faults on 151.
    As for your FTTC its available in some areas between 40% & 80% of customers in enabled areas can receive it!
    Mortgage Advisor 2000-2008
    Green Energy Advisor 2008-2010
    Charity Health Care Provider Advisor 2010-
    I'm alright Jack....

  • Having lag problems on the XBOX 360 - connecting to WRT160N wireless router.

    Having lag problems when playing on the XBOX 360(wireless connection) after we installed our new WRT160N wireless router. Looking for ideals on how to fix this performance problem?
    Cable Conpany: Comcast
    Modem Model: zoom
    Wireless Router Model: Linksys WRT160N

    A few more thoughts:
    - Changing the channel settings does NOT achieve anything. I manually tried every setting with no success.
    - Changing the encryption settings did not help. I tried "open", WEP and WPA and none of them work.
    - Even when this problem shows up, the xbox360 wireless adapter successfully finds and associates with the wireless network. It even manages to read data from the network - it just does it VERY SLOWLY and disconnects often. This causes extreme lag in xbox live games, which shows up as unpredictable play and disconnects from games.
    - The fact that G-only mode works fine pretty much proves that this problem can be fixed with a firmware change. The xbox360 wireless adapter and the WRT160N can definately talk to each other using 802.11g successfully so there must be some issue with negotiating the correct version of 802.11x.
    - I've considered trying a third-party firmware, such as DD-WRT to see if this fixes the problem. Has anyone tried this and if so what happened?
    If you are seeing this problem, please reply to this thread and say so. If enough people respond perhaps Linksys will fix the problem. Even if you're not registered with this board, registering is very quick and easy so don't let that deter you.
    Thanks

  • Lagging problems when upgrading from 10.6 to 10.6.8

    I've been running Snow Leopard 10.6.8 on my MacBook Pro (approx 6 years old - Intel core 2 duo, 2.26 GHz processor w/ 4 GB ram). I had an issue recently where it would hang up (spinning wheel) for 10-15 seconds every minute or two. Eventually it "died" and wouldn't boot again. I went through all the trouble shooting options I could find, but ended up just re-installing OS X 10.6 from my boot CD. It worked and ran fine again, so I did the software update to 10.6.8, but once I did that I encountered the "hanging up" problem again. So I went back to 10.6 once again and it's working fine. The problem is that most of the software on my computer needs 10.6.8 to run (for example, I use my laptop to DJ and my Serato software loads up on 10.6, but it doesn't register when I plug the USB into my mixer).
    I've run Activity Monitor to when I'm running 10.6.8 to see if anything is out of the ordinary there and everything looks fine. I've also run Disk Utility to verify/repair and everything is fine there as well.
    It doesn't seem like a hardware problem to me since it runs fine on 10.6, but I'm also far from an expert when it comes to this stuff. If anyone has any suggestions/ideas on what may be causing this problem I'd be very appreciative - thanks!

    I updated back to 10.6.8 so now it's lagging again, but I ran EtreCheck and this is what it gave me:
    EtreCheck version: 2.2 (132)
    Report generated 4/28/15 3:48 PM
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    The following internal tasks failed to complete:
    /usr/sbin/system_profiler -xml SPFontsDataType
    Hardware Information: ℹ️
        MacBook Pro (13-inch, Mid 2009) (Technical Specifications)
        MacBook Pro - model: MacBookPro5,5
        1 2.26 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM
            BANK 0/DIMM0
                2 GB DDR3 1067 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery: Health = Check Battery - Cycle count = 566 - SN = 9G9460B0L8VNC
    Video Information: ℹ️
        NVIDIA GeForce 9400M - VRAM: 256 MB
            Color LCD 1280 x 800
            spdisplays_display_connector
    System Software: ℹ️
        Mac OS X 10.6.8 (10K549) - Time since boot: 0:30:49
    Disk Information: ℹ️
        TOSHIBA MK3255GSXF disk0 : (298.09 GB)
            - (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) /  [Startup]: 319.73 GB (7.61 GB free) (Low!)
        HL-DT-ST DVDRW  GS23N 
    USB Information: ℹ️
        Apple Inc. Built-in iSight
        Apple Internal Memory Card Reader
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Computer, Inc. IR Receiver
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
    Configuration files: ℹ️
        /etc/hosts - Count: 18
    Kernel Extensions: ℹ️
            /Applications/Toast 8 Titanium/Toast Titanium.app
        [not loaded]    com.roxio.BluRaySupport (1.1.3) [Click for support]
        [not loaded]    com.roxio.TDIXController (1.6) [Click for support]
            /Library/Application Support/Hotspot Shield
        [not loaded]    com.anchorfree.tun (1.1.1 - SDK 10.8) [Click for support]
            /Library/Extensions
        [loaded]    xxx.qnation.PeerGuardian (1.1.9) [Click for support]
            /System/Library/Extensions
        [loaded]    com.AmbrosiaSW.AudioSupport (2.3.6) [Click for support]
        [loaded]    com.Cycling74.driver.Soundflower (1.5.2) [Click for support]
        [loaded]    com.increw.kext.speedit (0.32) [Click for support]
        [loaded]    com.manycamllc.driver.ManyCamDriver (0.0.9 - SDK 10.5) [Click for support]
        [not loaded]    com.rane.driver.sixtyeight.10.6 (1.1.2f4) [Click for support]
        [not loaded]    com.rane.driver.sl2.10.6 (1.0.1f3) [Click for support]
        [not loaded]    com.rane.driver.sl3.10.6 (1.3.2f6) [Click for support]
        [not loaded]    com.rane.driver.sl4.10.6 (1.0.1f2) [Click for support]
        [loaded]    com.serato.usb.kext (2.3.0) [Click for support]
        [not loaded]    com.wdc.driver.1394HP (1.0.9) [Click for support]
        [not loaded]    com.wdc.driver.USBHP (1.0.11) [Click for support]
    Startup Items: ℹ️
        CoreDuoTemp: Path: /Library/StartupItems/CoreDuoTemp
        Startup items are obsolete in OS X Yosemite
    Problem System Launch Daemons: ℹ️
        [not loaded]    org.samba.winbindd.plist [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.CS4ServiceManager.plist [Click for support]
        [loaded]    com.adobe.CS5ServiceManager.plist [Click for support]
        [loaded]    com.divx.dms.agent.plist [Click for support]
        [loaded]    com.divx.update.agent.plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [loaded]    com.intego.commonservices.integomenu.plist [Click for support]
        [loaded]    com.intego.commonservices.taskmanager.plist [Click for support]
        [loaded]    com.intego.commonservices.uninstaller.plist [Click for support]
        [running]    com.intego.netupdate.agent.plist [Click for support]
        [running]    com.wyse.MacCompanion.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [loaded]    com.anchorfree.ajaxserver.plist [Click for support]
        [loaded]    com.google.keystone.daemon.plist [Click for support]
        [running]    com.intego.commonservices.daemon.integod.plist [Click for support]
        [running]    com.intego.commonservices.daemon.taskmanager.plist [Click for support]
        [loaded]    com.intego.commonservices.icalserver.plist [Click for support]
        [loaded]    com.intego.commonservices.metrics.kschecker.plist [Click for support]
        [running]    com.intego.netupdate.daemon.plist [Click for support]
        [running]    com.intego.WashingMachine.service.plist [Click for support]
        [running]    com.rane.sixtyeight.daemon.plist [Click for support]
        [running]    com.rane.sl2.daemon.plist [Click for support]
        [running]    com.rane.sl3.daemon.plist [Click for support]
        [running]    com.rane.sl4.daemon.plist [Click for support]
        [running]    com.wdc.WDDMservice.plist [Click for support]
        [running]    com.wdc.WDSmartWareServer.plist [Click for support]
        [running]    com.wyse.PocketCloud.plist [Click for support]
        [loaded]    xxx.qnation.PeerGuardian.kextload.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.akamai.client.plist [Click for support]
        [running]    com.akamai.single-user-client.plist [Click for support]
        [failed]    com.apple.CSConfigDotMacCert-[...]@me.com-SharedServices.Agent.plist [Click for details]
        [loaded]    com.facebook.videochat.[redacted].plist [Click for support]
        [running]    com.spotify.webhelper.plist [Click for support]
    User Login Items: ℹ️
        uHD-Agent    UNKNOWN  (missing value)
        Android File Transfer Agent    Application  (/Users/[redacted]/Library/Application Support/Google/Android File Transfer/Android File Transfer Agent.app)
        WDQuickView    Application  (/Library/Application Support/WDSmartWare/WDQuickView.app)
    Internet Plug-ins: ℹ️
        o1dbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Click for support]
        OVSHelper: Version: 1.1 [Click for support]
        QuakeLivePlugin: Version: 0.1.0.382 [Click for support]
        Flip4Mac WMV Plugin: Version: 2.3.4.1 [Click for support]
        Unity Web Player: Version: UnityPlayer version 5.0.1f1 - SDK 10.6 [Click for support]
        Silverlight: Version: 5.1.20913.0 - SDK 10.6 [Click for support]
        FlashPlayer-10.6: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        DivX Web Player: Version: 3.2.4.1250 - SDK 10.6 [Click for support]
        Flash Player: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.6.6
        googletalkbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Click for support]
        iPhotoPhotocast: Version: 7.0
        JavaAppletPlugin: Version: Unknown Check version
    User internet Plug-ins: ℹ️
        BlueStacks Install Detector: Version: Unknown
        fbplugin_1_0_1: Version: Unknown [Click for support]
        fbplugin_1_0_3: Version: Unknown [Click for support]
    Safari Extensions: ℹ️
        Adblock Plus
        NinjaKit
    Audio Plug-ins: ℹ️
        SeratoVirtualAudioPlugIn: Version: 1.0.11 [Click for support]
        iSightAudio: Version: 7.6.6
    3rd Party Preference Panes: ℹ️
        Akamai NetSession Preferences  [Click for support]
        Flash Player  [Click for support]
        Flip4Mac WMV  [Click for support]
        Growl  [Click for support]
        Perian  [Click for support]
        SIXTY-EIGHT Audio Control Panel  [Click for support]
        SL 2 Audio Control Panel  [Click for support]
        SL 3 Audio Control Panel  [Click for support]
        SL 4 Audio Control Panel  [Click for support]
    Time Machine: ℹ️
        Time Machine information requires OS X 10.7 "Lion" or later.
    Top Processes by CPU: ℹ️
             8%    Google Chrome Helper(8)
             7%    launchd(2)
             4%    WindowServer
             3%    Google Chrome
             1%    hidd
    Top Processes by Memory: ℹ️
        823 MB    Google Chrome Helper(8)
        131 MB    Google Chrome
        123 MB    iTunes
        70 MB    mds
        49 MB    WindowServer
    Virtual Memory Information: ℹ️
        1.72 GB    Free RAM
        2.28 GB    Used RAM
        0 B    Swap Used
    Diagnostics Information: ℹ️
        Apr 28, 2015, 01:15:46 PM    /Library/Logs/DiagnosticReports/fpsaud_2015-04-28-131546_[redacted].crash
        Apr 28, 2015, 01:15:46 PM    /Library/Logs/CrashReporter/fpsaud_2015-04-28-131546_[redacted].crash
        Apr 28, 2015, 12:15:33 PM    /Library/Logs/DiagnosticReports/fpsaud_2015-04-28-121533_[redacted].crash
        Apr 28, 2015, 10:15:34 AM    /Library/Logs/CrashReporter/fpsaud_2015-04-28-101534_[redacted].crash
        Apr 28, 2015, 10:15:34 AM    /Library/Logs/DiagnosticReports/fpsaud_2015-04-28-101534_[redacted].crash
        Apr 28, 2015, 09:15:34 AM    /Library/Logs/CrashReporter/fpsaud_2015-04-28-091534_[redacted].crash
        Apr 28, 2015, 08:15:34 AM    /Library/Logs/CrashReporter/fpsaud_2015-04-28-081534_[redacted].crash
        Apr 28, 2015, 08:15:34 AM    /Library/Logs/DiagnosticReports/fpsaud_2015-04-28-081534_[redacted].crash
        Apr 28, 2015, 07:15:34 AM    /Library/Logs/DiagnosticReports/fpsaud_2015-04-28-071534_[redacted].crash
        Apr 28, 2015, 06:15:34 AM    /Library/Logs/CrashReporter/fpsaud_2015-04-28-061534_[redacted].crash
        Apr 28, 2015, 05:15:34 AM    /Library/Logs/DiagnosticReports/fpsaud_2015-04-28-051534_[redacted].crash
        Apr 28, 2015, 05:15:34 AM    /Library/Logs/CrashReporter/fpsaud_2015-04-28-051534_[redacted].crash
        Apr 28, 2015, 04:15:35 AM    /Library/Logs/DiagnosticReports/fpsaud_2015-04-28-041535_[redacted].crash
        Apr 28, 2015, 03:15:47 AM    /Library/Logs/CrashReporter/fpsaud_2015-04-28-031547_[redacted].crash
        Apr 28, 2015, 03:15:47 AM    /Library/Logs/DiagnosticReports/fpsaud_2015-04-28-031547_[redacted].crash
        Apr 28, 2015, 02:27:25 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/node-webkit Helper_2015-04-28-022725_[redacted].crash
        Apr 28, 2015, 02:16:46 AM    /Library/Logs/CrashReporter/fpsaud_2015-04-28-021646_[redacted].crash
        Apr 28, 2015, 02:16:46 AM    /Library/Logs/DiagnosticReports/fpsaud_2015-04-28-021646_[redacted].crash
        Apr 28, 2015, 01:15:49 AM    /Library/Logs/DiagnosticReports/fpsaud_2015-04-28-011549_[redacted].crash
        Apr 28, 2015, 01:15:49 AM    /Library/Logs/CrashReporter/fpsaud_2015-04-28-011549_[redacted].crash
        Apr 28, 2015, 12:15:47 AM    /Library/Logs/DiagnosticReports/fpsaud_2015-04-28-001547_[redacted].crash
        Apr 27, 2015, 10:15:39 PM    /Library/Logs/DiagnosticReports/fpsaud_2015-04-27-221539_[redacted].crash
        Apr 27, 2015, 09:16:06 PM    /Library/Logs/CrashReporter/fpsaud_2015-04-27-211606_[redacted].crash
        Apr 27, 2015, 08:15:42 PM    /Library/Logs/DiagnosticReports/fpsaud_2015-04-27-201542_[redacted].crash
        Apr 27, 2015, 07:15:41 PM    /Library/Logs/DiagnosticReports/fpsaud_2015-04-27-191541_[redacted].crash
        Apr 27, 2015, 06:15:36 PM    /Library/Logs/CrashReporter/fpsaud_2015-04-27-181536_[redacted].crash
        Apr 27, 2015, 11:15:48 PM    /Library/Logs/DiagnosticReports/fpsaud_2015-04-27-231548_[redacted].crash
        Apr 27, 2015, 11:15:48 PM    /Library/Logs/CrashReporter/fpsaud_2015-04-27-231548_[redacted].crash
        Apr 27, 2015, 09:16:06 PM    /Library/Logs/DiagnosticReports/fpsaud_2015-04-27-211606_[redacted].crash
        Apr 27, 2015, 06:15:36 PM    /Library/Logs/DiagnosticReports/fpsaud_2015-04-27-181536_[redacted].crash
        Apr 28, 2015, 02:57:08 PM    Self test - passed
        Apr 28, 2015, 12:15:33 PM    /Library/Logs/CrashReporter/fpsaud_2015-04-28-121533_[redacted].crash
        Apr 28, 2015, 11:15:33 AM    /Library/Logs/CrashReporter/fpsaud_2015-04-28-111533_[redacted].crash
        Apr 28, 2015, 11:15:33 AM    /Library/Logs/DiagnosticReports/fpsaud_2015-04-28-111533_[redacted].crash
        Apr 28, 2015, 09:15:34 AM    /Library/Logs/DiagnosticReports/fpsaud_2015-04-28-091534_[redacted].crash
        Apr 28, 2015, 07:15:34 AM    /Library/Logs/CrashReporter/fpsaud_2015-04-28-071534_[redacted].crash
        Apr 28, 2015, 06:15:34 AM    /Library/Logs/DiagnosticReports/fpsaud_2015-04-28-061534_[redacted].crash
        Apr 28, 2015, 04:15:35 AM    /Library/Logs/CrashReporter/fpsaud_2015-04-28-041535_[redacted].crash
        Apr 28, 2015, 12:15:47 AM    /Library/Logs/CrashReporter/fpsaud_2015-04-28-001547_[redacted].crash
        Apr 27, 2015, 10:15:39 PM    /Library/Logs/CrashReporter/fpsaud_2015-04-27-221539_[redacted].crash
        Apr 27, 2015, 08:15:42 PM    /Library/Logs/CrashReporter/fpsaud_2015-04-27-201542_[redacted].crash
        Apr 27, 2015, 07:15:41 PM    /Library/Logs/CrashReporter/fpsaud_2015-04-27-191541_[redacted].crash

  • Photoshop CS4 Lag Problems

    Hi All,
    I'm having a frustrating problem.
    I purchased the 17", 2.8GHz, 500gb 7200rpm, 4gb Mac (no problems with this drive after having it exchanged). This is my first Mac and I was excited about receiving a powerful machine compared to my 2-year-old windows based machine.
    I use CS4 extensively, mainly Photoshop and InDesign and in Photoshop, I'm noticing that the performance isn't great at all - in fact it's worse than my windows machine. When I drag a marquee window I find that progress across the page is slow, when I move items by using the arrow keys on the keyboard I can hold the arrow down for seconds then let go and watch the object move as if by itself.
    I'm really not used to performance of this type in CS4 and it hinders the speed at which I can work.
    I have tried allocating the maximum amount of ram (in this case 3gb due to the 32-bit limit) and have altered the number of cache levels and tested. None of these solutions is helping.
    At the moment I have 115gb free on the 465gb hard drive but don't expect that that should be the problem.
    Is anyone else having similar problems and, if so, have you managed to solve them?
    The problem doesn't occur in other CS4 programs such as InDesign or Illustrator.  I have uninstalled the Photoshop component and reinstalled but this hasn't helped.
    Many thanks in advance.

    You are not the first one to post a CS4 Lag issue on the net - just to tell you that you're not alone
    It could be a Graphics Card problem, that probably will be solved eventually during upcoming upgrades - but I don't know exactly what kind of card in in your machine, but from your description it sounds like you bought a MacbookPro, which will probably have a NVDIA Geforce 9400 card mountet.
    Here's a list of testet card and link to driver updates.
    http://kb2.adobe.com/cps/405/kb405711.html
    Hope you might solve the problem that way - now that you've already tried resetting your preferences - else you could always hope for a better suggestion from someone else on the thread,
    Torben.
    PS: You could try to turn of the Enable OpenGL Drawing in Performance section of preferences.

  • Lagging problem when connected to a Samsung Central Station 23"

    Hi,
    I bought myself a Macbook Air(Summer, 2011 Edition) about 3 months ago roughly,
    and I also bought myself a Samsung Central Station 23" which works just as a thunderbolt or cinema display but much cheaper and much elegant.
    It also sends audio signal as well as usb datas when connected to a pc or a mac.
    Before buying this monitor, I searched for any history or experience regarding performance problem when hooked upto an external monitor the other users had,
    and while some people say there are no such problems with new intel i core series which includes much advanced graphic core and much faster processor,
    many people said they have experienced performance problems to some dregree as well.
    Now that I seem to have this huge problem of lagging with my MBA when connected to Samsung Central Station,
    I still have no idea why it is happening, nor how to fix the problem.
    I use my Macbook Air connected to a Samsung Central Station 23" and it runs 1080P Full HD resoultion, which isn't that big deal to incur performance decline.
    I shut my MBA screen when I use the external monitor, so there isn't much thing to interfere with the performance.
    I don't know about other people who use an external monitor, but my central station monitor works on Full HD resolution only when i close my MBA screen or connect it as a dual screen. If the screen is left open, it runs with the same resolution as the macbook air.
    when I start sensing decline in frame I always had my MBA open to lower the resolution which seemed to work fine again.
    But these days,even when it's disconnected from the monitor it seems to have problem and the only way to bring it to the normal condition is to restart it.
    when connected to the monitor It's even hard to open few tabs on Safari and play a web flash game.
    It lags so hard I cannot even turn to other screen on mission control or swith to other browser tab without making it delay for a second.
    I checked CPU and RAM resources when it started lagging, but almost 90% of the CPU resources was idle and more than 500MB of RAM was free.
    After restarting the computer CPU remained the same, but more than 2G of RAM was now free.
    Im guessing it has something to do with GPU performance but not sure how to fix the problem.
    Do you think it's my Macbook Air's hardware problem or is it the monitor? or something else?

    I have the same issue. Were you able to find a resolution for this issue?

  • Huge lagging problem

    I am loading an external .swf file onto my stage. This is the
    script I am using:
    createEmptyMovieClip("village_holder", 1);
    village_holder.loadMovie(url, 0);
    onEnterFrame = function() {
    var bytes_loaded = village_holder.getBytesLoaded();
    var bytes_total = village_holder.getBytesTotal();
    if(bytes_loaded > 0) {
    var percent_loaded = bytes_loaded/bytes_total;
    if(percent_loaded == 1) {
    nextFrame();
    It loads everything great, but it lags so bad when it
    plays!!! Am I loading everything prperly? The external .swf file is
    just under 200 kb, but that should be ok, right? I would appreciate
    any help if there is a way to prevent lagging. maybe a way to ask
    for more ram from the computer?
    I really need any help/input on this problem, thanks.

    i'm not sure what's lagging in your swf but you have an
    onEnterFrame handler that continues to execute after it's no longer
    needed and you have some coding problems. try:

Maybe you are looking for

  • Capturing from Sony DCR in Premiere Elements 13 not possible?

    Premiere Elements does not find the device (SONY DCR-TRV120E PAL), although it is recognized in "Devices and Printers" as "AV/C Subunit / Sony DV Camcorder" (WIN 7) and the device is also recognized and capturing correctly under MS Movie Maker.      

  • PO Price - Non Editable {capture from Info record only}

    Hi Experts, My client want - PO Price always populated via info record & its in non editable mode. What the config required to achieve it. Please guide. Regards, Jackie

  • Crashing and 'out of memory' issues on new system

    having 'out of memory' errors and crashing while rendering on new FCP system. Here are system specs: Two ATI Radeon HD 5770 video cards Processor Name: Quad-Core Intel Xeon Processor Speed: 2.4 GHz Number Of Processors: 2 Total Number Of Cores: 8 L2

  • Logical port creation error through SOAMANAGER

    Hi, When I try to create a logical port through SOAMANAGER I got the following error. Error: Uninstantiated object "subject sidl service" in method IF_SRT_WSP_CONFIG_SIDL~CREATE_CLNT_CFG_FROM_WSDL_D of class CL_SRT_WSP_CONFIG_SIDL When I actually loo

  • Transform xml in column

    Hi, I wrote a Clr who returns an SqlXml object that i need to transform, here's the query and the result i have Select top 1 id_RefPdr, RefCln, Ncl, IT.dbo.Clr_NclSplitByMask(MasqeTri, Ncl, AM_R2.dbo.FN_NCL_NCLUNQPOS(Ncl)) From dbo.REFS_PDR Where Lib