"new static class qualified."

Hi all

I have a class of RandomGenerator with a nested public static String class, which extends from CountingGenerator with a nested class public static String, which in turn has a next() method to generate a following string object. Now, how do I actually use, how do I get a reference to the nested class so that I can call the following method. I tried this code, but it throws RuntimeException: code source Uncompilable - qualified new static class:
public class FillTreeSet {
    public static void main(String[] args) {
        RandomGenerator rg = new RandomGenerator();
        RandomGenerator.String rgs = rg.new String();   //throws the exception
    }    
}
It's the RandomGenerator class:
public class RandomGenerator {
    public static class String extends CountingGenerator.String {
        { cg = new Character(); }
        public String() {}
        public String(int length) { super(length); }
    }
}
And it comes to the CountingGenerator class:
public class CountingGenerator {
    public static class String implements Generator<java.lang.String> {
        private int length = 7;
        Generator<java.lang.Character> cg = new Character();
        public String() {}
        public String(int length) { this.length = length; }
        @Override
        public java.lang.String next() {
            char[] buf = new char[length];
            for (int i = 0; i < length; i++)
                buf[i] = cg.next();
            return new java.lang.String(buf);
        }
    }
}
Thanks in advance.
PR.

Since this is a static inner class, you must specify:

new RandomGenerator.String();

Your code would work if it were a non-static inner class.

Tags: Java

