Class inheritance issues!

Hello,
I have this code working on one computer but it won't work on another.
// - CPoint class
import java.io.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class CPoint extends Object
   public double dX, dY, dHeight, dZ;
   public CPoint( double dNewX, double dNewY, double dNewHeight, double dNewZ )
      //Store coordinate values
      dX = dNewX;
      dY = dNewY;
      dHeight = dNewHeight;
      dZ = dNewZ;
}this class compiles perfectly. However when I then compile this...
// - PLine class
public class PLine extends Object
   public CPoint cpoint[];
   public NewFile3 nFile3;
   double dX, dY, dHeight, dAngle, dZ;
   public PLine(String sNewzoneName, String sNewfileName, double dNewLLx, double dNewLLy, double dNewLLz)
     try
        //Call FileRead2 class
        nFile3 = new NewFile3(sNewzoneName, sNewfileName);
     catch (Exception exception)
        exception.printStackTrace();
     //Create array to store CPoint objects
     cpoint = new CPoint[nFile3.npCounter];
     dHeight = nFile3.dH + dNewLLz;
     dZ = dNewLLz;
     dAngle = nFile3.dAngle;
     for( int t=0; t<cpoint.length; t++)
        //Obtain values from FileRead2
        dX = nFile3.Points[t][0] + nFile3.dlX + dNewLLx;
        dY = nFile3.Points[t][1] + nFile3.dlY + dNewLLy;
        //Create an array of CPoint objects
        cpoint[t] = new CPoint( dX, dY, dHeight, dZ );
}I get, amongst others, the following error...
".....C:\Documents and Settings\WalterOG\Desktop\New Folder\PLine.java:11: cannot resolve symbol
symbol : class CPoint
location: class PLine
public CPoint cpoint[];
It doesn't make sense because the software I'm using on both computers is the same except there maybe a newer version of Java on the machine that is giving the error???
One other question, does Visual Studio 6 support swing? I'm not even using VS but I was just wondering??
Anyone got any ideas??
Cheers,
wALLY!

It would appear that you didn't put either class in a package. You will have to be careful that the compiler expects all your classes to be in the anonymous package. Are you using the javac command line compiler or some development environment to try to compile your code? The development environment may assume that your classes are supposed to be in some package, based on the directory path they are located under, and on your current project's properties in the IDE.
If you are using javac, then you need to invoke it from the same directory that the .java files are located in. You can't, for instance, say "javac myDirectory" from the directory above where the source files are stored. In that case, javac would assume that your classes were in a package called "myDirectory" but they aren't so it wouldn't be able to find them.

