Cant join calls in progress.

Since i got skype for desktop i have not been able to join group calls in progress at all and sometimes i cant even recieve calls when im not on do not disturb. this is really frustrateing how do i fix this 

I'm not aware of anything in CUCM that natively tells you what calls are in progress across the cluster.
If you're up for some programming, you might be able to (ab)use the external call control profile feature to at least record in real-time call setups. (Although this won't tell you when a call ends)
GTG

Similar Messages

  • Cant join group call, gets kicked automatically.

    Hey guys.
    So just today, I was in a skype call, then we left to another call, but for some reason I couldnt join, they had added me, I was in the call but whenever I clicked the Join Call button, I got kicked almost straight away
    I have tried...
    Going to %appdata% and renaming Skype to Skype_old, this didnt work.
    I tried deleting the DB file, this also didnt work.
    Could someone please help me as I would love to skype in a group with some friends again.

    same thing happened and still is happening.

  • Cant join to network at macbook air

    cant join to network at macbook air

    Until a few days ago mine worked fine. Now it only recognizes other networks (neighbours' and open ones) but not my own - it's disappeared! Even manually adding it again won't help. Its ios is up to date (Maverick).
    Neither restarting the modem nor the MacBook have helped (as for other issues). In Applications->Utilities I've run the Airport - and Disk-utilities (repairing permissions). No progress here either! Retried various other settings .... same waste of time.
    Strangely enough, the iPad and iPhone continue to work with my own without any problem.
    What can be done?
    Waiting for another ios update?
    Other users with similar problems?

  • Cant join PC to domain and not able to send emails

    Hi
    I'm having a few issues with a SBS 2011 Standard server. To give you a setup overview
    Server x1 (SBS 2011)
    Workstations x6 (4 running Windows 7 Pro and 2 running Windows 8.1 Pro)
    The server is used as domain controller and exchange. It doesn't host the web domain - emails are directed via a pop3 connector to exchange accounts
    Main use for server is file sharing, domain control and exchange
    The server and workstations connect into 8 way Ethernet switch
    This switch is then connected in BT 2wire business hub
    The LAN ran from 192.168.0.69 (server) to .70, .71 etc while BT hub was 192.168.0.253
    OK now the problem.
    Everything was setup and working fine until BT decided to block the IP from web.  BT said to factory restart the hub which we did. This fixed the internet to hub but screwed up the LAN. The new hub IP was 192.168.1.254 so the LAN was moved from 192.168.0.x
    to 192.168.1.x
    The first issue I am having is that I cant join a new pc that was rebuilt to the network. I have tried joining via right clicking my computer and changing domain, but when I enter in the domain and admin password it says it cant find the domain?
    I then tried the http://connect but that just loaded a blank page. I'm struggling as to how to connect this pc now. I tried to change the DNS on pc to the server LAN address but that didnt work either. I'm not sure if the domain controller is working or
    if its another issue?ow.
    Also on the pcs that are still connected, every time they login the mapped drives to the server dont open. the user has to try to open the drive and then enter in their username and password to open the drive. The drives are all shared correctly and this
    is only happening now.
    The 2nd issue I have is unclear as if its still a BT issue or not, but when a user tries to send an email the get an instant bounce back saying
    COL004-MC1F51.hotmail.com gave this error: OU-002 (COL004-MC1F51) Unfortunately, messages from 86.XXX.92.XX weren't sent. Please contact your Internet service provider since
    part of their network is on our block list.
    This happens on a number of emails not just hotmail
    When I checked that IP on the spam networks it had no record of it being blocked.the server has internet access ok and can receive emails fine, just not send them.
    I dont know it both issues or connected or not.
    would anyone have any ideas on what to try? first issue is getting this pc on the network. have been told that it needs all sorting for Monday morn, so any quick advice would be great.
    thanks for any input

    Hi,
    Could you please share the IP Address of the server ?
    Make sure the server is set to Static IP Address. With one NIC card enabled. DNS IP should be pointing to the server IP itself.
    On Client machine assign an IP address and make sure the DNS is set to Servers IP Address.
    Once that is done , Try to ping the server.
    Also ping connect from the client machine , Connect should show servers ip address.
    Keep me posted.
    Binu Kumar - MCP, MCITP, MCTS , MBA - IT , Director Aarbin Technology Pvt Ltd

  • Why cant I call a getResultSet method more than 1

    Why cant I call the getRSS method more than 1 time from my page?
    I have a class called methods class, here is the code:
    public class methodsClass {
        public java.sql.Connection objConn = null;
        public String query = null;
        public java.sql.PreparedStatement statement = null;
        public java.sql.ResultSet objRS = null;
        /** Creates a new instance of methodsClass */
        public methodsClass() {}
         public ResultSet getRSS(String sql)
            String strSQL = sql;
            try
                Class.forName("oracle.jdbc.driver.OracleDriver");
                objConn = java.sql.DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:CCD","system", "Abcd1234");
                statement = objConn.prepareStatement(strSQL,ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
                objRS = statement.executeQuery();
            catch (Exception e)
                System.err.println("Error in getRSS method");
                e.printStackTrace();
            return objRS;
        public void killConn()
            try
                    objRS.close();
                    System.out.println("Resultset is closed");
                    statement.close();
                    System.out.println("Statement is closed");
                    objConn.close();
                    System.out.println("Connection is closed");
                catch(Exception e)
                System.err.print("Unable to kill all objects");
                e.printStackTrace();
    //END OF CLASS***************************************** I call the method from the following jsp:
    <%
    String eqCat = "Tracked Vehicle";
    String strSQL = "SELECT DISTINCT * FROM robert WHERE eqcategory = '"+eqCat+"'";
    methodsClass mc = new methodsClass();
    ResultSet objRS = mc.getRSS(strSQL);
    java.lang.System.out.println(strSQL);
    %>
         <select name="selectBox">
         <% while(objRS.next()){
             out.println("<option value='"+objRS.getString("eqtype")+"'>"+objRS.getString("eqtype")+"</option>");
               mc.killConn();
    %> The above works fine.
    If I try to call the getRSS function again on this page I get the following error:javax.servlet.ServletException: Exhausted Resultset
    I tried to call it like so:
    newNameSQL = "Select * from robert where eqtypes = 'someVariable'";
    newNameRS = mc.getRSS(strSQL);
    <%=newNameRSS.getString("something");%>I cant understand why I get this error, I am closing the rs,conn and statement in the killConn method.
    TIA!

    I did that but still the same error. The problem is when I attempt to open up another resultset on the same page I get the Exhausted ResultSet error. I have even eliminated the class file altogether by doing this:
      String eqCat = "Tracked Vehicle";
      String strSQL = "SELECT DISTINCT eqtype FROM robert WHERE eqcategory = '"+eqCat+"'";
      Class.forName("oracle.jdbc.driver.OracleDriver");
      Connection objConn = java.sql.DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:CCD","system", "Abcd1234");
      PreparedStatement statement = objConn.prepareStatement(strSQL,ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
      ResultSet objRS = statement.executeQuery();
      System.out.println(strSQL);
    //The above works fine and then below I add this and the error comes back
         <select name="cs_popup_name_1" onchange="CSURLPopupShow(/*CMP*/'cs_form_name_1', /*CMP*/'cs_popup_name_1', 'Main');">
         <% while(objRS.next()){
            String eq = objRS.getString("eqtype");
             out.println("<option value='"+eq+"'>"+eq+"</option>");
    objRS.close();
    objConn.close();
    statement = null;
    strSQL = null;
    strSQL = "SELECT * FROM robert";
      Class.forName("oracle.jdbc.driver.OracleDriver");
      objConn = java.sql.DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:CCD","system", "Abcd1234");
      statement = objConn.prepareStatement(strSQL,ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
      ResultSet rs = statement.executeQuery();
      System.out.println(strSQL);
    //If I leave the field below commented out I get no errors, but if I comment it out I get the error
    <a href="#" onmouseover="showImg('<%=rs.getString("img1")%>')">                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • The method 'commit' cant be called when a global transaction is active.

    Hello,
    I've installed the SOAdemo a couple of times on local machines, and it works fine. Now I've deployed the SOADemo on a separate server and a strange error occurs in BPEL when testing the SOADemo.
    The SOAOrderBooking BPEL process runs into an error at the GetOrderId process:
    ================================
    file:/C:/product/10.1.3.1/OracleAS_1/bpel/domains/default/tmp/.bpel_SOAOrderBooking_1.0_937b09d1bd8dae1b33b028b2871aef63.tmp/OrderSequence.wsdl [ OrderSequence_ptt::OrderSequence(OrderSequenceInput_msg,OrderSequenceOutputCollection) ] - WSIF JCA Execute of operation 'OrderSequence' failed due to: DBWriteInteractionSpec Execute Failed Exception.
    unknown failed. Descriptor name: [unknown]. [Caused by: The method 'commit' cant be called when a global transaction is active .
    ; nested exception is:
         ORABPEL-11616
    =================================
    I am using SOA Suite 10.1.3.0 and Database 10201, deployed on Windows.
    Can anybody tell me what can cause this problem?
    Thanks in advance,
    Regards Leon                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi,
    Hi, I am getting the same error using ESB Database Adapter.
    My faultstring is:
    ========================
    oracle.tip.esb.server.common.exceptions.BusinessEventRetriableException: An unhandled exception has been thrown in the ESB system. The exception reported is: "oracle.tip.esb.server.common.exceptions.BusinessEventRetriableException: An unhandled exception has been thrown in the ESB system. The exception reported is: "org.collaxa.thirdparty.apache.wsif.WSIFException: esb:///ESB_Projects/my_ESB/myAdapter.wsdl [ myAdapter_ptt::myAdapter(InputParameters,OutputParameters) ] - WSIF JCA Execute of operation 'myAdapter' failed due to: DBWriteInteractionSpec Execute Failed Exception.
    unknown failed. Descriptor name: [unknown]. [Caused by: The method 'commit' cant be called when a global transaction is active.]
    ; nested exception is:
         ORABPEL-11616
    DBWriteInteractionSpec Execute Failed Exception.
    unknown failed. Descriptor name: [unknown]. [Caused by: The method 'commit' cant be called when a global transaction is active.]
    Caused by Exceptoin [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.1.0) (Build 061004)): oracle.toplink.exceptions.DatabaseException
    Belső kivétel: java.sql.SQLException: The method 'commit' cant be called when a global transaction is active.Error Code: 0.
    ==========================
    (BTW, what has 'commit' to do with a procedure that is only reading the database?)
    Regards,
    Patrik

  • Where can i check in the real time monitoring tool if there are active calls in progress?

    where can i check in the real time monitoring tool if there are active calls in progress? 

    Hi
    Selecting Call Manager -->Call Process ---> call activity
    HTH
    Regards
    Carlo

  • Why my iphone6 always cant receive call form other people? i am use the iphone in mainland china. it is my iphone problem or all the iphones have this problem in mainland. please answer me. thanks.

    why my iphone6 always cant receive call form other people? i am use the iphone in mainland china. it is my iphone problem or all the iphones have this problem in mainland. please answer me. thanks.

    Hello tashi1234,
    Welcome to the Apple Support Communities. If you are having an issues with the Phone app on your iPhone, the next step would be to restore the iPhone. The following will assist with backing up your iPhone.
    iOS: How to back up
    http://support.apple.com/kb/HT1766
    Once your iPhone is backed up then go through with the process of restoring the iPhone.
    iTunes: Restoring iOS software
    http://support.apple.com/kb/ht1414
    Regards,
    -Norm G.

  • HT1414 i restored my iphone now i cant accept calls or call out whats the problem?

    i restored my iphone now i cant accept calls or call out whats the problem?

    Hey retrothakid,
    Thanks for the question. I understand that you are experiencing issues with your iPhone 4s. The following resource may provide a solution:
    iPhone: Troubleshooting issues making or receiving calls
    http://support.apple.com/kb/TS3406
    Thanks,
    Matt M.

  • Calls in Progress

    For real time (or near real time) reporting is it possible to capture the status of calls that have not been completed?  Is there any way of reporting on calls in progress?

    Hi
    I don't believe so, not without looking at CTI to monitor the phones...
    UCCX just keeps basic 'talking' count stats etc in rtcsqssummary tables...
    The detail is written to the historical tables shortly after the call is closed.
    Aaron

  • HT4623 I AM FACING PROBLEM AFTER UPDATING (7.0.4) MY PHONE MODEL 5C,AFTER THIS UPDATE SOME TIMES I CANT MAKE CALLS & SOME TIMES WHEN ANY BODY ELSE WANTS TO CALL ME BACK THE MESSAGE COME THAT THE USER IS NOT REACHABLE.PLS HELP

    I AM FACING PROBLEM AFTER UPDATING (7.0.4) MY PHONE MODEL 5C,AFTER THIS UPDATE SOME TIMES I CANT MAKE CALLS & SOME TIMES WHEN ANY BODY ELSE WANTS TO CALL ME BACK THE MESSAGE COME THAT THE USER IS NOT REACHABLE.PLS HELP

    I am facing the same issue! I bought 5c few days back
    and everything was fine till I updated the software 7.0.4!
    Whenever am connected to wifi am unable to make a call and if someone tries
    Calling me they get the message that my number is not
    Reachable! When I go back to 3G the calls work perfectly!!
    Please help me out since I use wifi more than my network.
    Appreciate any advise on this

  • I have signal problems, cant do calls or calls stops in the midle.what to do?

    i cant do calls sometimes. some other times displays the message 'no sim' . pleese help

    It is a software issue because I didn't have the problem with iOS5 and like myself others are saying they had it after installing iOS 5.0.1. There is no doubt however that a very small minority of people will have hardware faults though, there always are on the production line but in this case all evidence points to firmware 5.0.1.
    And Apple has said nothing about it, the media have said nothing about it. They mentioned the Battery problems though because people actually used the Apple Care and Apple had to replace their phones, but for this issue nobody is doing that. I am not including you in this but so many people come here expecting a reply from Apple, it won't happen. Apple does not frequent these websites so any requests for word from Apple here will fall on deaf ears, it seems to be the direction that alot of companies are heading... Netgear are just another example of where you have to actually contact the companies support staff themselves to let them know about a fault because the forums are not being manned by support staff.
    They replaced my iPhone by the way, I am sticking with iOS 5.0.0 and I am not getting "No Service". I don't want to risk going through the whole problem again even though it might not happen because not all iPhone 4's and iPhone 4S' get the problem. I will just wait until a firmware that doesn't appear to cause the issue comes out.

  • The method 'rollback' cant be called when a global transaction is active

    I receive the following error stack while dequeuing a message (aq adapter outbound) and forward the message to a database (database adapter inbound) within Oracle ESB 10.1.3.4.
    The database connection is dynamic using additional variables in the xlst transformation and putting the connection information (jndi name) in the xml doc:
    <xsl:variable name="JDBC_RESOURCE"
    select="/imp1:MixMatchMsg/imp1:Winkel/imp1:JNDI_NAME"/>
    <xsl:variable name="SET_DATASOURCE"
    select="ehdr:setOutboundHeader('/dhdr:OutboundDBHeaderType/dhdr:dataSourceName',$JDBC_RESOURCE,'dhdr=http://xmlns.oracle.com/pcbpel/adapter/db/;')"/>
    An unhandled exception has been thrown in the ESB system.
    The exception reported is: "org.collaxa.thirdparty.apache.wsif.WSIFException:
    esb:///ESB_Projects/mixmatch_MixMatchESB/WriteWinkels.wsdl
    [ WriteWinkels_ptt::merge(IntMixMatchCollection) ]
    - WSIF JCA Execute of operation 'merge' failed due to: DBWriteInteractionSpec Execute Failed Exception.
    merge failed.
    Descriptor name: [WriteWinkels.IntMixMatch].
    [Caused by: The method 'rollback' cant be called when a global transaction is active.]
    ; nested exception is:
         ORABPEL-11616
    DBWriteInteractionSpec Execute Failed Exception.
    merge failed. Descriptor name: [WriteWinkels.IntMixMatch].
    [Caused by: The method 'rollback' cant be called when a global transaction is active.]
    Caused by Exception [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.4.0) (Build 080602))
    : oracle.toplink.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException:
    The method 'rollback' cant be called when a global transaction is active.Error Code: 0.
    at oracle.tip.adapter.fw.wsif.jca.WSIFOperation_JCA.executeRequestResponseOperation(WSIFOperation_JCA.java:644)
    at oracle.tip.adapter.fw.wsif.jca.WSIFOperation_JCA.executeInputOnlyOperation(WSIFOperation_JCA.java:739)
    at oracle.tip.esb.server.common.wsif.WSIFInvoker.executeOperation(WSIFInvoker.java:927)
    at oracle.tip.esb.server.common.wsif.WSIFInvoker.nextService(WSIFInvoker.java:842)
    at oracle.tip.esb.server.common.wsif.WSIFInvoker.nextService(WSIFInvoker.java:865)
    at oracle.tip.esb.server.service.impl.outadapter.OutboundAdapterService.nextService(OutboundAdapterService.java:231)
    at oracle.tip.esb.server.service.impl.outadapter.OutboundAdapterService.processBusinessEvent(OutboundAdapterService.java:138)
    at oracle.tip.esb.server.dispatch.InitialEventDispatcher.dispatchNonRoutingService(InitialEventDispatcher.java:411)
    at oracle.tip.esb.server.dispatch.InitialEventDispatcher.dispatch(InitialEventDispatcher.java:169)
    at oracle.tip.esb.server.dispatch.BusinessEvent.raise(Bu
    The payload looks as follows:
    <top:IntMixMatchCollection xmlns:top="http://xmlns.oracle.com/pcbpel/adapter/db/top/WriteWinkels">
    <top:IntMixMatch>
    <top:nummer>1</top:nummer>
    <top:omschrijving>C1000 Tandenborstels: 3 voor 2.56</top:omschrijving>
    <top:kassabonOmschrijving1>Tandenborstelactie</top:kassabonOmschrijving1>
    <top:kassabonOmschrijving2>3 voor 2</top:kassabonOmschrijving2>
    <top:aantalPerKlant>2</top:aantalPerKlant>
    <top:begindatum>2009-03-16</top:begindatum>
    <top:einddatum>2009-03-21</top:einddatum>
    <top:mixMatchGroepNummer>1</top:mixMatchGroepNummer>
    <top:mixMatchGroepOmschrijving>WK 200912 Mix matchess</top:mixMatchGroepOmschrijving>
    <top:intMixMatchDsCollection>
    <top:IntMixMatchDs>
    <top:volgnummer>1</top:volgnummer>
    <top:aantalTeNemenArtikelen>3</top:aantalTeNemenArtikelen>
    <top:omschrijving>C1000 Tandenborstels</top:omschrijving>
    <top:kortingToerekenenJn>J</top:kortingToerekenenJn>
    <top:bedragTeBesteden>1.23</top:bedragTeBesteden>
    <top:kortingwaarde>2.56</top:kortingwaarde>
    <top:mixMatchNummer>1</top:mixMatchNummer>
    <top:intMixMatchHfdgrInDsCollection>
    <top:IntMixMatchHfdgrInDs>
    <top:hoofdgroepnummer>16</top:hoofdgroepnummer>
    <top:mixMatchNummer>1</top:mixMatchNummer>
    <top:mixMatchDoosVolgnummer>1</top:mixMatchDoosVolgnummer>
    </top:IntMixMatchHfdgrInDs>
    </top:intMixMatchHfdgrInDsCollection>
    <top:intMixMatchArtikelInDsCollection>
    <top:IntMixMatchArtikelInDs>
    <top:artonnummer>10010205</top:artonnummer>
    <top:actieInkoopprijsEncrypted>6C1407B28B5B7EDC</top:actieInkoopprijsEncrypted>
    <top:uitsluitenJn>J</top:uitsluitenJn>
    <top:mixMatchNummer>1</top:mixMatchNummer>
    <top:mixMatchDoosVolgnummer>1</top:mixMatchDoosVolgnummer>
    </top:IntMixMatchArtikelInDs>
    </top:intMixMatchArtikelInDsCollection>
    <top:intMixMatchHfdsubgrpInDsCollection>
    <top:IntMixMatchHfdsubgrpInDs>
    <top:hoofdsubgroepnummer>82</top:hoofdsubgroepnummer>
    <top:mixMatchNummer>1</top:mixMatchNummer>
    <top:mixMatchDoosVolgnummer>1</top:mixMatchDoosVolgnummer>
    </top:IntMixMatchHfdsubgrpInDs>
    </top:intMixMatchHfdsubgrpInDsCollection>
    </top:IntMixMatchDs>
    </top:intMixMatchDsCollection>
    <top:intMixMatchTijdCollection>
    <top:IntMixMatchTijd>
    <top:dagnummer>1</top:dagnummer>
    <top:begintijd>0001-01-0112.23.00</top:begintijd>
    <top:eindtijd>0001-01-0114.45.00</top:eindtijd>
    <top:mixMatchNummer>1</top:mixMatchNummer>
    </top:IntMixMatchTijd>
    </top:intMixMatchTijdCollection>
    </top:IntMixMatch>
    </top:IntMixMatchCollection>
    Anybody any idea what could be wrong?
    Any ideas for a workaround/solution?

    I encountered this error while trying ADF tutorial CH10 - Developing an Edit Page, after changing some data on the Edit page and click on Save, the error appears on top of the page. The roll back was called implicatly by ADF, per stack trace msg it seems to come from failing to commit and then failing to roll back. Not sure why this is happening, please advise.
    WARNING: The method 'commit' cant be called when a global transaction is active. [TopLink Warning]: 2006.12.27 12:14:39.963--ClientSession(29795927)--Thread(Thread[HTTPThreadGroup-6,5,HTTPThreadGroup])--Local Exception Stack:
    Exception [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.1.0) (Build 061004)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: The method 'commit' cant be called when a global transaction is active.Error Code: 0....
    at QPPublicFacade_LocalProxy_4ogao92.mergeEntity(Unknown Source)<----------> WHAT may cause mergeEntity failed??

  • Call in progress?

    My Tour says I have a "call in progress" and will not let me disconnect or place another call.  Turning the phone off for 5 min and turning it back on does not correct the problem.  Anyone have any suggestions?

    Battery pull, use earlier os, perhaps have someone call you.

  • When I make a call or a call comes in on my LG G2 it doesn't show the dial pad or call in progress just a blck screen??????????Does anyone know how to fix it.

    when I make a call or a call comes in on my LG G2 it doesn't show the dial pad or call in progress just a blck screen??????????Does anyone know how to fix it.

        tfoxx,
    We want to make sure that everythig is working on the device without any kind of issues. When did you notice that the dial pad went away once a phone call is made or received? Do you have a screen protector on the phone that covers the sensors on the device? Please keep us posted.
    KevinR_VZW
    Please follow us on Twitter @VZWSupport

Maybe you are looking for

  • Why Safari 6.0 will not auto complete the password ?

    Why Safari 6.0 will not auto complete the password ? even when the option is selected in autofill tab, and the user-password are listed in the password tab ? It used to work fine before I upgraded to mountain lion.   Tks

  • Creative Vision:M scratch prob

    hi i have heard rumours about Vision:M black colour edition scratch problem. How serious it is? is it as bad as Ipod? Please if anyone can give me some advice about it. Because i am about to buy the black colour one. thank you

  • (When I have several pages open, if I move the cursor over a firefox page it automatically takes me there.

    When I have a Firefox page open filling the screen, and open an IE page in a smaller form, when my cursor happens to go over the Firefox page, the IE page is minimized.

  • Automatic conversion

    Hi, I would like to now if SAP KM can handle automatic conversion to a neutral documents formats (like PDF). TREX converts all the documents to HTML but this result is not available as a document in the portal (only when you use the HTML version link

  • Changing "x" location in adobe forms

    Hi, I am trying to move a textfield based on an event in adobe forms. I coded it as TextField1.x = TextField1.x + 20 I guess "TextField1.x" returns a String and hence it pretty much concatenates the string and makes it like "92.5mm20". Need some help