Similar Questions

  • Static class functions: PLS-00801: internal error [phd_get_defn:D_S_ED:LHS]

    Any ideas why this would generate an internal error - referring to a static class function in the constructor of this class parameter signature?

    Test case (on 11.2.0.2) as follows:
    SQL> create or replace type TMyObject is object(
      2          id      integer,
      3          name    varchar2(30),
      4  
      5          static function DefaultID return integer,
      6          static function DefaultName return varchar2,
      7  
      8          constructor function TMyObject(
      9                  objID integer default TMyObject.DefaultID(), objName varchar2 default TMyObject.DefaultName()
     10          )return self as result
     11  );
     12  /
    
    Type created.
    
    SQL> 
    SQL> create or replace type body TMyObject is
      2  
      3          static function DefaultID return integer is
      4          begin
      5                  return( 0 );
      6          end;
      7  
      8          static function DefaultName return varchar2 is
      9          begin
     10                  return( 'foo' );
     11          end;
     12  
     13          constructor function TMyObject(
     14                  objID integer default TMyObject.DefaultID(), objName varchar2 default TMyObject.DefaultName()
     15          )return self as result is
     16          begin
     17                  self.id := objId;
     18                  self.name := objName;
     19                  return;
     20          end;
     21  
     22  end;
     23  /
    
    Type body created.
    
    SQL> 
    SQL> declare
      2          obj     TMyObject;
      3  begin
      4          obj := new TMyObject();
      5  end;
      6  /
    declare
    *
    ERROR at line 1:
    ORA-06550: line 0, column 0:
    PLS-00801: internal error [phd_get_defn:D_S_ED:LHS]
    If static class functions are removed from the manufacturer and applied to the place inside the body of the constructor, it works without error. Similarly, you can call the constructor with the functions of the static class as parameters, without causing an internal error.
    SQL> create or replace type TMyObject is object(
      2          id      integer,
      3          name    varchar2(30),
      4  
      5          static function DefaultID return integer,
      6          static function DefaultName return varchar2,
      7  
      8          constructor function TMyObject(
      9                  objID integer default null, objName varchar2 default null
     10          )return self as result
     11  );
     12  /
    
    Type created.
    
    SQL> 
    SQL> create or replace type body TMyObject is
      2  
      3          static function DefaultID return integer is
      4          begin
      5                  return( 0 );
      6          end;
      7  
      8          static function DefaultName return varchar2 is
      9          begin
     10                  return( 'foo' );
     11          end;
     12  
     13          constructor function TMyObject(
     14                  objID integer default null, objName varchar2 default null
     15          )return self as result is
     16          begin
     17                  self.id := nvl( objId, TMyObject.DefaultID() );
     18                  self.name := nvl( objName, TMyObject.DefaultName() );
     19                  return;
     20          end;
     21  
     22  end;
     23  /
    
    Type body created.
    
    SQL> 
    SQL> declare
      2          obj     TMyObject;
      3  begin
      4          obj := new TMyObject();
      5  end;
      6  /
    
    PL/SQL procedure successfully completed.
    
    SQL> 
    SQL> declare
      2          obj     TMyObject;
      3  begin
      4          obj := new TMyObject(
      5                          objID => TMyObject.DefaultID(),
      6                          objName => TMyObject.DefaultName()
      7                  );
      8  end;
      9  /
    
    PL/SQL procedure successfully completed.
    
    SQL> 
    Had a look on support.oracle.com and turned toward the top of the specific remarks concerning the use of the static class functions in the signature of the constructor parameter. Known issue? Any other solution in addition to the above?

    Hello

    There is a bug: ""Bug 8470406: CREATING an OBJECT INSTANCE FAILS WITH the ERROR PLS-00801 IN 11 GR 1 material ", it shows the behavior in 11 g but not to the point 10.2." It gives exactly the symptoms you see also, move to the body and it works. But he gave no solution/patch.

    Herald tiomela
    http://htendam.WordPress.com

  • error of static class

    I have a static class:

    package VO
    {
    public class ArrayValues
    {
    private static var instance: ArrayValues = new ArrayValues();

    nominal values will replace the first with English-language versions
    If the user clicks on "Spanish" they will be replaced with
    private var yesNoArray:Array = new Array('1','2');
    private var utilityArray:Array = new Array('1','2');

    public void ArrayValues()
    {
    error ("ArrayValues is called by its instance");
    }

    Public Shared function getInstance (): ArrayValues
    {
    return instance;
    }

    public function getYesNoArray (): Array
    {
    Return yesNoArray;
    }
    public void setYesNoArray(input:Array):void
    {
    yesNoArray = entry;
    }

    It is invoked here:

    import VOS. ArrayValues;
    import VOS. InputData;
    import VOS. InputLabels;

    [Bindable]
    public var saveData:InputData = InputData.getInstance ();

    [Bindable]
    168 public var getArrays:ArrayValues = ArrayValues.getInstance ();
    ...

    It generates this error:

    Error: ArrayValues is called by its instance
    to VO::ArrayValues() [C:\FSCalc\Flex\FSCalc\src\VO\ArrayValues.as:14]
    to VO: ArrayValues$ cinit)
    Global $init () [C:\FSCalc\Flex\FSCalc\src\VO\ArrayValues.as:3]
    components::InputForm() [C:\FSCalc\Flex\FSCalc\src\components\InputForm.mxml:168]
    in FSCalc / _FSCalc_InputForm1_i)
    in FSCalc / _FSCalc_Array6_c)
    ...

    What I am doing wrong?

    PS, it is normal to take almost 10 minutes a) go to your discussions, b) read a reply to a thread and c) come back to the normal discussion?  That seems excessive to me.

    If you try to reach singleton,

    Your manufacture should look like this,

    public void ArrayValues(access:SingletonEnforcer)
    {

    If (access is nothing)
    {
    error ("ArrayValues is called by its instance");
    }

    }

    a variable,

    public static private var _instance: ArrayValues;

    Public Shared function getInstance (): ArrayValues

    {
    If (_instance is nothing)
    {
    _instance = new ArrayValues (new SingletonEnforcer());
    }
    return _instance;

    }

    And another class in the same file,

    class SingletonEnforcer
    {
    }

  • Singleton and static class

    I found that some guy coded their static classes in their Flash programs such as this:

    package {}

    class SingletonEnforcer)

    }

    package {}

    SerializableAttribute public class StaticClass extends EventDispatcher {}

    private static var _staticClass:StaticClass;

    public void StaticClass (singletonEnforcer:SingletonEnforcer) {}

    nothing

    }

    Public Shared function getInstance (): {StaticClass}

    if(_staticClass == null)

    {

    _staticClass = new StaticClass (new SingletonEnforcer());

    }

    return _staticClass

    }

    }

    }

    And these days, I read some Flex project code as:

    package {}

    public class StaticClass {}

    protected public static var _instance:StaticClass;

    public void StaticClass () {}

    public static class

    }

    public static void get () of the instance: {StaticClass}

    If (_instance == null)

    {

    _instance = new StaticClass ();

    }

    return _instance

    }

    }

    }

    What is the difference between the two approaches? Why the SingletonEnforcer class is needed in the first case?
    Thanks in advance!

    singletonEnforcer is not necessary in the first example, and they could use one in the second example, if they wanted. With the help of the enforcer allows to raise an error in the constructor and say an error such as: singleton - use getInstance(); and using the initializer applies appropriate. In the second example, you can simply use the constructor and bypass the getInstance() method and no errors occur. They just leave it up to you, the developer, to use the getInstance(), method.

  • Static Classes &amp; events

    Can it only an instance of a class expedition event, or the static class can too?

    We have static class MyManager:

    package managers

    {

    Import mx.rpc.CallResponder;

    import of services. MyDataService;

    Import valueObjects.MyValueObject;

    Public NotInheritable class MyManager

    {

    public static var updateDataResult:CallResponder = new CallResponder();

    private static var myDataService:MyDataService = new MyDataService ();

    private static var myValueObject:MyValueObject = new MyValueObject();

    Public Shared function updateMyDataService (): void {}

    updateDataResult.token = myDataService.update (myValueObject);

    }

    }

    }

    And the other class which calls:

    import managers. MyManager;

    MyManager.updateMyDataService ();

    MyManager.updateDataResult.addEventListener (ResultEvent.RESULT, resultReceived);

    and this event listener does not work.

    Hi Banditizm,

    Yes you can even send your static callResponders events, but I think that the difficulty you might face you cannot capture or listen to events sent.

    You can do something, you can send these events w.r.t. systemManager and also listen to these WRT events there.

    I mean your shipment to help call the event as below...

    systemManager.dispatchEvent (new Event ("dataLoadComplete"));

    And you can listen in your mxml or as .as file below...

    systemManager.addEventListener ("dataLoadComplete", onDataLoadComplete);

    Thank you

    Jean Claude

  • It is beneficial to create new static methods to replace lambda expressions?

    Simon told us to replace the lambda expression by method handles. Is there an advantage to do so, such as better performance? And it means that it is always advantageous to create new static methods instead of write lambda expressions?

    What Simon says - or should have said - is to use a reference method, is not a handle method. (A method handle is a construction of low level used by the invokedynamic bytecode and as such is much closer to the JVM. "It is not a feature of the Java language).

    In all cases, it can often be a good idea to use a method instead of an explicit lambda expression reference. Performance is not a problem. I did a comparative analysis and I was unable to discern the difference.

    First of all, you may already have a method that does what you want, so if you need a lambda that does the same thing, just write a method reference in the existing method.

    But sometimes it makes sense to take a lambda expression and then replace the lambda with a method reference refactor in a named method. There are several reasons for this:

    • Testability. A named method is easier to unit test to a lambda expression incorporated in a more complex construction as a data flow pipeline.
    • Reuse. The same logic can be used in several places, by calls direct or other references of the method.
    • Readability. If a lambda begins to be too big (in particular, several lines), it can disrupt the readability of a data flow pipeline.
    • Debugging. While most debuggers can today point stop and step by step through lambda expressions, control flow can be confusing.

    It is above all a question of degree. I find that about 95% of the lambda expressions that I write, or calculate something trivial, for example

    x -> x + 1
    

    or call a method in a way that cannot be expressed using a method reference, for example

    (a, b) -> a.foo(b.getBar())
    

    Rarely, I'll write an inline lambda, such as multi-instructions

    x -> { foo(x); bar(x); }
    

    Anything more complicated I'll tend to refactor in a separate method and use a method reference.

    Finally, a method reference can often be an instance instead of a static method method. If you're in an instance method and you want to write a reference to a method that is called on the same instance, you can write

    this::someMethod
    

    refer to it.

  • public static class

    Hello
    A method of variable or member of the Member are accessible without creating the object of a static class.
    I know that inner classes can only be static.
    Please answer soon...

    Of course not: s

    You can make the variable or static method, but then it is therefore more a member of the class.

  • Static class to change TextField

    Hello

    I'm doing a static class that will change the text in a TextField inside a SWF file.

    In this case, I have a MovieClip with a TextField with a message inside. I want to be able to make a class that gives this TextField and a message, what will change in the button.

    Certainly that I forget something obvious, I get the correct trace messages, but the textfield object disappears. The original text is 'Start' and I want to change cela 'OK '. For now I just want to change the text, but then I want to be able to change the text format.

    So far, I have this:

    package

    {

    import flash.display.MovieClip;

    SerializableAttribute public class ChangeTextField extends MovieClip

    {

    public void ChangeTextField(_textField:Object,__text:String):void {}

    }

    public static void change(_textField:TextField,__text:String):void {}

    trace ("CHANGETEXTFIELD" + _textField); Return to 'start '.

    _textField.text = _text;

    }

    }

    }

    In another class, I loaded the SWF and its contents is inside a MovieClip so that I can reference it. To edit the text in the TextField I would do something like:

    ChangeTextField.change (okButton.normal.label_tx, "OK");

    trace (okButton.normal.label_tx. (Text); Returns "OK".

    By the messages trace, all that does what it is supposed to do, but the object TextField disappears.

    Any idea?

    See you soon.

    If you see all traces of planned, make sure that your policy is incorporated.

  • can we create a static class in actionscript 3.0

    Hi if yes please send me piece of code.

    Thank you

    Hi Julie,.

    There is not specifically a static class in Flex you can declare it at compile time. However, you can have static variables and methods in your class and you can call them by using the class name itself without creating an instance of this class.

    Here is the piece of code...

    package com.constants
    {
    [Bindable]
    public class ConsumerMessageConstants
    {
    public static const = "10000" UNABLE_TO_ENROLL_PLANS_MESSAGE_ID:String
    public static const "10001"; = MARITAL_STATUS_UPDATED_MESSAGE_ID:String
    public static const "10002" = ERROR_IN_EDITING_MARITALSTAUS_MESSAGE_ID:String
    public static const "10003" = SMOKER_STATUS_SAVED_SUCCESSFULLY_MESSAGE_ID:String
    public static const = '10004 '; PASSWORD_RESET_REQUIRED_MESSAGE_ID:String
    public static const "10005; = ADDRESS_UPDATED_SUCCESSFULLY_MESSAGE_ID:String
    public static const "10006; = UNABLE_TO_REMOVE_THIS_DEPENDENT_MESSAGE_ID:String
    public static const "10007; = EMPLOYEE_SALARY_UPDATED_SUCCESSFULLY_MESSAGE_ID:String
    public static const "10008; = ERROR_IN_EDITING_SALARY_MESSAGE_ID:String
    public static const "10009; = PLEASE_SELECT_A_CONSIDER_PLAN_MESSAGE_ID:String
    public static const "10010" = YOU_MUST_CHOOSE_A_PLAN_COVERAGE_LEVEL_MESSAGE_ID:String
    public static const "10011" = PLEASE_SELECT_PLAN_TO_LOCK_PORTFOLIO_MESSAGE_ID:String
    public static const "10012" = DEEPDIVE_INFORMATION_SAVED_SUCCESSFULLY_MESSAGE_ID:String
    public static const "10013" = NO_DATA_TO_DISPLAY_MESSAGE_ID:String
    public static const "10014" = NO_PLANS_AVAILABLE_TO_ENROLL_MESSAGE_ID:String
    public static const "10015" = NO_PLANS_TO_BE_ENROLLED_MESSAGE_ID:String
    public static const "10016 = PASSWORD_CHANGED_SUCCESSFULLY_MESSAGE_ID:String."
    public static const "10017" = NEW_PASSWORD_AND_CONFIRM_PASSWORD_SAME_MESSAGE_ID:String
    public static const "10018; = YOUR_DATA_IS_UPDATED_SUCCESSFULLY_MESSAGE_ID:String
    public static const "10019" = HEALTH_PLAN_IS_UPDATED_SUCCESSFULLY_MESSAGE_ID:String
    public static const = '10020 '; HEALTH_PLAN_IS_ADDED_SUCCESSFULLY_MESSAGE_ID:String
    public static const = '10021 '; MONEY_PLAN_IS_UPDATED_SUCCESSFULLY_MESSAGE_ID:String
    public static const "10022; = MONEY_PLAN_IS_ADDED_SUCCESSFULLY_MESSAGE_ID:String
    public static const = '10023 '; PROTECTION_PLAN_IS_UPDATED_SUCCESSFULLY_MESSAGE_ID:String
    public static const "10024" = PROTECTION_PLAN_IS_ADDED_SUCCESSFULLY_MESSAGE_ID:String
    public static const "10025" = UNABLE_TO_RETRIEVE_PATHS_MESSAGE_ID:String

    Public Shared function func1 (): Void
    {
    ////

    }

    Public Shared function func2 (): Void
    {
    ////

    }
        
    public void ConsumerMessageConstants()
    {
    }
    }
    }

  • How to access the static class variable calendar / singleton?

    How can I access a timeline of a static class variable / singleton?

    You can pass any object to display list to your class when instantiating it.  all objects in the display list has a placement property that allows access to the stage and them you can use the correct path/name to your variable.

  • Instance of the static class.

    I'm working on my database helper class. My need is to have a single instance of this class in the application. In the development of cascades of BB that we create an object of the class to access its functions in another class and qml, we must have the class as an attached object so that we can call the method it contains the ID said. But I don't want my instance of the database class to be created every time I want to call a helper class database work, but only the first time when the user connects to the application. I want this forum to be available throughout the application. Please do advice if you have solved this problem successfully. Any bit of code is also welcome. Thanks in advance.

    1. no idea. try to create a new class, it works there?
    2. I use setProperty with the instance method

  • calculate a php with a new variable class

    I don't know what a class is. I have already written page that has in place for the equations. I have made new variables to a new equation but get incorrect results, I basically need multiple / divide / subtract these classes pre-generated against my new variable

    That's what I have so far

    <? PHP

    $utilityHost = 21.0;

    $col4 is $option_two-amount_due_before - $option_two-> four_weeks_security - $option_two-> tax >;.

    $col5 = $col4 / $row_Recordset1 ["rental_price"];

    $col3 = $utilityHost * $col5;

    $col6 = $row_Recordset1 ["rental_price"] * $col5;

    ? >

    $col4 is the variable using the pre built classes.

    all these are in fact the echo in a table

    for example

    <? PHP

    echo ' £» number_format ($row_Recordset1 ['rental_price'] - $utilityHost);

    ? >

    <? PHP

    echo ' £» $utilityHost;

    ? >

    classes

    <? PHP

    require_once('.. / lib/PaymentOptionOne.php');

    require_once('.. / lib/PaymentOptionTwo.php');

    require_once('.. / lib/PaymentOptionThree.php');

    require_once('.. / lib/PaymentOptionFour.php');

    $rent = $row_Recordset1 ["rental_price"];

    If ($row_Recordset1 ['weekly_rate']! = 0.00)

    $rent = $row_Recordset1 ["weekly_rate"];

    $weeks = $row_Recordset1 ["weeks"] / 7;

    $query = "SELECT * from editprop WHERE prop_id = %s ';

    $query is sprintf ($query, GetSQLValueString ($row_Recordset1 ['prop_id'], "text"));.

    $results = mysql_query ($query);

    While ($Row = mysql_fetch_array ($Results))

    {

    $option_three_rent = $row ["rental_price_monthly"];

    If (Empty ($option_three_rent))

    {

    $option_three_rent = $rent;

    }

    }

    $option_one = new PaymentOptionOne ($rent, $weeks);

    $option_two = new PaymentOptionTwo ($rent, $weeks);

    $option_three = new PaymentOptionThree ($option_three_rent, $weeks);

    Thanks in advance

    > multiple my variable with classes that are already in place

    The classes are complex constructions that contain data structures and methods. You do not have multiple variable with a class - you can reference a variable within the class or object. What exactly is the problem you're having with it?

    This syntax should work (note that I use arbitrary variables):

    $col4 = $option_two-> amount_due_before * $col2

    I think that it is essential that you are familiar with coding object-oriented if you go to work with her.

    http://www.elated.com/articles/object-oriented-PHP-for-absolute-beginners/

  • Several errors thrown when any new document class: 1046-3594-3590

    1046: type was not found or is not a compilation constant: FullScreenEvent.

    WARNING: 3594: getStackTrace is not a method of the dynamic class error.

    WARNING: 3590: void used where a Boolean value was waiting.  The expression will be converted to Boolean type.

    Does anyone have experience with these errors being lifted?

    package {
    
         import flash.display.*;
         import FluidLayout.*;
         import flash.display.Sprite;
         import flash.display.StageAlign;
         import flash.display.StageScaleMode;
         import flash.events.Event;
         import gs.*;
         import gs.easing.*;
         import fl.motion.easing.*;
         import com.greensock.*;
         import flash.events.MouseEvent;
    
    
    
         public class Website extends MovieClip {
    
              public function Website() {
                   /* Set the Scale Mode of the Stage */
                   stage.scaleMode=StageScaleMode.NO_SCALE;
                   stage.align=StageAlign.TOP_LEFT;
    
                   /* Add the symbols to stage  
                               var bg = new Background();  
                               addChild(bg);  
                                    */
                   var top = new top();
                   addChild(top);
    
                   var toprightoption = new toprightoption();
                   addChild(toprightoption);
    
                   //var middle = new Middle();  
                   //addChild(middle);  
                   var btmrightfooter = new btmrightfooter();
                   addChild(btmrightfooter);
    
                   /* Apply the alignment to the background   
                                 var bgParam = {  
                                     x:0,  
                                     y:0,  
                                    offsetX: 0,  
                                      offsetY: 0  
                                  }  
                                 new FluidObject(bg,bgParam);  
                                        */
                   /* Apply the alignment to the top */
                   var topParam = {  
                                      x:0,  
                                     y:0,  
                                      offsetX:0,  
                                    offsetY:0  
                                 };
                   new FluidObject(top,topParam);
    
                   /* Apply the alignment to the toprightoption */
                   var toprightoptionParam = {  
                                   x:1,  
                                   y:0,  
                                     offsetX: -toprightoption.width - 20,  
                                    offsetY: 20  
                               };
                   new FluidObject(toprightoption,toprightoptionParam);
    
                   /* Apply the alignment to the content 
                                var middleParam = {  
                                    x:0.5,  
                                   y:0.5,  
                                    offsetX: -middle.width/2,  
                                    offsetY: -middle.height/2  
                                }  
                                new FluidObject(middle,middleParam);  
                              */
                   /* Apply the alignment to the btmrightfooter */
                   var btmrightfooterParam = {  
                                    x:1,  
                                    y:1,  
                                    offsetX: -btmrightfooter.width - 10,  
                                    offsetY: -btmrightfooter.height -10  
                                };
                   new FluidObject(btmrightfooter,btmrightfooterParam);
              }
    
         private var currentlyShowing:MovieClip=null;
    
              public function showModalContent(clip:MovieClip):void {
                   if (currentlyShowing!=null) {
                        removeChild(currentlyShowing);
                   }
                   currentlyShowing=clip;
                   addChild(currentlyShowing);
              }
    
              public function removeModalContent():void {
                   if (currentlyShowing!=null) {
                        removeChild(currentlyShowing);
                        currentlyShowing=null;
                   }
    
              }
    
         }
    
    }
    

    If you have a textfield on your main timeline named textField and you are showing your document class, use:

    textField.text =...

  • Flex Builder stops new compilation classes ActionScript

    Hello

    Anyone know what could cause Flex Builder 3.4 stops compiling NEWS classes ActionScript? I worked on a Flex project for some time, we have a few MXML and .as files (less than 200). This morning Flex Builder suddenly stopped from new slot error detection form of classes, but not for the older classes. Thank you and thank you for your help.

    -Weiping

    Your new classes are referenced the old code? Mxmlc employs a dubious form of 'need' that connects, for classes that are not referenced from the main application are not yet compiled. This requirement of SEO is recursive; in other words, all classes to be included must be referenced from the main application, classes referenced by the main application or classes referenced by classes referenced by the main query and so on. But if your new classes are not referenced at all of the old code, they will be ignored.

  • Class problem after replaced by the new Java class

    Hello

    I made a java class to a ColdFusion 7.02 Server (linux red hat 3.2)
    At the beginning, that it worked perfectly.
    Then I made a new version with some extra methods, succeeded him, restarted the service and empty the cache. Still, he finds none of the new methods, but it is not the 'old'. What can I do?

    Is there a way you can check the version of the file on the server .class? Human error perhaps?

    How you access to and use of the class? Care to post some code snippets?

Maybe you are looking for

  • Satellite C660 - 28 d - first impressions

    I am happy to say that I just bought a toshi C660 28 d.It has the Intel i3 core clocked at 2.4 Ghz. Front side bus to 1066 MHz.I chose this model because it display 1080 p without glitching video youtube. Now that I have VLC, OpenOffice, Firefox, Gim

  • Update keeps trying to install a former printer driver

    I got a HP J6400 printer and now I have a new HP J6500 printer. Install the continuous update of trying to update the J6400 printer drivers. How can I remove this update all the time? I removed all the programs the J6400 printer but it keeps trying t

  • Windows Vista Pro 8 (6920 Blu - ray. HDMI, computer laptop specification Dolby theatre)

    I'm not to mess with the system if it works fine but I had a date and time modified virus that what IS of Norton did not stop. As Windows 8 Pro is at a reasonable cost, 45 books on Amazon, I'm looking to use the upgrade version upgrades XP, Vista or

  • Windows Movie Maker-how can I change the file format?

    It's my first time using Movie Maker, and I edited a song from my iTunes library. I want to save it in mp3 format, but when I saved it, it wouldn't let me choose the file format. I went to the post, and he published automatically as a video. I just w

  • Best headphones for speech recognition?

    I intend to relieve my wrists sore using the option of Win 7 SR, but I want to get the right microphone / headset. I will be mainly dictated text. In my view, a USB with microphone is ideal, but what is the best? Do I need a sound card? Does anyone h