Similar Messages

  • Python inheritance issue

    I'm trying to expand the functionality of the ConfigParser class and it is not working as I would expect.  I wrote my own class, inherited ConfigParser.ConfigParser, and expected to have all of the ConfigParser methods available to routines that instantiate objects of my new class.    It is not working this way.
    I've done this with other classes with no issues.  Is there something about ConfigParser that could be causing an issue?
    I'd post code but there are a lot of lines that are somewhat relevant.  I'm looking for some insight at this point.
    Thanks!
    Last edited by TomB17 (2009-09-08 20:21:12)

    hard to say without some code/example
    (edit: maybe use a nopaste if you want to paste a sizable chunk of code)
    Last edited by cactus (2009-09-08 22:03:28)

  • Class Loadin Issue!!!!!!!! Urjent

    My application is not able to load jar given in lib folder..It's loading application Server jar.............Which is causing class loader issue.............One way to fix it this to copy the jar in JDK jre/ext/lib.............BUT this can't be done on PRODUCTION environment................Please tell me some other workaround for that............
    Thanks in advance
    Samt

    stubbornpisces wrote:
    Hey Anurag,
    Thanks for the reply............
    I am using WebLogic 10.3 and We are implementing BIRT in our application for report Generation....
    The jar is js.jar under Rhino plugin of BIRT....
    Currently jar file is in classpath...BUT If I am copying the jar file at JRE /ext/lib.....then it's working fine............BUT on PRODUCTION box, I can't copy anything there...........Yes you should not be placing any third party libraries or your custom libraries there.
    SO Is there any work around that Weblogic picked my application specific jar before picking Weblogic Application's Jars.........
    If you are using an EAR file deployed on your WebLogic instance try placing the JAR file in EAR/lib folder (If not you can also try the WEB-INF/lib directory). It might help you. However I cannot recommend a sure shot location unless I know what invokes the classes inside "js.jar". You have to keep in mind the class loader hierarchy to know the right place where a particular JAR file to go. This is because a Parent Class Loader doesn't have visibility of Classes loaded by a Child Class Loader and hence the hierarchy is important.
    Read more about the WebLogic class loader hierarchy here: [http://e-docs.bea.com/wls/docs81/programming/classloading.html|http://e-docs.bea.com/wls/docs81/programming/classloading.html]
    Hope this helps!
    Cheers
    Anurag

  • Link selectors and inheritance issue

    On playing with simple navigation elements, (2) in total, I find an inheritance issue I do not understand.
    The ul, ol declarations in Boilerplate not being ignored, or overruled, by the css settings that I want for styles, which I had thought carried more weight?
    I was surprised when Boilerplate “lists” selector ul and ol declarations were impacting in this way.
    My intention was to use Boilerplate link selectors for bottom “footer” nav menu, and style sheet selectors for the top horizontal menu.
    Since I’m just expanding knowledge base, I have jumped around quite a bit, so have not uploaded to remote server. Three code blocks contributing are as follows…
    ————————Begin top horizontal nav menu code————————————————
    /*Top navigation menu is styled in external main.css as follows:*/
    #nav ul {
      list-style-type: none;
      /* [disabled]width: 260px; */
      /* [disabled]display: inline-block; */
      /* [disabled]height: 40px; */
      /* [disabled]overflow: hidden; */
      margin: 0 auto;
    #nav li {
      float: left;
      border: solid thin red;
      margin: 0 2px;
    #nav a:link {
      display: block;
      width: auto;
      font-size: 0.8em;
      font-weight: bold;
      color: #00CCCC;
      text-align: center;
      padding: 0;
      margin: 2px;
      text-decoration: none;
      text-transform: uppercase;
    #nav a:visited {
      color: #99B5C1;
    #nav a:hover {
      color: #9FD5C6;
    #nav a:active {
      color: white;
    ————————————-—End top horizontal nav menu——————————
    —————————————Begin footer nav menu code—————————
    /*Bottom navigation menu, placed in div id="footer" declarations in Boilerplate as follows*/
    a {
      color: #78AAB3;
      text-decoration: none;
    a:visited {
      color: #009999;
    a:hover {
      color: #F06;
    a:focus { outline: thin dotted; }
    /* Improve readability when focused and hovered in all browsers: h5bp.com/h */
    a:hover, a:active {
      color: orange;
      outline: 0;
      text-align: center;
    ——————End footer nav menu code———————————
    On following DOM, found following declaration padding: 0 0 0 40px; seems to be inheriting
    SHOULDN’T THIS PADDING DECLARATION IN BOILERPLATE BE OVERRODE BY  CSS?
    ——————Begin Boilerplate code specifics—————————
    ul, ol {
      margin: 1em 0;
      padding: 0 0 0 40px;
    ——————End Boilerplate code specifics—————————

    Joh Fritz II,
    Thanks for quick response.
    To clarify, or expand, on my query; Knocking out the Boilerplate padding of 40px in ul, ol selector is what I want to happen. I want the top menu to be entirely directed by the external css, while allowing Boilerplate selectors for future in the lower, or footer, nav links to come.
    My goal is to have a minimal menu selection at top, than at bottom, in footer, a site map sort of simple links. Stripping it (index.html) down to a minimal footprint to gain as lean and fast loading a page as possible.
    This 40px seems to be affecting my ability to center the menu within the top menu (div element "nav") When I disable that declaration, I can see the menu (dw design split/view) correct to left 40px. Funny thing is, with "layout box model" checked under "visual aids," I can no longer actually see the padding on hover. I could prior, so something I've done led to that.
    Thus, the visual shift on "disable" of the Boilerplate padding declaration tells me the Boilerplate continues to affect that which I actually want to control with external css.
    Apologies if I present contextual information poorly here; I may just clear and create again, but would like to  actually understand how I got here on this particular issue. 

  • Does resteasy API have class loader issues when using via OSGi

    Does resteasy API have class loader issues when using via OSGi

    Hi Scott,
    THis isnt an answer to ur Question, but could u tell me which jar files are needed for the packages:
    com.sap.portal.pcm.system.ISystems
    com.sap.portal.pcm.system.ISystem
    and under which path I coul dfind them.
    Thnx
    Regards
    Meesum.

  • Migrating from eVC++4.0 to VS2008: Menu Bar not coming for class inherited from CProterty sheet

    We are migrating code developed in eVC++4.0 to Visual Studio 2008. We are facing a Problem as descripted below. We are using Pocket PC 2003 emulator.
    We are creating a class inherited from CPropertySheet. As below:
    In Header File:
    class COptionsSheet :
    public CPropertySheet
          DECLARE_DYNAMIC(COptionsSheet)
    #if(WINVER == 0x400)// This works for MenuBAr inherited from CDialog classes.
          CCommandBar m_cb;
    #else
          CCeCommandBar m_cb;
    #endif
    public:
    virtual BOOL OnInitDialog();
    We are drawing menu bar on the property window as below:
    In .CPP file:
    IMPLEMENT_DYNAMIC(COrderSheet, CPropertySheet)
    BEGIN_MESSAGE_MAP(COrderSheet, CPropertySheet)
    ON_COMMAND(ID_CUSTOMER_COLLECTPAYMENT, OnCustomerCollectpayment)
    ON_WM_INITMENUPOPUP()
    ON_NOTIFY(GN_CONTEXTMENU, 0, OnContextMenu)
    END_MESSAGE_MAP()
    BOOL COrderSheet::OnInitDialog()
    BOOL bResult = CPropertySheet::OnInitDialog();
    m_cb.Create(this);//This we have changed for VS 2008 as menu was not appearing for class inherited from CDialog class as well. In eVC++
    4.0 code we have used. Please see m_cb in header file discription
    m_cb.InsertMenuBar(IDR_ORDER1);// This calis unable to draw mwnu bar
    CMenu *pMenu = CWnd::GetMenu();
    //pMenu becomes NULL in very next line as we are passing it as parameter below.
    gPromotion.LoadSalesPromotions(pMenu,
    "Sales", SRC_TRACE_START);
    We tried this as well but it’s also not working:
    CMenu *pMenu = new CMenu;
          BOOL cehckStatus = pMenu->LoadMenu(IDR_ORDER1);
    SetMenu(pMenu);
          CRect r;  GetWindowRect(&r);
          r.bottom += GetSystemMetrics(SM_CYMENU);
          MoveWindow(r);
    Do we have to change or add something more for the menu bar in case of Property Sheet. Is there any change between eVC++ and Visual studio 2008 that we need to incorporate here.

    This forum is for POSReady. Please try one of the Windows CE forums:
    http://social.msdn.microsoft.com/Forums/en-US/category/windowsembeddedcompact
    -Sean
    www.annabooks.com / www.seanliming.com / Book Author - Pro Guide to WE8S, Pro Guide to WES 7, Pro Guide to POS for .NET

  • AS3 asdoc inheritance issue.

    Hi,
    I have an API that inherits flash.display.Sprite .When I try to generate the ASDocs for the API, The ASdoc shows that my class inherits from flash.display.Sprite, but doesnt link or there is no click-able link to the Sprite's ASDoc. Can anyone tell me what I am missing.
    The command I am using in my ant script is
    <target name="main" depends="clean, createTemp" description="generates the asdocs for the project">
      <java jar="${asdoc.jar}" dir="${FlexSDK.dir}/frameworks" fork="true" maxmemory="256m" failonerror="true">
         <arg line='-load-config "${flex-config.xml}"'/>
         <arg line='-source-path ${src.dir}'/>
         <arg line='-doc-sources ${src.dir}/com'/>
         <arg line='-output ${docs.dir}'/>
         <arg value='-library-path+=${FlexSDK.dir}/frameworks'/>
    Thanks in advance for your help.

    I just stumbled upon the same bug you did. The netstream pauses (or crashses) whenever I press the fullscreen button i've got sitting on the page. It happens in Firefox, Google Chrome, Apple Safari, but NOT INTERNET EXPLORER. How does that make any sense at all?! I'm running 10.0.22.87 on all the browsers so you'd think if it worked on one (which I would have bet wouldn't have worked out of all I tried) it would work on all. So i'm stumped and wondering if you found out anything. I appreciate it!

  • Inheritance Issue - constructor

    Okay, I hope you guys can help me out of this. I currently have an interface designed, with a class inheriting its information. Here is the sample code for reference:
    ArrayStack
    public class ArrayStack
        implements AnotherInterface
        public ArrayStack(int stacksize)
            stack = new String[stacksize];
        public boolean isFull()
            return top == stack.length;
    }Now the problem arises when I want to create a new class which inherits the ArrayStack. Here is a sample code of what I have wrote up:
    public class checkSize extends ArrayStack
        public checkSize()
    }I'm just trying to get my head around inheritance, but this code keeps giving me the error "cannot find symbol - constructor". Can anyone point me to the right direction or tell me what I can do? Any help would be greatly appreciated!

    Connex007 wrote:
    Melanie_Green wrote:
    So as suggested you can either call another constructor or you can create a default constructor in your superclass,Now that's where I'm getting confused on - what other constructor can I call?There is only one other constructor to call in the super class.
    Remember that the first line of every constructor is either an explicit or implicit call to another constructor. If you do not explicitly call another constructor then super() is inserted during compile time, and the default constructor that has no parameters of the superclass is called.
    Furthermore any class that does not explicitly extend another class, extends Object. So as I stated previously if the first line of the any constructor in this class is not a call to another constructor, then the compiler will insert super() which will invoke the default constructor of Object.
    Now in your scenario you are using inheritance, you have a subclass extending a superclass. Note that you have not defined a default constructor in the super class, which for example is defined in Object. So inside your subclass, if you do not call another constructor on the first line, then again the compiler will insert a call to super(). The call to super() from the subclass is dependent on the superclass having defined a default no parameter constructor. However in your case the superclass does not have such a constructor defined. Therefore you are still required to instantiate every class in the inheritance tree, either explicitly or implicitly.
    If you are still weary at this point, think of it this way. If A extends B extends C. When an object of type A is instantiated, a constructor of A then B then C is called so that C is instantiated first, then B, then A. This is reflective of instantiated in a top down method so that each subclass is instantiated correctly. Since A extends B, and B can potentially be instantiated in one or more ways, you still need to define how both A and B are instantiated.
    So relating this back to your problem, what are all the possible ways in which your superclass can be instantiated? We can eliminate the default constructor and assume that we must specify on the first line of the constructor contained in the subclass that a call to a constructor in the subclass or superclass occurs. If we invoke a constructor in the same class, in the subclass, then either this constructor calls a constructor in the super class, or it calls a constructor that in turn will tinkle its way up to calling a constructor in the superclass.
    Mel

  • Integrated WL/Jdeveloper class loading issue

    Hello,
    I am trying to run a deployed project , getting into this class loading issue. Any idea?
    javax.security.auth.login.LoginException: java.lang.LinkageError: loader constraint violation: when resolving interface method "com.scat.util.identity.UserFactory.lookup(Ljava/lang/String;)Lcom/scat/domain/identity/User;" the class loader (instance of weblogic/utils/classloaders/ChangeAwareClassLoader) of the current class, com/scat/auth/authentication/login/UserLoginModule, and the class loader (instance of sun/misc/Launcher$AppClassLoader) for resolved class, com/scatl/util/identity/UserFactory, have different Class objects for the type com/scat/domain/identity/User used in the signature
    Thanks
    Ram

    How many times are you loading the com/scat/domain/identity/User type?
    Is this in the system classloader and the application? and are you using class loading filtering in the application, for example,
    in weblogic.xml - prefer-web-inf-classes?

  • Workshop hangs in classes inherited fromPageFlowController

    hi group
    i have a really strange problem which seems to be project specific. i already recreated the project several times, re-installed workshop, switched/created new workspace, disabled autonomy services and validation...
    when i edit a file containing a class inherited from PageFlowController, the whole workshop hangs periodically for several seconds. it's not possible to work anymore, when I type, it displays max. 10 characters and then the system hangs for about 10 seconds. i suspect it could be some kind of encoding stuff because i once saw a message about encoding cant be saved, but now i dont have that message anymore and it still freezes. one other thing could be the "updating property editor" which appears shortly before the freeze, but i am not sure about that...
    any ideas ?
    best wishes
    -ToM-

    hi group
    i have a really strange problem which seems to be project specific. i already recreated the project several times, re-installed workshop, switched/created new workspace, disabled autonomy services and validation...
    when i edit a file containing a class inherited from PageFlowController, the whole workshop hangs periodically for several seconds. it's not possible to work anymore, when I type, it displays max. 10 characters and then the system hangs for about 10 seconds. i suspect it could be some kind of encoding stuff because i once saw a message about encoding cant be saved, but now i dont have that message anymore and it still freezes. one other thing could be the "updating property editor" which appears shortly before the freeze, but i am not sure about that...
    any ideas ?
    best wishes
    -ToM-

  • Class Instantiation Issues...

    Hi,
    We are currently having issuses with a Class Interface.  Everything was working fine with it, and now it says that the class is 'not instantiated'.  If you are in SE80 or SE24 and try to test a class (e.g. CL_HRRCF_APPLICATION_CTRL), you will get a pop-up that allows you to replace generic parameter types.  Now with the non-working class, it gives a screen similar to your transport organizer, with the class name at the top with '<not instantiated>' beside it, and a list of methods below it.  This Class is being used through the web.  Also, in the title bar in 6.40, it says, 'Test Class CL_HRRCF_GLOBAL_CONTEXT: No Instance'.
    <phew>... so, has anyone else run into a problem like this, and if not, does this make enough sense?  Is there a way of instantiating a Class Interface without calling it from a program, like generation?
    Best regards,
    Kevin
    Message was edited by: Kevin Schmidt

    Hi Kevin
    I am also working on an eRecruitment 3.0 ramp-up project. What I have found is that most of the classes etc used rely on other classes etc further up the chain, they cannot be tested in isolation. Instead it is normally necessary to set a breakpoint and then log into the eRecruitment Fornt end via a web browser. The class will then be instantiated in the normal process, as you work through the system pages, and called appropriately.
    This is a BSP issue. The class in question is a basic building block of the eRecruitment BSP pages.
    Regards
    Jon Bowes [ Contract Developer ]

  • Dynamic class loading issue with XmlBeans and Axis2

    Hi,
    Since support to web services is not enough in JDeveloper I am using apache axis2 to consume web services from an ADF web application.
    Everything works fine if I use jdk 1.5 but our app servers require jdk 1.4.2_08-b03 so I switched jre settings to jdk 1.4.2_08-b03 in the JDeveloper and I started to get these issues.
    I debugged the application and this line is the cause of the exception. It is in request document class.
    return (org.htng.pws._2008a.guestselfservice.name.types.FetchProfileRequestDocument)org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance(type,
    null);
    I did some further testing and found that it is happening when I call org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
    The error messages that I am getting are
    1.     J*BO-29000: Unexpected exception caught: java.lang.IllegalAccessError, msg=tried to access field* org.htng.pws._2008a.guestselfservice.name.types.FetchProfileRequestDocument$1.class$org$htng$pws$_2008a$guestselfservice$name$types$FetchProfileRequestDocument from class org.htng.pws._2008a.guestselfservice.name.types.FetchProfileRequestDocument
    2.     tried to access field org.htng.pws._2008a.guestselfservice.name.types.FetchProfileRequestDocument$1.class$org$htng$pws$_2008a$guestselfservice$name$types$FetchProfileRequestDocument from class org.htng.pws._2008a.guestselfservice.name.types.FetchProfileRequestDocument
    As I understand somehow the application server is not allowing the XMLBeans APIs to dynamically load the classes ..But I couldn’t find a way to convince it..
    Does anybody have any idea by any chance?
    Thanks a lot

    Some more details ..
    I could make it work if I change the below getClassLoader with Thread.currentThread().getContextClassLoader()
    org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(FetchProfileResponseDocument.class.getClassLoader()This is a generated code and normally works fine with jdk 1.5 .. I guess there should be some setting to make it work in 1.4 as well..
    Any Idea ?

  • Possible 'Class Path' Issues

    Hi Guys,
    I have problems compiling a file and I suspect it could be something related to classpaths. I am using NetBeans 6.9.1 as my IDE. When I set JDK 1.6 as my platform and complile, there are no issues, the programs compiles fine.
    My 'classpath' and 'path' are as follows:
    classpath:
    .;C:\Program Files\Java\jre1.6.0_07\lib\ext.;c:\java\classes;
    path:
    \....\....\....C:\Program Files\Java\jdk1.6.0_21\
    If I were to set the JDK as in 1.5, I seem to get the follwing error:
    ' cannot access org.red5.server.api.IScope
    bad class file: C:\Program
    Files\Red5\red5.jar(org/red5/server/api/IScope.class)
    class file has wrong version 50.0, should be 49.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
    import org.red5.server.api.IScope;
    1 error
    To rectify the problem I maded changes to my classpath and path, and yet the problem persists. The changes I made
    are as follows:
    classpath:
    .;C:\Program Files\Java\jre1.6.0_07\lib\ext.;C:\Program Files\Java\jre1.5.0_22\lib\ext.;c:\java\classes;
    path:
    \....\....\....C:\Program Files\Java\jdk1.6.0_21;C:\Program Files\Java\jdk1.5.0_22;C:\....\
    I hope someone can advise me on how I get rectify the problem and get the program to compile with JDK 1.5. Thanks.

    he wants to use JDK 1.5.Do read the thread before you post. He is* using JDK 1.5 when he gets the error message. He said so. This is the problem.* Not the solution. When he uses 1.6 he doesn't get the error.
    His environment is a bit messed up because he has PATH entries for both JDK versions.There is precisely zero evidence for that assertion.
    If he wants to compile and test with JDK 1.5, then removing 1.6 would make sense.No it wouldn't. He is using classes compiled for 1.6 with a 1.5 compiler. His problem is with red5.jar(org/red5/server/api/IScope.class) whose class version is 50.0. It's all written there above. If he wants to use that .jar file he has to use 1.6. Or else recompile that .jar file with 1.5, if he has the sources.

  • PA and PSA Inheritance issue from Org Unit

    Hi,
    I am trying to create an Org Unit with effective from today or a future date. When I do this, PA and PSA is not getting inherited for the newly created Org Unit.
    But when I create an Org Unit with effective from past date, this issue is not there and works fine perfectly.
    Note: The issue is there in the Development Client as of now. But there is no issue in quality. There was a recent patch that gets updated in Dev system. Not sure whether patch is an issue.
    Cheers
    Vijay

    hi vijay...
    would you tell me about your problem in bit details...
    i understand that if you create new org unit with existing org unit which already maintained with its PA and PSA assigned in Account Assignment tab then its never occur this problem..but if you create your org unit out side the remaining structure the you must assign PA and PSA for this specific
    Regards
    Bashir Ahmadani

  • Class loading issue in 10.1.2?  commons-codec

    Hi All,
    I'm attempting to deploy a pretty strait forward web application (wrapped in an EAR) that includes commons-codec-1.2.jar (used by axis2). The codec jar is included in the WEB-INF\lib directory but doesn't appear to be picked (I get a NoClassDefFoundError) up unless I copy it into the ...\system\appserver\oc4j\j2ee\home\applib directory? I'm guessing this is a weird classloader issue but I can't seem to find the codec jar in another location...
    I can get around the problem but I was wondering if anyone had an explanation?
    Cheers,
    Dan

    Dan,
    You need to set the search-local-classes-first attribute of element web-app-class-loader in file "orion-web.xml" to 'true' (the default is 'false') in order for OC4J to locate the "axis2" classes. Please refer to the White Paper, Classloading in OC4J (PDF):
    http://www.oracle.com/technology/tech/java/oc4j/pdf/ClassLoadingInOC4J_WP.pdf
    Or, if you don't like your Web browser directly opening PDF files (like I don't), there is a link to the White Paper from this Web page:
    http://www.oracle.com/technology/tech/java/oc4j/index.html
    Note however, that in OC4J 10.1.3 the class loading mechanisms are completely different to previous versions (including 10.1.2).
    Good Luck,
    Avi.

Maybe you are looking for

  • How do I get my text messages on a new iPad?

    I traded iPads and only have today's text messages. I save EVERYTHING, especially my texts.  Can anyone help??

  • Satellite M30X - high hard disk drive utilization

    After login in Windows XP (SP2), my toshiba laptop is very slow. The hard disk drive light is continuously on for 5 minutes. I've looked at the task manager, but CPU utilization is low and RAM usage is low. There is no program that seems to use a lot

  • VCast voice sync issues

    Thanks for creating the VCast application for Android! I've really enjoyed it, but I've also been very frustrated with the quality. I see a lot of skipping, pixelation, and sound sync issues. It seems anytime I get any disruption in feed, the entire

  • Facebook does not appear in my social accounts subscriptions

    In the new Safari 8, there is a left sidebar for bookmarks, reading list, and subscriptions. On the subscriptions tab I can see my LinkedIn and Twitter feeds but not my Facebook feed. When I click on the Subscriptions button I see the two accounts li

  • Update bundling when using OO Programming

    How do I use update bundling when I try to save data to Multile tables, in OO programming concept? In classic SAP, we can use a perform on commit and roll back, but can I achieve this in OO prgramming, without having to create a function module speci