Help ! JMenuItem blocked by ScrollingImagePanel

All,
I hope somebody can help. My JMenuItem is blocked by ScrollingImagePanel, can you please show me how to display the JMenuItem in this context ?
Best Regards

Dear Guru,
Thanks for your reply. I think the image loaded has blocked the JMenuItem. For your convenience, I paste the code here. Please advise how to display back the JMenuItem.
import java.util.*;
import java.text.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.JFrame;
import javax.swing.text.*;
import java.net.URL;
import java.io.IOException;
import javax.swing.table.*;
import java.util.Vector;
//Create Menu
import javax.swing.JMenu;
import javax.swing.JMenuItem;
import javax.swing.JCheckBoxMenuItem;
import javax.swing.JRadioButtonMenuItem;
import javax.swing.ButtonGroup;
import javax.swing.JMenuBar;
import javax.swing.KeyStroke;
import javax.swing.ImageIcon;
import javax.swing.JTextArea;
import javax.swing.JScrollPane;
import javax.swing.JFrame;
//import javax.media.jai.*;
import java.io.*;
//import com.sun.media.jai.codec.*;
import java.awt.image.*;
import java.io.File;
//import java.io.IOException;
import java.awt.Frame;
import java.awt.image.RenderedImage;
import javax.media.jai.widget.ScrollingImagePanel;
import javax.media.jai.NullOpImage;
import javax.media.jai.OpImage;
import com.sun.media.jai.codec.SeekableStream;
import com.sun.media.jai.codec.FileSeekableStream;
import com.sun.media.jai.codec.TIFFDecodeParam;
import com.sun.media.jai.codec.ImageDecoder;
import com.sun.media.jai.codec.ImageCodec;
import com.sun.media.jai.codec.*;
import javax.media.jai.*;
import java.awt.image.renderable.*;
import javax.media.jai.widget.*;
import com.sun.media.jai.codecimpl.*;
//Rotate
import java.awt.geom.*;
import javax.media.jai.JAI;
import javax.media.jai.RenderedOp;
import javax.media.jai.PlanarImage;
import javax.media.jai.operator.TransposeDescriptor;
public class viewImageTest extends JFrame {
    ScrollingImagePanel panelImage;
    int selectPageCounter = 0;
    static String filename;
    JPanel panel = new JPanel(new GridBagLayout());
    int imageToLoad;
    int totalPages;
    int currentPage;
    JLabel labelMessage;
    String pageMessage;
     String printDir = "C:\\Iims\\twain52\\Examples\\";
     String printImage = "";
     boolean splitted = false;
     float zoomValue = 100;
     int rowRotate = 0;
    public static void main(String[] args) throws Exception{
          filename = args[0];
          viewImageTest view = new viewImageTest();
          view.firstPageDisplay();
    private class GBC extends GridBagConstraints {
     public GBC(int x, int y, int w, int h, double wx, double wy, int a,
         int f, Insets i, int px, int py) {
         super(x, y, w, h, wx, wy, a, f, i, px, py);
     public GBC adjust(int x, int y, double wx, double wy) {
         return adjust(x, y, gridwidth, gridheight, wx, wy);
     public GBC adjust(int x, int y, int w, int h, double wx, double wy) {
         gridx = x;
         gridy = y;
         gridwidth = w;
         gridheight = h;
         weightx = wx;
         weighty = wy;
         if (wx == 1.0 && wy == 1.0) {
          fill = BOTH;
         } else if (wx == 1.0) {
          fill = HORIZONTAL;
         } else if (wy == 1.0) {
          fill = VERTICAL;
         } else {
          fill = NONE;
          return this;
    public void firstPageDisplay() throws IOException {
          setTitle("View Image for " + filename );
          //JPanel panel = new JPanel(new GridBagLayout());
          GBC gbc = new GBC(0, 0, 1, 1, 0.0, 0.0, GBC.WEST, GBC.NONE,
          new Insets(2, 2, 2, 2), 0, 0);
        /*JMenuBar menuBar;
        JMenu menu, submenu;
        JMenuItem menuItem;
        JCheckBoxMenuItem cbMenuItem;
        JRadioButtonMenuItem rbMenuItem;*/
          JMenuBar menuBar = new JMenuBar();
          JMenuItem r90Item, r180Item, r270Item;
          setJMenuBar(menuBar);//Add the menu bar to the window.
          JMenu rotateMenu = new JMenu("Rotate");//Create Rotate menu
          JMenu printMenu = new JMenu("Print");//Create Print menu
          //Construct the Rotate pull down menu
          r90Item = rotateMenu.add("Rotate 90 Degree");
          r180Item = rotateMenu.add("Rotate 180 Degree");
          r270Item = rotateMenu.add("Rotate 270 Degree");
          r90Item.setVisible(true);
          menuBar.add(rotateMenu);
          addWindowListener(new WindowAdapter() {
               public void windowClosing(WindowEvent e) {
                    //System.exit(0);
                    //JFrame.destroy();
                    setVisible(false);
                    dispose();
          String[] arrayRotate = {
                 "Rotate 90",
                 "Rotate 180",
                 "Rotate 270"
        final JComboBox cbRotate = new JComboBox(arrayRotate);
        //patternList.setEditable(true);
        cbRotate.setAlignmentX(Component.LEFT_ALIGNMENT);
        cbRotate.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent eCT) {
                JComboBox cb = (JComboBox)eCT.getSource();
                String newSelection = (String)cb.getSelectedItem();
                    rowRotate = (int)cb.getSelectedIndex();
                //strScanType = newSelection;
                    System.out.println("rowRotate: " + rowRotate);
          //getContentPane().add(panel, BorderLayout.CENTER);
          //getContentPane().add(panelImage, BorderLayout.CENTER);
          //getContentPane().add(panelbuttons, BorderLayout.SOUTH);
        File file = new File(filename);
        SeekableStream s = new FileSeekableStream(file);
        TIFFDecodeParam param = null;
        ImageDecoder dec = ImageCodec.createImageDecoder("tiff", s, param);
          totalPages = dec.getNumPages();
        System.out.println("Number of images in this TIFF: " +
                           dec.getNumPages());
        // Which of the multiple images in the TIFF file do we want to load
        // 0 refers to the first, 1 to the second and so on.
        imageToLoad = selectPageCounter;
          selectPageCounter++;
          currentPage = imageToLoad + 1;
          System.out.println("Loading page: " + currentPage);
          pageMessage = "Page " + currentPage + " of " + totalPages;
          labelMessage = new JLabel(pageMessage);
        RenderedImage op =
            new NullOpImage(dec.decodeAsRenderedImage(imageToLoad),
                            null,
                            OpImage.OP_IO_BOUND,
                            null);
          panelbuttons.add(labelMessage);
          getContentPane().add(panelbuttons, BorderLayout.SOUTH);
          // Display the original in a 800x800 scrolling window
          panelImage = new ScrollingImagePanel(op, 795, 520);     
          getContentPane().add(panelImage, BorderLayout.CENTER);
          pack();
          show();
          //setSize(795, 520);
          //setVisible(true);

Similar Messages

  • Noob Needs Help w/ Blocked Outgoing Calls

    I'm very unfamiliar with this technology, however, I've been put in charge of it.  We're using Cisco Unified CM Administration v6.1 and currently we're unable to make calls out to any 900 or 330 prefixes and I can't figure out why.  We've called our telephone service provider and they were able to call from their lines, so they are suggesting it is something on our end.
    The only thing I can think of is the CM, however, I'm not sure where to even begin looking.  I did a little research on Google and started checking the Route Filter, however, I wasn't sure if that is where I need to be. (I thought for a minute that it must be true if it was on the internet :-) )
    Anyway, my question is, can anyone shed some light on where I might find some settings that would be blocking us from calling out to these numbers.  Area codes 330 and 900 are honestly cell phone numbers and we can't 7 digit dial or even 10 digit dial these numbers.
    Thanks in advance for your time and I really appreciate everyone for their help.
    Brian Carter

    1. He means what is your protocol i.e. SIP, H.323, etc.  If you go to device ---> Trunks and search for everything you should be able to find the gateway your CUCM is pointing to.
    2.  There needs to be some sort of route pattern pointing to your gateway or no calls would complete.  Call Routing --> Rout/Hunt ---> Route Patterns and do a blanket search. 
    3.  Your gateway config which is your router, CUBE, or whatever you may be using.  Issue a "Show Run" and post the contents here.
    4.  'Debug ccsip mess' is the command from your gateway that you can use if you are utilizing SIP trunking.  This will provide information such as INVITE, TRYING, ACK, RINGING, etc. with much more information telling us what is going on.  All of this needs to be posted here for us to be able to help you.  Understand this is a very difficult situation since you are extremely limited in knowledge on the systems.
    Please rate all useful posts!

  • Help: PReqs blocked by requestor not removed from approvers Inbox.

    Hi Everyone,
    We have implemented a Release Strategy with classification for PR Approval. Currently the client is complaining that PReqs that have been put into blocked status by the requestor are still appearing in the approvers WF Inbox. Is there a way to remove such PRs from the approvers inbox?
    Any help is appreciated.
    Thanks,
    Satish.

    Hi Ronen ,
    I Applied the SAP Note :1676067 - Automatic replacement of work items.
    Created Table , domain and DataElements also for Manual entries Also .
    While maintaining the Dialog Maintainence entries maintained are Asynchronous , 0 , 0 .
    And scheduled the job.
    But still it is not changing the status from Inprocess to Ready for workitems .
    Can you suggest what else is supposed to be checked or maintained .
    Thanks in Advance.

  • Vendor F4 Help Filter Blocked Accounts

    Hello ppl,
    My problem is, one of our clients has several wrong wendor accounts which are blocked but they also have correct duplicates. When F4 help is used prog lists at least two entries with similar values. Is there a way to distinct those  two, other than manually modifying vend. masters or making alterations in the program's code ???
    Regards,
    EK

    Dear Erdem,
      Acc. to me there is no standard way to stop the appearance of duplicate / blocked parties in F4 Option.
    what you cna do in in master changes add some prefix to the name. like *** or "Duplicate" etc. so that if users take F4 option than and try to find the name with first name*, it will not appear in list.
    Plus to stop furthur postings you need to block them by XK05, and FK05 to stop any posing in FI module.
    NOTE: you can take help of ABAPER to stop display of blocked vendors in F4 List, if donot want to od it manually.
    hope this can solve you issue.
    assign point if helpful.
    Cheers
    Ashokkumar

  • Report /HELP on blocking a lost Apple IPOD Nano 8GB

    I lost an Apple Ipod nano wayback in Feb 2009 in Bangalore, India.
    Just wanted to report it in this community..and get help on this. Can we block it somehow.
    Please let me know if there is a site where we can add the serial number o the lost IPOD.
    Regards,
    Anil Sharma

    There is nothing you can do to block it.February 2009 was a long ways away even if there was something to have been done. I hope you have another iPod to enjoy by now.

  • Needs help regarding block corruption

    DB Version - 11.2.0.3.0
    Issue - Last backup failed due to block corruption ,message says "ORA-19566: exceeded limit of 0 corrupt blocks for file /GP/GAA01-N-P/db00/index01/GPEDWPR/bi_gpedw_fcct.dbf'
    I tried to perform block recovery using RMAN but it was not present in backup, hence failed. tried in the below way also :-
    RMAN> LIST FAILURE
    2> ;
    using target database control file instead of recovery catalog
    List of Database Failures
    =========================
    Failure ID Priority Status Time Detected Summary
    72981 HIGH OPEN 13-JAN-13 Datafile 58: '/GP/GAA01-N-P/db00/index01/GPEDWPR/bi_gpedw_fcct.dbf'
    contains one or more corrupt blocks
    RMAN> ADVISE FAILURE
    2> ;
    List of Database Failures
    =========================
    Failure ID Priority Status Time Detected Summary
    72981 HIGH OPEN 13-JAN-13 Datafile 58: '/GP/GAA01-N-P/db00/index01/GPEDWPR/bi_gpedw_fcct..dbf' contains one or more corrupt blocks
    analyzing automatic repair options; this may take some time
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=2055 device type=DISK
    analyzing automatic repair options complete
    Mandatory Manual Actions
    ========================
    1. No backup of block 3106752 in file 58 was found. Drop and re-create the associated object (if possible), or use the DBMS_REPAIR package to repair the block corruption
    2. No backup of block 3106911 in file 58 was found. Drop and re-create the associated object (if possible), or use the DBMS_REPAIR package to repair the block corruption
    3. No backup of block 3106976 in file 58 was found. Drop and re-create the associated object (if possible), or use the DBMS_REPAIR package to repair the block corruption
    4. No backup of block 3107504 in file 58 was found. Drop and re-create the associated object (if possible), or use the DBMS_REPAIR package to repair the block corruption
    5. Contact Oracle Support Services if the preceding recommendations cannot be used, or if they do not fix the failures selected for repair
    Now how to troubleshoot ? Any help will be highly appreciated

    First, you need to determine to which segment the block is assigned:
    select segment_type,owner,segment_name
    from dba_extents
    where file_id=58 and 3106752 between block_id and (blockid + blocks -1);
    Your action from there will depend on the type of segment. Since you have no backup, the options are limited. But there are still possibilities.

  • Adobe flash player on Mountain lion is incompatible, I can no longer watch you.tube, live direct tv..........says i have to upgrade the flashplayer and it will not update!!!!  Help, says  "blocked plug-in"

    I recently updated to Mountain Lion and now I cannot watch Youtube, Direct tv live feed because it says I need to update.  But, my computer will not let me.  Says I have a "blocked plug-in"  Help!!!!!!!!!

    You should only ever download Flash from that link. If a site pops up a message offering you a link to download Flash, don't take it. It might be the Adobe auto-update, but it might equally well be malware - there have been problems along these lines.

  • Help with Blocking/Unblocking GL account for posting

    We have a current program to block/unblock GL accounnts for posting and it does direct table update. But this way the user does not know the HISTORY about who did the update. I came to know that by using BDC, history gets created about who made the changes. I am still new to ABAP and with transaction code FS02 I cannot acheive this (blocking/unblocking GL account for posting).
    Is there any other transaction code that would let me do this?
    Is there an easy way of finding out the correct transaction code?
    I found FSSO which is pretty close but my lead said it is not the correct one! Does anyone happen to know the correct transaction code that would let me do blocking/unblocking for G/L account posting?
    Thanks.
    --Mithun

    Hi Mithun,
    FS00 txn is used for blocking GL a/c for posting.
    You can block/unblock GL a/c based on GL A/c and Company code.
    Execute FS00 txn, Click GL account -> Block (in the menubar).
    Block/Unblock based in chart of accounts or in company code.
    Cheers,
    Vikram
    Pls reward for helpful replies!!

  • Help - iPhone blocked by iOS 6 dowload

    Updated iTunes to 10.7, connected iPhone to sync, prompted to download & install iOS 6.   iTunes backed up phone, then all **** broke loose:  phone is blocked in recovery mode,  reinstall of software blocks  with " unknown problem" messages ( either 21 or 1604 ) and despite updating all drivers, checking for firewall or antivirus conflicts, and even reinstalling iTunes,  nothing works and my phone is blocked !   Help....

    Try restoring iPhone on different computer. Those Error Codes are most often due to iPhone Hardware problems. Could just be faulty battery. If you have Warranty or AppleCare make Genius reservation and take iPhone to Apple for resolution.

  • Help on blocking within tempdb

    On one of our 2008 R2 SP2 sql server we are experiencing blocking in tempdb. The blocked requests are Intellisense and Data Collection queries. We have found some stored procedures
    that create but do not drop temp tables, their connection starts when application begins and ends when application is terminated. We are having these stored procedures changed. Just wondering if anyone else has experienced this.
    Server has 16 Processors, 65 gb and tempdb has 4 data files of equal size.

    Hi,
    did u took a look at most waits in your system..you can use this query, since u have found out query you surely tune it but also look after wait stats for clear picture
    please look at below blog
    http://database-wiki.com/2011/04/26/blocking-caused-by-tempdb-contention/
    WITH [Waits] AS
    (SELECT
    [wait_type],
    [wait_time_ms] / 1000.0 AS [WaitS],
    ([wait_time_ms] - [signal_wait_time_ms]) / 1000.0 AS [ResourceS],
    [signal_wait_time_ms] / 1000.0 AS [SignalS],
    [waiting_tasks_count] AS [WaitCount],
    100.0 * [wait_time_ms] / SUM ([wait_time_ms]) OVER() AS [Percentage],
    ROW_NUMBER() OVER(ORDER BY [wait_time_ms] DESC) AS [RowNum]
    FROM sys.dm_os_wait_stats
    WHERE [wait_type] NOT IN (
    N'CLR_SEMAPHORE', N'LAZYWRITER_SLEEP',
    N'RESOURCE_QUEUE', N'SQLTRACE_BUFFER_FLUSH',
    N'SLEEP_TASK', N'SLEEP_SYSTEMTASK',
    N'WAITFOR', N'HADR_FILESTREAM_IOMGR_IOCOMPLETION',
    N'CHECKPOINT_QUEUE', N'REQUEST_FOR_DEADLOCK_SEARCH',
    N'XE_TIMER_EVENT', N'XE_DISPATCHER_JOIN',
    N'LOGMGR_QUEUE', N'FT_IFTS_SCHEDULER_IDLE_WAIT',
    N'BROKER_TASK_STOP', N'CLR_MANUAL_EVENT',
    N'CLR_AUTO_EVENT', N'DISPATCHER_QUEUE_SEMAPHORE',
    N'TRACEWRITE', N'XE_DISPATCHER_WAIT',
    N'BROKER_TO_FLUSH', N'BROKER_EVENTHANDLER',
    N'FT_IFTSHC_MUTEX', N'SQLTRACE_INCREMENTAL_FLUSH_SLEEP',
    N'DIRTY_PAGE_POLL', N'SP_SERVER_DIAGNOSTICS_SLEEP')
    SELECT
    [W1].[wait_type] AS [WaitType],
    CAST ([W1].[WaitS] AS DECIMAL(14, 2)) AS [Wait_S],
    CAST ([W1].[ResourceS] AS DECIMAL(14, 2)) AS [Resource_S],
    CAST ([W1].[SignalS] AS DECIMAL(14, 2)) AS [Signal_S],
    [W1].[WaitCount] AS [WaitCount],
    CAST ([W1].[Percentage] AS DECIMAL(4, 2)) AS [Percentage],
    CAST (([W1].[WaitS] / [W1].[WaitCount]) AS DECIMAL (14, 4)) AS [AvgWait_S],
    CAST (([W1].[ResourceS] / [W1].[WaitCount]) AS DECIMAL (14, 4)) AS [AvgRes_S],
    CAST (([W1].[SignalS] / [W1].[WaitCount]) AS DECIMAL (14, 4)) AS [AvgSig_S]
    FROM [Waits] AS [W1]
    INNER JOIN [Waits] AS [W2]
    ON [W2].[RowNum] <= [W1].[RowNum]
    GROUP BY [W1].[RowNum], [W1].[wait_type], [W1].[WaitS],
    [W1].[ResourceS], [W1].[SignalS], [W1].[WaitCount], [W1].[Percentage]
    HAVING SUM ([W2].[Percentage]) - [W1].[Percentage] < 95; -- percentage threshold
    GO
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • I NEED HELP TO BLOCK MY STOLEN BLACKBERRY

    Hi,
    i would appreciate any help to enable me block my stolen blackberry curve 9360. 
    i was robbed on gun point of all my belongings and my line is still on, however, it cant be trace.
    here are some information and would supply more if needed.
    <Personal Content Removed>
    Model: REM71UW
    i would also appreciate any personal information <Personal Content Removed>
    Thanks

    Hi and Welcome to the Community!
    Please see this helpful thread:
    http://supportforums.blackberry.com/t5/Device-soft​ware-for-BlackBerry/Lost-or-Stolen-BlackBerry-What​...
    Further, please understand that this site is not a formal part of any support whatsoever. It is not a channel with which to communicate with RIM for anything. Rather, it is a publicly accessible user-to-user community of volunteers. As such, what you have done is reveal, in this public forum, some very personal details about you -- hopefully no evil doers will see that before our Mods redact out what is personal.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Novice seeks help with "Blocked Plug-In"

    My MBA (2011, OSX 10.6.8) is telling me "blocked plug-in" whenever I try to play anything video.  Can't access Youtube, can't play stuff friends have sent to me.  The only change lately is that I downloaded a new version of Adobe a few days ago, but I think I was able to play a video on Youtube after that.  I am a 68 year old non-tecchie grandmother, and barely know how to turn on my macbook.  Can anyone help?  I'd like to play video of grandkidlets playing soccer...

    "Blocked Plugin" is a tough one. Usually it can't be gotten around because Apple doesn't allow "downgrading" plugins.
    These steps have worked in a very limited few cases.
    Download the offline installer: Flash Player (Mac OS X)
    Download the Shockwave FULL Installer here: http://get.adobe.com/shockwave/otherversions/
    Save the files - DON'T run them yet.
    Go to: Mac HD/Library/Internet Plugins
    Trash the Flash Player.plugin file and the flashplayer.xpt file from there.
    Go to: Mac HD/Library/PreferencePanes
    Trash the Flash Player.prefPane from there.
    Go to: Mac HD/Library/Application Support/Adobe
    Trash the Flash Player Install Manager folder and Shockwave 12 folder (if it's there)
    Also in Mac HD/Library/Application Support/Adobe, trash the Macromedia folder (if it's there)
    Go to: [user]/Library/Preferences
    Trash the Macromedia folder
    Empty the trash.
    Making sure your browser is fully quit, run the Flash Player Installer and the Shockwave Installer.
    Open Safari and go to Safari>Preferences
    Under the Security tab, Make sure "Allow all other plugins" is checked.
    Hopefully, that will do it.

  • Any help on blocking Skype access on a school netw...

    I just started helping with IT work at a middle school.  The kids are always trying to waste time in class instead of working (nothing new there!) and part of my job is to cut access to games, social networking sites, etc...  School isn't the place for those things, that's for after school / home.  We're doing pretty well on most of this - IM stuff, Facebook, etc... but Skype is giving us trouble.
    Can anyone provide some info on how we can block this at the network / firewall level?  The kids have their own laptops so we can't block the program itself.

    Considering you can't even block skype on the firewall then the network is hardly going to know the difference between there "break time" and when they are in a lesson. Maybe do a time constrait? so during their lunch time the restrictions are lifted? And yes I agree they shouldn't be doing it when the teacher is talking to them, thats just rude. But it does annoy me that everyone suffers just because a couple people take advantage.
    I used to be the hard working kid and I only played games occassionally but it was a right struggle. They will find a way to get round it anyway though. E.g. page 10 of google until they get to a certain game site or whatever. But yeah I would help you but I don't know how.
    I also find it quite halarious that students are making exactly the same posts but with the complete opposite intentions haha! E.g. what proxy will let me have 10 minutes of fun in a ultra boring class. I mean lets face it, if they are bored enough to go on skype then they aren't going to take anything in even if they couldn't go on skype. They would just look at the walls or chat to there friends. I would suggest maybe using software which allows you to "see" there screens. Or let the teacher do it? With remote control included in it. So you could take control of there mouse and hit x . They had it in my school during the last 2 years and it worked. They even let me use it as an I.C.T prefect

  • Help with blocking incoming messages from 1 contact through firewall?

    i have a blackberry curve 8520, and  really want to block one contact, can somebody help me asap

    Hi and Welcome to the Community!
    I know it's been a while since you posted this, but you never know...
    KB23877 How to block incoming messages using the BlackBerry smartphone firewall
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Help! Blocked account

    So .....my account got blocked? I tried to call a mobilephone but skype just cut it out and say "acccount blocked".I can't seemed to find a soluton to this. Please help!

    I don't think there is a solution! at least no one has found it yet!

Maybe you are looking for