Expected/actual values into test runner

Hey,.

I've added public for my classes as test functions:

[Test]
public function basicTest (): void
{
Assert.assertEquals ("Test is 5 == 5", 5, 5);
}

and a test suite takes this class as a variable.

[More]
[RunWith ("org.flexunit.runners.Suite")]
public class ModulesTestSuite {}
public var t1:MyClass;
}

I use this mxml to run the tests:

" < = xmlns:mx mx:Application ' http://www.Adobe.com/2006/MXML "
creationComplete = "runMe ()" xmlns:flexUnitUIRunner =" " http://www.Adobe.com/2009/flexUnitUIRunner "
styleName = "flexUnitApplication" >

< mx:Script >
<! [CDATA]
Import org.flexunit.runner.notification.async.XMLListener;
Import org.flexunit.listeners.UIListener;
Import org.flexunit.runner.Request;
Import org.flexunit.runner.FlexUnitCore;


private var core: FlexUnitCore;

public function runMe (): void {}

base = new FlexUnitCore();

core.addListener (new UIListener (uiListener));

Core.Run (ModulesTestSuite);

......

But when the test runner runs tests, it was classified as empty tests and shows white for the expected and actual values. While I've clearly stepped '5' for both. The tests complete successfully however.

Could you please developed what are the empty tests and how to pass the expected value / actual value of data that will be displayed in the UI tester.

Thank you

Alexander

It is for the most part UI confusion right now. We use FlexUnit1 during the alpha and beta tester and that you not him have not yet customized it fine for our needs.

FlexUnit1 made the claim of count, which means that he knew how many times did you affirmations in each method. This time FlexUnit 4 does not, then he believes that this test is empty because he does not know that you have made an assertion.

This will be fixed in the next output bits, but for now, just watch the tests having failed or succeeded, and try to ignore the empty.

If you change your test to say that 5 is equal to 6 (and everything works fine) I'm guessing you'll see a failure, it's just a way to prove that everything works well.

Mike

Tags: Adobe Open Source

