Multiplying the issue tables

Hey guys I searched and searched and searched the forums, on google, and tried youtubing but I'm having problems creating a VI. What I have to do is to create two tables 1 d that must be multiplied together and divided by 100 to create a 2D array. I tried the multiplies together through the function of multiplication, but it only allows me to make an exit table 1 d. I have a hard time with this. Here is a picture of what I have and what I'm supposed to have. Thanks for the help guys. Please help me learn the guys. Explanations would be great. I know I look stupid, but it's an honest question.

Wrap a loop FOR around the operation of multiplication and disable indexing on the "main"... entry tunnel Check it out seeing a 2D array.

Tags: NI Software

Similar Questions

  • HP585 direct attached mirroring of the issue table

    Hi, am new to the forum so forgive me if I am committed any misstep

    We have two servers HP DL585 (amd opteron) with Direct-attached storage bays (attached via a scsi cable), we want to create an environment from virtual machines using ESX 3.5 (this is whats available us - packed) we have also all vmware tools put at our disposal, but no other budget to spend on of NAS\SAN

    Is there a way to create a mirror between the two machines (and tables so to speak) for failover is possible if we're going down or something similar - I think that HP storageworks storage mirroring for this, but nothing to VMware build to do the job?

    We will install the version of ESX on the disks (mirrored) hard local and the slices VM on the array (raid 5)

    You can check with HP. It may be possible to use the MSA70 in any of these two DL585. You may need a few extra bits of a license, but?

  • Issue using the ENGINE table MEMORY SUNOPSIS (high priority)

    Hi gurus,

    It is to launch an operator, like any error by using the SUNOPSIS MEMORY ENGINE to generate a .csv file using the database as a source table.

    ODI-1228: SrcSet0 (load) task fails on the target connection SUNOPSIS ENGINE table SUNOPSIS MEMORY ENGINE.
    Caused by: java.sql.SQLException: unknown token

    (LKM used: LKM Sql to Sql.)
    IKM used: IKM Sql to add files.)

    can you please help me about this ASAP so that it became a show-stopper for me to go further.

    Any help will be greatly appreciated.

    Thank you very much
    Pavan

    Published by: Pavan. on July 11, 2012 10:22

    Hi all

    The issue has been resolved successfully.

    The solution is
    We need to change the E$ _, I have$ _, J$ _,... E_, I_ , J_... ((c'est à dire, enlever le symbole '$')) in the PHYSICAL SCHEMA of ENGINE table SUNOPSIS MEMORY according to the information provided below.

    When interfaces running and using an XML schema or file complex as the transit area, the 'Unknown token' error. This error is caused by the HSQL (2.0) updated version. This new version of HSQL requires that the names of tables that contains a dollar sign ($) are enclosed in quotes. Temporary tables (loading, integration, etc.) that are created by the knowledge Modules do not respect this requirement on the technologies of complex and HSQL records.

    To work around the problem, change the physical schema definitions to remove the dollar symbol ($) of all paintings of prefixes work. Scenarios must be regenerated with these new settings.

    It has worked well for me.

    Thank you
    Pounet

  • Key issue of the external table preprocessor - ssh

    I want an external table that runs a df command in a script

    DFH.sh more

    / bin/df h

    CREATE TABLE XT_df

    (

    SCRIPT_OUTPUT VARCHAR2 (2000)

    )

    EXTERNAL ORGANIZATION

    (TYPE ORACLE_LOADER

    Datapumpdir default DIRECTORY

    ACCESS SETTINGS

    (RECORDS DELIMITED BY NEWLINE

    PREPROCESSOR datapumpdir: 'dfh.sh'

    jump 1

    FIELDS TERMINATED BY ', '.

    surrounded of possibly "" "

    )

    LOCATION (datapumpdir: 'xtdf.dat')

    )

    Select * from XT_df

    And it works.  I see my df output.

    I want to run something similar on multiple hosts, but the same host, so I place another table and call another shell script to run a remote ssh script after I have set user equivalence

    / usr/bin/SSH oracle@remotehost1 ' df-h | grep u02'

    the works of shell script

    However, qualifying by selecting in the external table I get ssh host checking has no error.

    [Error] Run (1: 1): ORA-29913: error in executing ODCIEXTTABLEFETCH legend

    ORA-29400: data cartridge error

    KUP-04095: order of preprocessor /winlogs/dfh.sh has detected the error "host key verification failed.

    "

    So what could be the cause that if she works well as oracle from command line, checking the .ssh key is on the other side (I think).

    > Datapumpdir: 'dfh.sh PREPROCESSOR'

    Modify the script above to include the following line as the second line of the script

    env | Tri o /tmp/capture.env

    view the contents of /tmp/capture.env return here after it gets filled

  • The list of issue table

    I have a list stored in the mysql database which looks like this: 12, 45, A, B, 87, 98

    I need to use coldfusion to retrieve the list and convert each element to an element of a table. that is to say:
    tempArray [0] = 12;
    tempArray [1] = 45;

    and so on. I need to do this because I'm back the created table flashing.

    Thanks for your help!

    The problem is not create table, which seems fine. The question I see is that you do not return the table, just the results of the query. If you need to return only the table, change your cfreturn to . If you need to return the results of the query and the table, then you will need to combine them somehow, as you can only return a thing with cfreturn.

    CR

  • The issue of external Table...

    Hello world

    I am new to working on 'EXTERNAL TABLES'. Is it possible to add another column (what is not
    in the flat file) with a "default"?

    I'm just trying to create a simple TABLE 'EXTERNAL '...

    question 1
    ==========
    EX:
    ===
    
    Flat file that i get will be like this (sample)
    
    ENG,England,English
    SCO,Scotland,English
    IRE,Ireland,English
    WAL,Wales,Welsh
    
    If i create a external table like the following everyting would be fine..
    
    CREATE TABLE countries_ext (
      country_code      VARCHAR2(5),
      country_name      VARCHAR2(50),
      country_language  VARCHAR2(50)
    )
    ORGANIZATION EXTERNAL (
      TYPE ORACLE_LOADER
      DEFAULT DIRECTORY ext_tables
      ACCESS PARAMETERS (
        RECORDS DELIMITED BY NEWLINE
        FIELDS TERMINATED BY ','
        MISSING FIELD VALUES ARE NULL
        (
          country_code      CHAR(5),
          country_name      CHAR(50),
          country_language  CHAR(50)
        )
      )
      LOCATION ('Countries1.txt','Countries2.txt')
    )
    PARALLEL 5
    REJECT LIMIT UNLIMITED;
    
    but i need another column with a "default value" "N"  which is not in flat file
    
    CREATE TABLE countries_ext (
      country_code      VARCHAR2(5),
      country_name      VARCHAR2(50),
      country_language  VARCHAR2(50)
    )
    ORGANIZATION EXTERNAL (
      TYPE ORACLE_LOADER
      DEFAULT DIRECTORY ext_tables
      ACCESS PARAMETERS (
        RECORDS DELIMITED BY NEWLINE
        FIELDS TERMINATED BY ','
        MISSING FIELD VALUES ARE NULL
        (
          country_code      CHAR(5),
          country_name      CHAR(50),
          country_language  CHAR(50)
        --,
        -- Valid_flag default value "N"  Is it possible to add this 
                                         column while creating the external table?
                                         this column is not there in the flat file.
        )
      )
      LOCATION ('Countries1.txt','Countries2.txt')
    )
    PARALLEL 5
    REJECT LIMIT UNLIMITED;
    quetion2
    ========
    
     LOCATION ('Countries1.txt','Countries2.txt')
    
    I have multiple files (around 150) which are in the same format.
    Do i have to mention all the file names in the location clause? if i have to create a table 
    on those 150 file?
    
    Ex  LOCATION ('Countries1.txt','Countries2.txt','Countries3.txt','Countries4.txt','Countries5.txt','Countries6.txt','Countries7.txt','Countries8.txt', and so on....)
    
    or 
    
    Is it possible to put (countries*.txt)?
    Sorry if this topic discussed somewhere in the forum.

    Thank you
    Phani

    The external table requires the exact name of the file, it does not accept wildcards. If filenames are stable, just take the hit and list them all in the LOCATION once. If the file names are fungible Pretreat then screwed by them cutting in a single file, which is the only name in the LOCATION clause.

    Cheers, APC

    blog: http://radiofreetooting.blogspot.com

  • Firefox can't find the text on the HTML table cells

    Firefox cannot find (Ctrl + F) the text inside HTML tables, as in
    http://www.dip-Badajoz.es/BOP/ventana_anuncio.php?id_anuncio=22714 & FechaSolicitada = 2008-02-20
    If you try to search "Solano", Firefox will not find any matches, but "Solano" is here. This works fine on Chrome, for example.

    Thank you

    I am also on Linux, but if I start a version of Firefox 6 via Wine the I don't have a problem with a search for "Solano".

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions of the origin of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

  • Digital control do not light the Subvi table lines

    Hello people of the forum NOR!

    I have a small question, I think you could help me:

    I tried to find a way that would allow my program read data, acquired from a millimeter and use a table - with coefficients - multiply the data obtained.

    When it was written directly on my program, it worked fine, but when I created a sub VI to 'clean up', he ceased to alternate values and it uses the fixed value of the Sub VI.

    The sub VI has a connector to the CNC.

    This program is the 'read the table under vi' attached to this message and the other, is the program I use to get my data.

    Thank you before useful assistance.

    Concerning

    Leandro

    Hello Leandro, Dennis

    I don't think I got the problem right so I can only guess:

    VI Sub is placed outside the Structure of sequence and therefore only runs once at the beginning of the VI.

    As Dennismentioned, since the "Table" does not have default values assigned it cant work now.

    It would be better if you post an another Set of screws: (Bevore, adding the Sub VI and after)

    Concerning

    Moritz M.

  • I want to multiply the two matrices

    but one of them is similar this is why he multiplies the first table of the first value from the second table

    There is only a single multiplication involving a table on your diagram and it does not associate the two tables, it is a table and a waveform.  -What are you talking about?

    You can use a Structure of elements in Place with a waveform unbundle / node elements Bundle to unbundle the component Y of your waveform table, then multiply it with your table, then package the result as the new component of the matrix Y.

  • 0x8004fe21 - "this computer is not running Windows" - KB3024777 update does not resolve the issue

    Hello

    My Windows 7 has been giving me some problems lately. I get messages that "this computer is not running genuine Windows" (0x8004fe21). I'm running a genuine version of windows, and when I check the properties of my computer, it tells my that I have in fact validated my copy of Windows 7.

    I also had a problem when new updates to Windows Update settle not and after a few google searches, I have concluded that this must have been caused by bad KB3004394 update.

    It has been suggested that I deleted this update, but it did not show anywhere under installed updates.
    It has also been suggested that I downloaded the patch of "quick fix" KB3024777, which is supposed to remove the faulty update.
    I did, and since then, the issue of windows updates has been resolved. Again installing the updates of windows, but I still get messages I'm not authentic Windows.

    In addition, I tried all sorts of things, I found in online forums, but I don't remember exactly what those who were, because most of them were things that I didn't understand.

    Maybe you guys can help. Thank you in advance!

    I was told to run MGDiag and post the results here so here go us:

    Diagnostic report (1.9.0027.0):
    -----------------------------------------
    Validation of Windows data-->

    Validation code: 0
    Code of Validation caching online: 0x0
    Windows product key: *-* - QCPVQ - KHRB8-RMV82
    Windows product key hash: + Rj3N34NLM2JqoBO/OzgzTZXgbY =
    Windows product ID: 00359-OEM-8992687-00095
    Windows product ID type: 2
    Windows license Type: OEM SLP
    The Windows OS version: 6.1.7601.2.00010300.1.0.003
    ID: {DFF68C19-1503-487E-A692-8C435EF12F1F} (1)
    Admin: Yes
    TestCab: 0x0
    LegitcheckControl ActiveX: N/a, hr = 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Product name: Windows 7 Home Premium
    Architecture: 0 x 00000009
    Build lab: 7601.win7sp1_gdr.150316 - 1654
    TTS error:
    Validation of diagnosis:
    Resolution state: n/a

    Given Vista WgaER-->
    ThreatID (s): n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002

    Windows XP Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    File: No.
    Version: N/a, hr = 0 x 80070002
    WgaTray.exe signed by: n/a, hr = 0 x 80070002
    WgaLogon.dll signed by: n/a, hr = 0 x 80070002

    OGA Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002
    OGAExec.exe signed by: n/a, hr = 0 x 80070002
    OGAAddin.dll signed by: n/a, hr = 0 x 80070002

    OGA data-->
    Office status: 109 n/a
    OGA Version: N/a, 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Office Diagnostics: 025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3

    Data browser-->
    Proxy settings: N/A
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32)
    Default browser: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
    Download signed ActiveX controls: fast
    Download unsigned ActiveX controls: disabled
    Run ActiveX controls and plug-ins: allowed
    Initialize and script ActiveX controls not marked as safe: disabled
    Allow the Internet Explorer Webbrowser control scripts: disabled
    Active scripting: allowed
    Recognized ActiveX controls safe for scripting: allowed

    Analysis of file data-->

    Other data-->
    Office details: {DFF68C19-1503-487E-A692-8C435EF12F1F}1.9.0027.06.1.7601.2.00010300.1.0.003x 64*-*-*-*-RMV8200359-OEM-8992687-000952S-1-5-21-3113075717-3854388810-3852344427Dell Inc.. L421X XPS Dell Inc.. A14 20130522000000.000000 + 00011A80F00018400FE04130409Malay Peninsula Standard Time(GMT+08:00)03DELL CL09 109

    Content Spsys.log: 0 x 80070002

    License data-->
    The software licensing service version: 6.1.7601.17514

    Name: Windows 7 HomePremium edition
    Description: operating system Windows - Windows (r) 7, channel OEM_SLP
    Activation ID: d2c04e90-c3dd-4260-b0f3-f845f5d27d64
    ID of the application: 55c92734-d682-4d71-983e-d6ec3f16059f
    Extended PID: 00359-00178-926-800095-02-1043-7601.0000-1052015
    Installation ID: 019613804902779735492485549691725206407303392291262906
    Processor certificate URL: http://go.microsoft.com/fwlink/?LinkID=88338
    The machine certificate URL: http://go.microsoft.com/fwlink/?LinkID=88339
    Use license URL: http://go.microsoft.com/fwlink/?LinkID=88341
    Product key certificate URL: http://go.microsoft.com/fwlink/?LinkID=88340
    Partial product key: RMV82
    License status: licensed
    Remaining Windows rearm count: 2
    Trust time: 19/04/2015-16:10:57

    Windows Activation Technologies-->
    HrOffline: 0x00000000
    HrOnline: 0x00000000
    Beyond: 0 x 0000000000000000
    Event timestamp: 4:15:2015 22:03
    ActiveX: Registered, Version: 7.1.7600.16395
    The admin service: recorded, Version: 7.1.7600.16395
    Output beyond bitmask:

    --> HWID data
    Current Hash HWID: LgAAAAAAAQABAAIAAAABAAAAAwABAAEAln3yCEagjqxGq8ILYPbwHZ5vvtyWYw ==

    Activation 1.0 data OEM-->
    N/A

    Activation 2.0 data OEM-->
    BIOS valid for OA 2.0: Yes
    Windows marker version: 0 x 20001
    OEMID and OEMTableID consistent: Yes
    BIOS information:
    ACPI Table name OEMID value OEMTableID value
    CL09 DELL APIC
    CL09 DELL FACP
    DBGP DELL CL09
    HPET DELL CL09
    STARTING DELL CL09
    CL09 MCFG DELL
    TCPA DELL CL09
    CL09 DELL SLIC
    CL09 DELL UEFI
    ASF! REFERENCE DELL CL09
    CL09 DELL SLIC
    SSDT CRV COMPAL ORB
    ASPT DELL CL09
    FPDT DELL CL09
    SSDT CRV COMPAL ORB
    SSDT CRV COMPAL ORB
    LAURENCE DELL CL09
    SSDT CRV COMPAL ORB
    SSDT CRV COMPAL ORB

    I don't see anything abnormal in your report - which probably means that the problem is a race condition where your AV is to win the fight for access to certain critical files when the Service for the Protection of software needs to access.

    Certainly, it will disappear after a few days.

  • Special characters in the filter table

    Hello

    JDev 11.1.2.4

    I have a filter table displayed in the selectOneChoice form. The entrance is the character *. If I select this element in the LOV and run filtering, the * is retired (I checked the generated SQL code). I don't have the issue of another 'normal' value such as EN, (SQL CODE generated a where CLAUSE with the value selected as well as the '%' character. Is it possible to use * as a filter?

    Thank you

    Got what you have to escape the social characters of qbe. However, it requires little code. You can watch https://tompeez.wordpress.com/2013/02/16/jdeveloper-11-1-1-6-0-escape-qbe-operators-in-filterable-tables/

    When I introduced the technique.

    Timo

  • The truncated table rows

    Hi team,

    One of my colleague ran a batch which will truncate a table and insert the final table by extracting data from different tables in backup taking the old table.

    But today before 10 minutes he missed to keep the export backup of this table and ran the batch. All the old data of the truncated table and now we need these data.

    Flashback is DISABLED in our case and Undo retention is dry 7200 and since it is a DDL so it will change the definition of the table.

    Is it possible to get the data that truncated.

    Daily HT full backup will run and we are in the process of restoring the backup but the db size is 4 TB and it will take time and then let's apply archive logs, before that got truncated.

    Until can we try something else?

    Hemant seems good to me.

    Please check the Version of Oracle where you are restoring the database and the Oracle version of the primary database that saves youi have taken.

    I'm 100% sure that there could be the difference in the release.

    We faced this problem 2 times and every time the issue is different binary or different architecture was the problem.

  • RMTTRAIL must be specified before the FILE/TABLE/SEQUENCE

    Hi Experts,

    Just trying to debug this issue. Please help me in the question of fixing.

    Currently this is my approx.

    OS - OEL 6.3

    DB - 12.1.0.1

    GRID - 12.1.0.1

    2 node RAC

    I have a Container 1 (c1) with PDB (p1, p2) 2 and trying to replicate of C1. P1. SH-> C1. P2. SH for a single table and below is my param file and I recorded extracted and added to GGSCI

    EXTRACT C1SH1_ED

    SETENV (ORACLE_SID = "c1")

    SETENV (ORACLE_HOME=/opt/oracle/rdbms/12.1.0.1)

    SETENV (NLS_LANG = 'AMERICAN_AMERICA. AL32UTF8")

    SETENV (NLS_DATE_FORMAT = DD-MON-YYYY HH: MI: SS AM)

    USERIDALIAS ggc1

    DISCARDFILE. / direrr/c1.dsc, APPEND.

    REPORTCOUNT EVERY 30 MINUTES, FARE

    STATOPTIONS REPORTFETCH

    WARNLONGTRANS 5 m, 3 m CHECKINTERVAL

    WILDCARDRESOLVE IMMEDIATE

    LOGALLSUPCOLS

    UPDATERECORDFORMAT COMPACT

    SOURCECATALOG P1

    Table SH. T_DELS;

    then I tried to run the EXTRACT and the weiredly I see this error (please let me know if I make a mistake)

    RMTTRAIL must be specified before the FILE/TABLE/SEQUENCE <-this is what I see in my ggserr.log

    2014-05-26 00:32:01 INFO OGG - 02695 Oracle GoldenGate Capture for Oracle, c1sh1_ed.prm: syntax of the ANSI SQL parameter is used for the analysis of the parameter.

    2014-05-26 00:32:01 INFO OGG - 02095 Oracle GoldenGate Capture for Oracle, c1sh1_ed.prm: successfully set ORACLE_SID = c1 environment variable.

    2014-05-26 00:32:01 INFO OGG - 02095 Oracle GoldenGate Capture for Oracle, c1sh1_ed.prm: set successfully ORACLE_HOME=/opt/oracle/rdbms/12.1.0.1 environment variable.

    2014-05-26 00:32:01 INFO OGG - 02095 Oracle GoldenGate Capture for Oracle, c1sh1_ed.prm: set NLS_LANG = AMERICAN_AMERICA successfully environment variable. AL32UTF8.

    2014-05-26 00:32:01 INFO OGG - 02095 Oracle GoldenGate Capture for Oracle, c1sh1_ed.prm: variable environment successfully set NLS_DATE_FORMAT = DD-MON-YYYY hh: mi: SS AM.

    2014-05-26 00:32:04 INFO OGG - 03522 Oracle GoldenGate Capture for Oracle, c1sh1_ed.prm: setting session time zone at the source of database timezone "GMT".

    2014-05-26 00:32:04 ERROR OGG - 00362 Oracle GoldenGate Capture for Oracle, c1sh1_ed.prm: RMTTRAIL must be specified before/SEQUENCE/TABLE FILE.

    2014-05-26 00:32:04 ERROR OGG - 01668 Oracle GoldenGate Capture for Oracle, c1sh1_ed.prm: PROCESS ABENDING.

    2014-05-26 00:32:04 INFO OGG - 00975 Oracle GoldenGate for Oracle, Manager mgr.prm: client_start_er_prog failed.

    2014-05-26 00:32:04 WARNING OGG - 01742 Oracle GoldenGate for Oracle shell: command sent to MGR MGR returned with an error response.

    2014-05-26 00:33:29 INFO OGG - 00979 Oracle GoldenGate for Oracle, Manager mgr.prm: EXTRACT of C1SH1_ED is down (free of charge).

    2014-05-26 00:38:30 INFO OGG - 00979 Oracle GoldenGate for Oracle, Manager mgr.prm: EXTRACT of C1SH1_ED is down (free of charge).

    -extract is registered and has successfully added.  Please help me

    I still wonder why we see RMTRAIL when we check out local config

    Add this parameter to your setting

    exttrail ./dirdat/ll

    and run the following statements:

    GGSCI > remove from C1SH1_ED

    GGSCI > add from C1SH1_ED, tranlog, begin now, NET 2

    GGSCI > add exttrail. / dirdat/ll, extracted from C1SH1_ED, 100 MB

  • How to remove the space between the nested tables.

    I'm not able to line up the parts of the nested table side by side without a big white space. You are using Mac OS 10, DW CS 6. link to pageScreen Shot 2015-06-03 at 10.44.50 PM.png

    Thank you very much. J

    It's just terribly, terribly code.

    You should not be using heights or split cells in a table.

    The cause of your 'current' issue is through the establishment of a height on yourcell:

  • Drop-down menu used with anchor on the long table of data links

    Hello

    I have a page on our site where we used a drop shape with anchor tags to let the visitor easy access to specific locations within a long table of data on the same page. Recently, I noticed that the anchors are walking around is no longer the tags in the page but only the beginning of the table anyway. I don't know if over time a few additional codes may have been added to the page that is not in conflict with the form of drop down menu, or if it's something else. I've been agonizing about this for awhile now and unable to fix. I'm hoping a new set of eyes will revisit the issue. the url is http://www.vectron.com/products/saw/saw.htm

    Thank you

    Looks like there are a good number of errors html on this page, some of them have to do with using the code of the named anchor.

    Looks like you have placed the anchors between the openingand the child of the opening. Content cannot go there, move them in theTags and see if that helps.

    It could be something else however, html errors are one of the main causes of the problems of display/functionality. Visit the validator to http://validator.w3.org to clean up your errors. If you work with the code clean and correctly positioned anchors, after return and we can take a closer look.

Maybe you are looking for

  • Do the tabs to open next to the tab you opened

    I just got the beta version of firefox version 28 1. I label mix more as my manager tab. When I went to 28 she stopped to open my tabs next to the one I use. He open them now at the end of the row of tabs. I mean that if I have 15 tabs open, as I do

  • The touchpad button LED stopped working on the satellite P series

    I run the ccleaner 2.17 in the logarithmic function has stopped working and led to the play, stop, rewind... "keys, between the two speakers.Can someone help me?

  • How can d:\index.htm - I get this to discuss improvements on a CD

    I have an enhanced CD which is music with video images and texts. I can't access improvements and only music plays. How to show improvements. The enclosed booklet that came with the CD says I 'allow' the 'AUTORUN' program and I don't know how to do t

  • Switching between the ADF and the glass on a C309a

    Using the HP Solution Center to scan on a C309a, after that I used the ADF (ADF), I can't scan the glass directly.  He insists on the use of the ADF.  I know there is a setting somewhere to choose glass or ADF, but I can't (I found once before and ha

  • I can add more ram to my dimension E510

    I was told that I needed more RAM to run my games.  CPU works real slow and all the time.  I have Windows XP Service Pack 3 in series.  My Dell is 6 years old and don't me you have confidence to buy another because of complications related to the dea