Similar Questions

  • How to retrieve the actual value of this utl_raw.cast_to_raw () function

    I created a table like...

    create table mytable (name of user varchar2 (100));

    and added a column as...

    ALTER table mytable add raw (16) password.

    After that I'm inserting a value using below function,

    insert into mytable (username, password) values (: UN, utl_raw.cast_to_raw (:pwd)))

    United Nations-> abc
    pwd-> abc
    now, I want to display the data in the table,
    Select * from myTable. It is showing like this
    username password
    ABC 616263

    I want to see the real value of the password-> abc
    How to recover the actual value...
    Any help to solve the problem

    Published by: Guy on March 21, 2012 23:25

    On my 11.2.0.1 test the db instance:

    scott@ORCL> create table mytable(username varchar2(100));
    
    Table created.
    
    scott@ORCL> alter table mytable add password raw(16);
    
    Table altered.
    
    scott@ORCL> var un varchar2(10);
    scott@ORCL> var pwd varchar2(10);
    scott@ORCL> exec :un:='test';
    
    PL/SQL procedure successfully completed.
    
    scott@ORCL> exec :pwd:='testpw';
    
    PL/SQL procedure successfully completed.
    
    scott@ORCL> insert into mytable (username, password) values (:un , utl_raw.cast_to_raw(:pwd));
    
    1 row created.
    
    scott@ORCL> select * from mytable;
    
    USERNAME                                                                                             PASSWORD
    ---------------------------------------------------------------------------------------------------- -------------------------
    test                                                                                                 746573747077
    
    1 row selected.
    
    scott@ORCL> column pw for a15;
    scott@ORCL> select username,utl_raw.cast_to_varchar2(password) pw from mytable;
    
    USERNAME                                                                                             PW
    ---------------------------------------------------------------------------------------------------- ---------------
    test                                                                                                 testpw
    
    1 row selected.
    

    Concerning
    Girish Sharma

  • Mapping of velocity SoftMotion to move the Solidworks model with actual values

    Hello

    I played with SoftMotion module for a while. I have a few questions which I hope you can help me:

    • In the examples of shipment with LabVIEW SoftMotion, I noticed that speed are in 1000 and acceleration are 10000 units. Is anyway to convert these values into real values (m/s or rad/s)?

    • Y at - it no configutaion I must perform on Solidworks model to emulate the behavior of the actual speed?

    • Y at - it a demo to use SoftMotion with analog sensors (distance or rotation)?

    • Is there a plan to integrate with SoftMotion PID control to improve the design of controller?

    Thank you for your utilities in advance.

    After talking with someone in R & D, I learned that an interaction of SoftMotion with SolidWorks is intended for Visual representation. It is not intended for real simulations that you plan to use. That said, I won't be able to give you more information about how to configure SolidWorks so that it represents the real world conditions.

    To answer your question on the analog sensors, any of our motion crads accepts analog inputs. But, if alerts you mentioned that you receive by the sensors are digital, you can then use those.

    -Mike

  • outcome not display in Test Runner in Visual Studio

    Hello

    I try to use the Test Manager Visual Studio 2010 SP1 for testing purposes, but I notice that the results are not displayed in test steps when you run Test cases in Test Runner. It is actually only one case of test when it is run, but not for others. Can I get help on this one?

    Thank you and best regards,

    Bilal

    E-mail address is removed from the privacy *.

    Hi Bilal,

    Your question is more complex than what is generally answered in the Microsoft Answers forums. It is better suited to test of MSDN forum Visual Studio Test Manager (MTM).

    Please post your question to the MSDN Testing with Visual Studio Test Manager (MTM) Forum

  • Formula of mounting: replace the names of parameters by actual values

    Hello

    After finding the values of the parameters in the formula of editing, I need to replace the names of parameters by actual values found by the algorithm of editing.

    For example in the screenshot below, I need to replace a, b, c by actual values (e.g. 2.346878,-12.4589 8.0012) in order to use this formula to solve a nonlinear equation.

    Transform the string to byte array formula seems to be quite dufficult because replacements have different sizes (e.g. an having to be replaced by 2.346878).

    Is there a smart solution to such a problem.

    Thank you

    Or better yet... the list of parameter names can also be extracted:

  • Gears - error when you try to insert values into a table with multiple columns

    Hello

    I started playing with the gears and SQlLite today and I get an error when I try to insert values into a table with multiple columns.

    I have:

    var db = google.gears.factory.create('beta.database');
        db.open('developerSet');
        db.execute('create table if not exists Developers (DeveloperName text, DeveloperAge int)');
    
        var devName = "Davy"
        var devAge = 32;
    
        try {
            db.execute('insert into Developers values (?, ?)', [devName, devAge]);
            alert('success');
        }
        catch (e) {
            alert(e);
        }
    

    I get the error:

    net.rim.device.api.database.DatabaseException; insert into developers values (?,?): SQL logic error or missing database.

    I use this reference: http://code.google.com/apis/gears/api_database.html

    Everything works if I have only one field as:

    var db = google.gears.factory.create('beta.database');
        db.open('developerSet');
        db.execute('create table if not exists Developers (DeveloperName text)');
    
        var devName = "Davy"
        var devAge = 32;
    
        try {
            db.execute('insert into Developers values (?)', [devName]);
            alert('success');
        }
        catch (e) {
            alert(e);
        }
    

    I use the plug-in Visual Studio 2.0 for 2008 that are running Windows XP SP and Simulator 2.13.0.56

    Thank you

    Davy

    Yes, a SQLite database will persist between battery pulls.  The database is registered either to internal MEM or removable media (not the device memory), depending on which is available on your device.

    In general, its not considered a best practice to remove your table as soon as it is empty and re - create it again when you want to add data.  This adds extra overhead fresh for the final, delete and insert first for a given table.  Instead, define and finalize your drawing before you create your table.  Once created, review the static schema.

    That being said, for development purposes, it may be easier to provide an easy way to drop your tables while you develop your schema.

    See you soon,.

    Adam

  • table name not valid error when inserting values into a table

    I use the following statement to insert values into a table:

    curs. Execute ("INSERT INTO _ * '%s' * _ VALUES ((SELECT MAX (REC_ID) + 1 OF GSAP_MSG_IN), (SELECT MAX (gsap_msg_id) + 1 OF GSAP_MSG_IN), 'SHELLSAP', sysdate, '%s', EMPTY_BLOB(), 1, SYSDATE, EMPTY_BLOB (), SYSDATE)" %(*table_name*,file_extension)) ")

    whence table_name the following statement

    table_name = ' config.staging_db_tablesNames ['in_msgs]

    as I created a configuration file for all parameters that can change. The value of the table in the audit using a print command is correctly, but when put in the query above to run the insert statement gives an error. The following is the summary of comprehensive performance where you can see the table name as

    $ python gsapscnr.py
    Vote for the data files in/home/mh/inbox /...

    GSAP_MSG_IN
    Traceback (most recent call changed):
    File "gsapscnr.py", line 147, in it?
    poll_for_data()
    File "gsapscnr.py", line 86, in poll_for_data
    Sorter = load_details_first)
    File "gsapscnr.py", line 42, survey
    curs. Execute ("INSERT INTO '%s' VALUES ((SELECT MAX (REC_ID) + 1 OF GSAP_MSG_IN), (SELECT MAX (gsap_msg_id) + 1 OF GSAP_MSG_IN), 'SHELLSAP', sysdate, '%s', EMPTY_BLOB(), 1, SYSDATE, EMPTY_BLOB (), SYSDATE)" %(table_name,file_extension)) ")
    cx_Oracle.DatabaseError: ORA-00903: invalid table name

    Can anyone help with this problem please. I'm passing the value of the table in a bad way. Also if anyone can suggest a good tutorial for paythong programming using cx_Oracle.

    Concerning

    Print the SQL string that you establish, cut and paste it this output in SQL * more and see if it runs. This may show you that you should remove the single quotes around the name of the table %s in the Python file.

  • Convert the column values into buckets

    Hello

    Please help me to convert the column values into buckets.
    I have the values of the columns in the following way.


    Age of Orderdate * 9 10 12 14 15 18 19 20 21 22 26 27 28 29 33 34 40 45 * and so on



    But the requirement is the column values should be displayed in form

    Age by order date * 15 1 2 3 4 5 6 7 8 9 10 11 - 16-20 21-25, 26-30 30 + *.


    Please someone give me the solution.

    Thanks in advance.

    Hervé Rama

    Hi Richard,

    Just to double check, you have Setup buckets for 1, 2, 3, 4, 5, 6, 7 and 8 individually (each with a fair value). The problem is that you simply do not have all data fall into buckets above, correct?

    If this is the case, it looks like has been answered your original question. If so, the label would assign 'Proper' points by clicking on the button label correct next to the appropriate response and open a new thread with your new question. The reason why I say this is it will help other people who have a similar bucket question to your solution, without complicating the issue with subsequent questions.

    If you can post a separate thread, I'd be more than happy to help you with your secondary problem.

    Best regards

    -Joe

  • Insert some values into the database of field boxes




    I had a similar probem and error when you use the drop-down list instead of a checkbox. It was solved by putting the SELECT name = "CarMake in the menu dropdown.

    But in the box, I don't know?
    I seem that the problem is the action page has the Form.carmake, but the page does not work. What Miss me and where should I put in the entry below page.


    The main objective is to have checked checkboxes to insert some values into the database field carmake based on what is checked.


    If the Honda checkbox is checked then
    It inserts into the carmake field value Honda.

    If the Toyota checkbox is checked then
    It inserts into the carmake field the value of Toyota.

    If both are true then 2 rows are inserted two values
    Honda and Toyota.

    Ditto for the last option.

    Thanks for your help


    Here's the error again

    error:
    Error occurred while processing request
    CARMAKE element is not defined in the FORM.

    12:21:50.050 - term Exception - in C:\CFusionMX7\wwwroot\Author\CarAddAction.cfm: line 16
    CARMAKE element is not defined in the FORM.

    line 16 is:
    "#Trim (Form.carmake), #
    Join the Code


    <! - Here is the form - >
    < html >
    < head >
    < / head >

    < body >


    < h1 > < / h1 >

    < table >
    < action = "CarAddAction.cfm cfform" method = "POST" > "
    < b >
    < td > Honda: < table >
    < td > < Center > < input type = "checkbox" name = "HONDA_MODEL" value = "HONDA" checked > < / center > < table >
    < /tr >
    < b >
    < td > Toyota: < table >
    < td > < Center > < input type = "checkbox" name = "Toyota_MODEL" value = "Toyota" Unchecked > < / center > < table >
    < /tr >
    < b >
    < td > SUBARU: < table >
    < td > < Center > < input type = "checkbox" name = "SUBARU_MODEL" value = "SUBARU" unchecked > < / center > < table >
    < /tr >



    < Tr > < td > < table > Honda model
    < td >
    < input type = "Text".
    name = "Honda_Model".
    Value =""
    size = "22".
    MaxLength = "20" >
    < table >
    < tr > < /tr >
    < Tr > < td > < table > Toyota model
    < td >
    < input type = "Text".
    name = "Toyota_Model".
    Value =""
    size = "22" >
    < table >
    < tr > < /tr >
    < Tr > < td > < table > Subaru model
    < td >
    < input type = "Text".
    name = "Subaru_Model".
    Value =""
    size = "22" >
    < table >
    < tr > < /tr >
    < td > < table >
    < td >
    < input type is 'submit' value is "Take Add to database" >
    < table >
    < /tr >

    < / cfform >
    < /table >

    < / body >
    < / html >



    <!-action page
    --------->
    < cfdump var = "#form #" >
    < name cfquery = "InsertCarInfo."
    DataSource = "#request. MainDSN #">"
    INSERT INTO Car_tab)
    car_Make,
    Honda_Model,
    Toyota_Model,
    Subaru_Model

    )
    VALUES)

    "#Trim (Form.carmake), #
    "#Trim (Form.Honda_Model), #
    "#Trim (Form.Toyota_Model), #
    "#Trim (Form.Subaru_Model) #
    )
    < / cfquery >

    You check in one or more of the boxes before continuing? Remember what I said about the form field box existing only on the page of treatment at least 1 or more checkboxes are checked on your form. Make sure you use to avoid this problem.

    What happens when you take a look at the output of your dump of form? Your fields are present?

  • How to load the values into a table?

    In my jspx page, I have a combo and a table... Based on the values of the drop-down list, when I click on a button, I want to load the values into a table... The data in the table are from 5 database tables. I created a viewObject readonly... What to do to load the values from the table, I click on a button?

    Ensure that you have defined a variable to bind your view object.

    Read-only or not, this is what would make the Execute with action of parameters available.

    John

  • SUMIF line is equal to the value of test and the line below is '-'

    Hello

    I have a spreadsheet numbers where a column has a list of names that are mixed with rehearsals and another column that has a value of profits to this name list.

    Now, I want to determine the total profits from each of the names so I can see the total profit by name.

    That part is easy, I just a SUMIF function that checks if the name corresponds to a specific name, and then adds the benefit altogether.

    The problem I have is that in the names column, sometimes I'll have a name and then the next rows are just '-' indicating that they are of the same name. The SUMIF function that I use does not takes into account these values because they obviously do not match the name of the interest.

    So my question is: is it possible to create a function that will check for a matching name and then if the next line '-', then add this value to the total as well. It has to work with several rows of '-' after the name.

    The screenshot below is an example of what I mean because I realize that it does not have much sense.

    So in this case, the total of Jess profit would be = 5 + 35 + 15 + 5 + 15 = 75

    and the benefit of Gill = 30 + 30 + 20 + 40 = 120

    I hope I did it is clear enough. Thank you in advance!

    Oscar

    Hi Oscar,.

    Although it is possible to do, it will be a little clumsy, involving additional columns. It would be much easier to stop using the "-" and use the actual names instead. Order the popup format to create a list that makes it easy to list the names.

    Quinn

  • do the initial value of test data

    Hello world

    I'm testing the scale, and as the firstl value which sensors shows me is not 0, I need my first initial value.

    The thing is I use digital controller and I just subtract the first value of my data to see the actual data.

    The thing is I want to do this program automatically, I mean when I press the button to start the program automatically measure the first data, save it and use it as initial data.

    do you have an idea, suggestion? Thank you

    See below.

  • Competitor Manager - incompatibility of actual values / target after DB update

    Legends of dear,

    We are facing a problem with real concurrent managers and target values are not equal. ENV: R12.0.6 DB - 10.2.0.3

    -We did a Refresh DB sauvegardΘ PROD to the TEST environment

    -When running then after cloning

    -Check if it holds then PROD IP or the NAME of the NŒUD tables FND_NODES

    -Clear FND_NODES by running exec FND_CONC. SETUP_CLEAN proc connecting APPS Schema

    -FND_CONC truncated 2 related tables

    -Then ran on first level DB and APPS Tier AC.

    Now, we couldn't start the concurrent Manager, even if we start it's mismatch with ACTUAL = 0 and TARGET = 1

    Internal newspaper of the Manager

    ================

    Check that your system has sufficient resources to start a concurrent Manager process. Contact your system administration: 18 December 2015 21:00:30

    Start STANDARD competitor Manager: 18 December 2015 21:00:30

    ORACLE 60 error in insert_fcp

    Cause: insert_fcp failed due to the ORA-00060: Deadlock detected while you wait resource

    ORA-06512: at the 'APPS '. FND_CP_FNDSM', line 127

    ORA-06512: at line 1.

    The SQL statement being executed at the time of the error was: begin fnd_cp_fndsm.register_fndsm_fcp(:c,:n,:o,:l,:m,:t); end; and was run from the file & ERRFILE.

    Could not initialize the FNDSM_ORATEST_TEST services manager. Check that ORATEST has been registered for the simultaneous treatment.

    ERROR of the CLIENT CONC-SM (ROUTINE = afpsmcsm) (SM_NAME = FNDSM_ORATEST_TEST) (ERROR = 126)

    Systematic AFPEIM has encountered an error when concurrent Manager STANDARD starting with the oracle/TEST/apps/apps_st/appl/fnd/12.0.0/bin/FNDLIBR library.

    Check that your system has sufficient resources to start a concurrent Manager process. Contact your system administration: 18 December 2015 21:00:33

    Start STANDARD competitor Manager: 18 December 2015 21:00:33

    ORACLE 60 error in insert_fcp

    Cause: insert_fcp failed due to the ORA-00060: Deadlock detected while you wait resource

    ORA-06512: at the 'APPS '. FND_CP_FNDSM', line 127

    ORA-06512: at line 1.

    The SQL statement being executed at the time of the error was: begin fnd_cp_fndsm.register_fndsm_fcp(:c,:n,:o,:l,:m,:t); end; and was run from the file & ERRFILE.

    Could not initialize the FNDSM_ORATEST_TEST services manager. Check that ORATEST has been registered for the simultaneous treatment.

    ERROR of the CLIENT CONC-SM (ROUTINE = afpsmcsm) (SM_NAME = FNDSM_ORATEST_TEST) (ERROR = 126)

    Systematic AFPEIM has encountered an error when concurrent Manager STANDARD starting with the oracle/TEST/apps/apps_st/appl/fnd/12.0.0/bin/FNDLIBR library.

    Check that your system has sufficient resources to start a concurrent Manager process. Contact your system administration: 18 December 2015 21:00:37

    Start STANDARD competitor Manager: 18 December 2015 21:00:37

    Any kind of help would be very appreciated.

    Thank you

    Knockaert

    Check the trace file in the database alert log file and if the error matches of (simultaneous treatment - ORA-00060: Deadlock detected - UPDATED FND_CONCURRENT_QUEUES (Doc ID 866298.1)), you must apply the hotfix mentioned in the doc.

    Thank you

    Hussein

  • A question about the insertion of the localTimeStamp returned the value into a timestamp with time zone column

    Hello

    Oracle version: Enterprise Edition Release 12.1.0.1.0 - 64 bit

    OS: CentOS 4.6 X86_64                  

    I have a question about the localTimeStamp function. According to the documentation for this function is
    the same thing as current_TimeStamp except that the returned value does not include the time zone.

    Consider the following example:

    SQL > create table tmptab (colval timestamp with time zone not null);

    Table created.

    SQL > insert into tmptab (colval) values (localTimeStamp);

    1 line of creation.

    SQL > select t1.colval, tmptab from t1;

    COLVAL

    ---------------------------------------------------------------------------

    24 JANUARY 14 09.45.42.253732 H + 01:00

    SQL >

    Why introduce the foregoing did not fail? the data type of the column in my table colval expects a timestamp with time zone

    during each which inserts as I understand (correct me if I'm wrong) is not provided by the localTimeStamp function.

    Could someone kindly tell me what I misunderstood?

    Thanks in advance,

    dariyoosh wrote:

    Hello

    Oracle version: Enterprise Edition Release 12.1.0.1.0 - 64 bit

    OS: CentOS 4.6 X86_64                  

    I have a question about the localTimeStamp function. According to the documentation for this function is
    the same thing as current_TimeStamp except that the returned value does not include the time zone.

    Consider the following example:

    SQL > create table tmptab (colval timestamp with time zone not null);

    Table created.

    SQL > insert into tmptab (colval) values (localTimeStamp);

    1 line of creation.

    SQL > select t1.colval, tmptab from t1;

    COLVAL

    ---------------------------------------------------------------------------

    24 JANUARY 14 09.45.42.253732 H + 01:00

    SQL >

    Why introduce the foregoing did not fail? the data type of the column in my table colval expects a timestamp with time zone

    during each which inserts as I understand (correct me if I'm wrong) is not provided by the localTimeStamp function.

    Could someone kindly tell me what I misunderstood?

    Thanks in advance,

    Then, when you do

    create table t (neck DATE);

    Insert into t (to_date ('1st January 2014', ' mon-dd-yyyy "");)

    Are you surprised that it works? After all a DATE column contains a time component, you do not provide: but he

    works and gives you 00:00:00 as the component "hour".

    Similarly, the timezone component is being developed to automatically with, I think, time zone of your system.

  • Problem inserting values into a table

    Hi all

    I'm newbe and I'm stack.
    I have a human tasks (model begun), which contains 4 input fields (all channels).
    I have a complex data type called Test, which is defined as 2 channel fileds (Description and result) and a registered number (test).
    I have a Test table, insiemiDiTest.
    What I want to do is to create 2 test object in the input fields and insert in the insiemiDiTest table, to then be able to use the loop to insert into the DB.
    Assume that the user insert the following information in the filed entry:
    INPUT1 descrTest1
    ResultTest1-INPUT2
    INPUT3 descrTest2
    INPUT4 resultTest2
    I want to play in the process of the insiemiDiTest variable of length 2 and the following content:
    insiemiDiTest [1] .testNumber = 1
    insiemiDiTest [1] .description = descrTest1
    insiemiDiTest [1] property = resultTest1
    insiemiDiTest [2] .testNumber = 2
    insiemiDiTest [2] .description = descrTest2
    insiemiDiTest [2] property = resultTest2

    If I use data binding and I have a link
    INPUT1 with .description insiemiDiTest [1]
    INPUT2 with property insiemiDiTest [1]
    Number('1') with .testNumber insiemiDiTest [1]
    I get an error saying that the insiemiDiTest [1] .description is empty and cannot be copied.

    Unfortunaly I can't directly use the table in the task of the user, because later I have to use the conversation when the calling process and we found I have limitation.
    I can get an indication on how to do it.
    I'm approccing in the right way or am I completely wrong?
    Thanks in advance and Merry Christmas.

    Because your input is coming from a few strings and not a table, you can just add a Script activity to your process and to define table of your target XSD using XML.

    To do this, you must add a Script to the activity-> click on "Data Associations"-> drag the icon above your target expression builder object on the right side (not the table but the table parent)-> open the XPath expression box in the Middle-> click 'XPath Exp' in the drop-down list at the top.

    I don't know what your XSD, but in the text below, I tried to show you the XML you need for this XPath expression using the values you provided.

    oraext:parseXML(concat('
    
      
        ','1','
        ',bpmn:getDataObject('descTest1'),'
        ',bpmn:getDataObject('resultTest1'),'
      
    
      
        ','2','
        ',bpmn:getDataObject('descTest2'),'
        ',bpmn:getDataObject('resultTest2'),'
      
    
    '))
    

    When I 'bpmn:getDataObject('...')', you should rather to insert your data object variables four your process chain.

    Hope this helps,
    Dan

Maybe you are looking for

  • Defective micro - horrible customer service

    Hello I took my iPhone 6 in a Genius Bar today because in the last four weeks my microphone has been very subdued and fading in and out of volume. After a wait of about an hour and the staff member taking it on the back a few times she told me they c

  • How do I export Notes to my iPod Touch?

    I looked at this question, and the most recent response is dated "2011". Please help me as far as possible. I want to be able to transfer/copy my notes from my iPod Touch to my MacbookPro, but if someone can tell me how to transfer to my computer Win

  • Video card upgrade (p6518f)

    Hello I wanted to update the video on my desktop PC HP Pavilion p6518f for some time. I don't know what would be the best, particularly given that there is not much room for a video card. I have play games quite frequently; mainly of WoW. Thank you v

  • HP Compaq 6910p touch controls no longer works...

    I installed windows 7 Home Premium 32 and also installed Snow Transformation Pack 1.5. I have used and deleted some kind of buttons 1, 2, 3, 4. I did not restore point before using it. Now, I want to use the original Windows 7 without additional exte

  • Printer HP Officejet Pro 8100 &amp; custom paper sizes

    Found all useful instructions on creating new formats of paper custom in Windows 7. But am complete novice & need to buy a printer for a charity. Installs on this model because of good reviews, but more work will be 1 document of custom paper size. N