documenting code

This will be a stupid question, but how I get the code in my VI documentation, see the yellow text 'Measure reading'. I can't find in the functions or on the menu. The one I have here I copied one another VI.

FYI this VI use Agilent 34401 DMM and 2 to 4 measurements per second, kind of on the slow side but that's going to be my next project, but if this helps someone a little because it's a joint.

Just double click on the block diagram and start typing

Tags: NI Software

Similar Questions

  • Where should questions about the JDEV/ADF positions?

    Hello

    Where should questions about the JDEV/ADF positions?

    JDeveloper and ADF or

    JDeveloper and ADF?

    I found there may be some different advantageous:

    https://forums.Oracle.com/message/11109674?TSTART=0#11109674

    Thank you.

    Well, the other forum you mentioned is the Korean equivalent of the English forum.

    You have already discovered, it is not controlled to many users. I didn't know that it exists at all.

    In general it is to you where you ask your questions. All for one here are driven by the community and some employees of the Oracle, you cannot wait has answered all your questions. If you really need to answer you go through paid support.

    A tip for getting help is to provide a well-defined use cases, information relating to your environment and documented code showing what you have already tried.

    Timo

  • How to interview an ESXi box from a VBScript script

    Hi people,

    What technology could by used to get information programmatically in an ESXi 4 box from a remote computer?

    I've scoured the forums for a few days, but not really get very far. I saw that the CIM stuff could be accompanied by esxi, so I was wondering if it was possible to use Windows WMI to access esxi.

    I also saw that each box of esxi has an interface https - given the username root and password is there a way to get info system via https?

    Other means to interrogate esxi?  I certainly question from the MS platform so please all pointers, articles, discussions, indices - anything - would be much appreciated...

    Thank you

    Paul

    What "data" you want to extract? If it is material information, then Yes, the CIM API is what you'll want to use. If you want to request information on your ESXi host and which virtual machines are working, how much each vCPU/vMEM, host information or you want to use VMware vSphere configuration API. The API itself is exposed as a web service standard and there are various links of language that are offered such as vSphere SDK for Perl (Perl bindings), PowerCLI (Windows PowerShell connections), VI Java (Java Bindings), vSphere SDK for c# (c# webservices bindings), etc.

    If you want to use any other programming language or script that those already offered, then you will need to create your own secondary links client that is not for beginners, it requires a bit of work, and you will also need to ensure that the language can talk to SOAP/WebServices engine and create the appropriate/etc. calls

    If you're new the VMware/SDK API, you'll want to take a look at this document first - http://communities.vmware.com/docs/DOC-7270

    There is also a Developer Forums of VMware with the support of different language, documentation, code examples and getting started guides to- http://communities.vmware.com/community/developer

    To answer your question, vbscript is probably not what you want to use it, it will probably not even you need support. If you come from a Windows environment, take a look by using PowerShell and PowerCLI

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

    William Lam

    VMware vExpert 2009,2010

    VMware scripts and resources at: http://www.virtuallyghetto.com/

    Twitter: @lamw

    repository scripts vGhetto

    Introduction to the vMA (tips/tricks)

    Getting started with vSphere SDK for Perl

    VMware Code Central - Scripts/code samples for developers and administrators

    VMware developer community

    If you find this information useful, please give points to "correct" or "useful".

  • Error Message ORA-31043: Element 'person' no globally defined in the schema

    Hi all

    We recorded 2 documents xsd as follows...
    DECLARE
       lc_test_xsd   CLOB;
    BEGIN
    
       lc_test_xsd   := '<?xml version="1.0" encoding="UTF-8"?>
    
    <schema 
        xmlns="http://www.w3.org/2001/XMLSchema"
        xmlns:tns="http://www.xyz.com/cicat/types/basictypes/2/0" 
        targetNamespace="http://www.xyz.com/cicat/types/basictypes/2/0" 
        version="2.0">
        
        <simpleType name="LastNamePrefix">
            <annotation>
                <documentation>
                    Additional word to last name (name prefix) corresponding to SAP HR Core 
                    Table T535N; V.
                </documentation>
            </annotation>
            <restriction base="tns:String255" />
        </simpleType>
        <simpleType name="CountryID">
            <annotation>
                <documentation>
                    Codes for the representation of country names according to ISO 3166.
                </documentation>
            </annotation>
            <restriction base="string">
                <maxLength value="2" />
            </restriction>
        </simpleType>
        <simpleType name="LocationCode">
            <annotation>
                <documentation>
                    Code of a location, e.g. Fe, Wa2 or Kor.
                </documentation>
            </annotation>
            <restriction base="string">
                <maxLength value="4" />
            </restriction>
        </simpleType>
        <simpleType name="GenderCode">
            <annotation>
                <documentation>
                    Code of the gender: male, female, unknown. Unknown is used if the value is 
                    unknown or must not be stored due to legal restrictions.
                </documentation>
            </annotation>
            <restriction base="string">
                <enumeration value="male" />
                <enumeration value="female" />
                <enumeration value="unknown" />
            </restriction>
        </simpleType>
        <simpleType name="String255">
            <annotation>
                <documentation>
                    String with 255 characters max
                </documentation>
            </annotation>
            <restriction base="string">
                <maxLength value="255" />
                <minLength value="1" />
            </restriction>
        </simpleType>
        <simpleType name="RB-CostCenter">
            <annotation>
                <documentation>
                    Cost Center
                </documentation>
            </annotation>
            <restriction base="string">
                <minLength value="3" />
                <maxLength value="6" />
            </restriction>
        </simpleType>
        <simpleType name="OrgUnitName">
            <annotation>
                <documentation>
                    Name of the Organizational Unit
                </documentation>
            </annotation>
            <restriction base="string">
                <minLength value="1" />
                <maxLength value="18" />
            </restriction>
        </simpleType>
        <complexType name="StringMCA">
            <annotation>
                <documentation>
                    Multi Country String. Strings, which must be stored in ASCII code and 
                    country specific. The subelement ASCIIString contains the string encoded
                    with ASCII. The subelement countrySpecificString allows country specific
                    encoding.
                </documentation>
            </annotation>
            <sequence>
                <element name="asciiString" type="tns:String255" minOccurs="0" />
                <element name="countrySpecificString" type="tns:String255" />
            </sequence>
        </complexType>
        <simpleType name="OrgUnitID">
            <annotation>
                <documentation>
                    ID of the Organizational Unit
                </documentation>
            </annotation>
            <restriction base="unsignedInt">
                <totalDigits value="8" />
            </restriction>
        </simpleType>
        <simpleType name="GlobalID">
            <annotation>
                <documentation>
                    Global unique identifier of persons at xyz
                </documentation>
            </annotation>
            <restriction base="unsignedInt">
                <totalDigits value="8" />
            </restriction>
        </simpleType>
        <simpleType name="CiCatPersonID">
            <annotation>
                <documentation>
                    CI-CAT Identifier of Persons (CiCat-PID). Unique identifier of a person
                    in CI-CAT
                </documentation>
            </annotation>
            <restriction base="unsignedInt">
                <totalDigits value="20" />
            </restriction>
        </simpleType>
        <simpleType name="CiCatAccountID">
            <annotation>
                <documentation>
                    CI-CAT Identifier of AD Accounts (CiCat-Ben-Sid). Unique identifier of 
                    AD Accounts in CI-CAT.
                </documentation>
            </annotation>
            <restriction base="unsignedInt">
                <totalDigits value="20" />
            </restriction>
        </simpleType>
        <simpleType name="PersonnelActionTypeCode">
            <annotation>
                <documentation>
                    The operation that was performed on the person: entry, data change,
                    re-entry (into company), exit (out of company)
                </documentation>
            </annotation>
            <restriction base="string">
                <enumeration value="entry" />
                <enumeration value="data change" />
                <enumeration value="re-entry" />
                <enumeration value="exit" />
            </restriction>
        </simpleType>
        <simpleType name="ContractStatus">
            <annotation>
                <documentation>
                    Contract Status: active, inaktive, resigned, retired
                </documentation>
            </annotation>
            <restriction base="string">
                <enumeration value="retired">
                    <annotation>
                        <documentation>
                            End of contract relationship because of retirement
                        </documentation>
                    </annotation>
                </enumeration>
                <enumeration value="resigned">
                    <annotation>
                        <documentation>
                            End of contract because of quitting
                        </documentation>
                    </annotation>
                </enumeration>
                <enumeration value="inactive">
                    <annotation>
                        <documentation>
                            Incactive contract relationship, e.g. motherhood, suspension
                        </documentation>
                    </annotation>
                </enumeration>
                <enumeration value="active">
                    <annotation>
                        <documentation>
                            Normal contract status
                        </documentation>
                    </annotation>
                </enumeration>
                <enumeration value="deleted">
                    <annotation>
                        <documentation>
                            Contract physically deleted in the source system
                        </documentation>
                    </annotation>
                </enumeration>
            </restriction>
        </simpleType>
        <simpleType name="KnownAssociateCode">
            <annotation>
                <documentation>
                    Describes status of person to xyz: internal/external/fixed-term
                </documentation>
            </annotation>
            <restriction base="string">
                <enumeration value="External" />
                <enumeration value="Internal" />
                <enumeration value="Fixed Term" />
                <enumeration value="unknown" />
            </restriction>
        </simpleType>
        <simpleType name="AssociateCode">
            <annotation>
                <documentation>
                    Describes status of person to xyz: union of known values plus free string 
                    for not yet known types
                </documentation>
            </annotation>
            <union memberTypes="tns:KnownAssociateCode string" />
        </simpleType>
        <simpleType name="KnownExternalRelationType">
            <annotation>
                <documentation>
                    Describes relation (contract relation) of external person to xyz:
                    contractor/customer/supplier/subsidiary/selfregistered
                </documentation>
            </annotation>
            <restriction base="string">
                <enumeration value="Contractor" />
                <enumeration value="Customer" />
                <enumeration value="Supplier" />
                <enumeration value="Subsidiary" />
                <enumeration value="Selfregistered" />
                <enumeration value="unknown" />
            </restriction>
        </simpleType>
        <simpleType name="ExternalRelationType">
            <union memberTypes="tns:KnownExternalRelationType string" />
        </simpleType>
        <simpleType name="ValidityState">
            <annotation>
                <documentation>
                    If an attribute was taken over by an authoritative source such as HR-MDS or 
                    WOM. Set to "Valid" to indicate that the value was taken over from the 
                    source and is therefore valid. Set to "Invalid" if the source indicates the
                    value is no longer value, e.g. because it got deleted. Otherwise set to 
                    "Unknown", e.g. when the value was entered manually.
                </documentation>
            </annotation>
            <restriction base="string">
                <enumeration value="Valid" />
                <enumeration value="Invalid" />
                <enumeration value="Unknown" />
            </restriction>
        </simpleType>
        <complexType name="HrPersonnelId">
            <sequence>
                <element name="hrSourceSystem">
                    <annotation>
                        <documentation>
                            Name of HR source system
                        </documentation>
                    </annotation>
                    <simpleType>
                        <restriction base="string">
                            <minLength value="1" />
                            <maxLength value="20" />
                        </restriction>
                    </simpleType>
                </element>
                <element name="hrPersonnelId">
                    <annotation>
                        <documentation>
                            ID of person in HR source system
                        </documentation>
                    </annotation>
                    <simpleType>
                        <restriction base="string">
                            <minLength value="1" />
                            <maxLength value="20" />
                        </restriction>
                    </simpleType>
                </element>
            </sequence>
        </complexType>
        <complexType name="AccountType">
            <annotation>
                <documentation>
                    Types of Accounts: Three main categories are known: Person, resource or 
                    service account. A person account represents a single natural person. A 
                    resource account represents a resource such as a printer, a computer or a 
                    meeting room. Service Accounts represent everything else. The can be used 
                    for example for technical users or group accounts. Both resource and service 
                    accounts have an owner that is responsible for them. Each account type has 
                    subtypes for further categorization.
                </documentation>
            </annotation>
            <choice>
                <element name="personAccount" type="tns:PersonAccountType" />
                <element name="resourceAccount" type="tns:ResourceAccountType" />
                <element name="serviceAccount" type="tns:ServiceAccountType" />
            </choice>
        </complexType>
        <simpleType name="KnownPersonAccountType">
            <annotation>
                <documentation>
                    Pre-defined types of Person Accounts
                </documentation>
            </annotation>
            <restriction base="string">
                <enumeration value="Office" />
                <enumeration value="Admin" />
                <enumeration value="Test" />
                <enumeration value="unknown" />
            </restriction>
        </simpleType>
        <simpleType name="PersonAccountType">
            <union memberTypes="tns:KnownPersonAccountType string" />
        </simpleType>
        <simpleType name="KnownResourceAccountType">
            <annotation>
                <documentation>
                    Pre-defined types of Resource Accounts
                </documentation>
            </annotation>
            <restriction base="string">
                <enumeration value="Room" />
                <enumeration value="PC" />
                <enumeration value="Printer" />
                <enumeration value="unknown" />
            </restriction>
        </simpleType>
        <simpleType name="ResourceAccountType">
            <union memberTypes="tns:KnownResourceAccountType string" />
        </simpleType>
        <simpleType name="KnownServiceAccountType">
            <annotation>
                <documentation>
                    Pre-defined Types of Service Accounts
                </documentation>
            </annotation>
            <restriction base="string">
                <enumeration value="Group" />
                <enumeration value="Machine" />
                <enumeration value="Support" />
                <enumeration value="System" />
                <enumeration value="unknown" />
            </restriction>
        </simpleType>
        <simpleType name="ServiceAccountType">
            <union memberTypes="tns:KnownServiceAccountType string" />
        </simpleType>
        <simpleType name="ActionType">
            <annotation>
                <documentation>
                    Defines the action that was performed on the object.
                </documentation>
            </annotation>
            <restriction base="string">
                <enumeration value="Create" />
                <enumeration value="Update" />
                <enumeration value="Delete" />
            </restriction>
        </simpleType>
        <simpleType name="LegalEntityId">
            <annotation>
                <documentation>
                    ID of a legal entity
                </documentation>
            </annotation>
            <restriction base="unsignedInt">
                <totalDigits value="8" />
            </restriction>
        </simpleType>
    </schema>
    ';
    
       DBMS_XMLSCHEMA.REGISTERSCHEMA (schemaurl   => 'BasicTypes.xsd',
                                      schemadoc   => lc_test_xsd);
                                      
      DBMS_OUTPUT.PUT_LINE('BasicTypes.xsd registration successfully completed');
    EXCEPTION WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE('BasicTypes.xsd registration failed '||SQLERRM);
    END;
    /

    See for example the effect of elementFormDefault of http://www.liquid-technologies.com/Tutorials/XmlSchemas/XsdTutorial_04.aspx for details.

    The fix:

    >


    ...

    >

    I hope this helps!

  • Which product is best for a content management program?

    Hi, I have been informed by portal support to post my question here but it is specific to my project and it is perhaps not relevant to share with the entire forum.

    I think to the point of pdf content management software that would require the following 2 characteristics of Adobe Acrobat:


    (1) draw rectangles, lines and highlight the words by programming in the Acrobat Reader Viewer that I fit into my application.


    (2) extract textual tokens, contact information and other properties such as the pdf document fonts, but without necessarily view this document.


    I downloaded the SDK 9.1 Acrobat (which is supposed to be free) and I thought using the IAC modules but it is very difficult to understand what part of the sdk is free, which is not. It's dark even enough that not all features are free and I discovered only that trying to play with some classes. It might be useful to make it clear that in the introduction.


    So my questions are:

    (- What product, the sdk, the library that I have to accomplish 1) and 2)?
    -How can I get these? If they are not free, how much it costs?

    -Can I develop plug-ins that will interact only with the Adobe Acrobat pdf viewer embedded in my app - like menus and tools buttons - and not with the regular Acrobat Reader we download from the internet? If so, would still need to go through the process of approval of Adobe?

    Thanks for your help

    Frédéric

    You don't need permission to develop a plugin for Acrobat - you can do it without even taking the trouble to tell us that you do.  You have just need a copy of Acrobat and the SDK (which is free).  It has all the documentation, code samples, headers, etc..

    The IAC classes work with Adobe Acrobat as well, but they are quite limited.  If they will do what you need - large - you can call them from any language such as VB COM/OLE / c#, etc.

    There is sample code in the SDK to integrate the viewer into your own application - no problem at all.

  • Hi, actually I want to save as a PDF labview code to prepare my documentation, it is possible to save in pdf Formate?

    Hi, actually I want to save as a PDF labview code to prepare my documentation, it is possible to save in pdf Formate? Please answer me quickly...

    Thans in advance.

    When you print a VI, you can choose to print documents of the VI and print it to the printer. If you install the PDF printer, it will appear as a selection. PDF Creator is one of the PDF printer free that you could use.

  • What is the name of the sample code used in this example of documentation listView

    Hello

    Does anyone know the name of the sample application used in this example, where to download?

    https://developer.BlackBerry.com/Cascades/documentation/UI/lists/list_view.html

    I'm looking for the name of the example with the check box in the list.

    THX.

    Higher than for text search "If you want to run these code samples yourself' and it has a link to a zip file there.

  • Documentation for the AUTHN_FAIL reason codes?

    Hello:

    I'm working on a few BI Publisher reports that work on the audit records and the eventtype is AUTHN_FAIL and there is a 'reason' with files column. The reason is a whole like etc. 37 or 40 value. I guess it's OAM who sets her mean these codes (error LDAP, ESCROW, etc.). Someone has a link to the documentation on these codes?

    Thank you

    Sorry for the post above.

    I think what you are looking for is error codes and no State codes as in my previous post
    Here is the list of the OAM error codes
    0 EngineDown
    1 DBDown
    2 SansCode
    FatalError 3
    4 ResrcOpProtected
    5 ResrcOpNotProtected
    6 NeedQueryData
    7 UnusableRetainer
    Allow 8
    9 Deny
    10 CredentialsAccepted
    11 CredentialsRejected
    12 Diagnostics_Success
    13 Diagnostics_Failure
    14 Audit_Success
    15 Audit_Fail 50 insecurity
    16 User_Revoked
    17 Sync_Success
    18 Sync_Fail
    19 Sync_Invalid_Record
    20 NoQueryData
    21 QueryDataExists
    22 Invalid_ComponentID
    23 Unknown_Component
    24 Component_Lookup_Failed
    25 success
    26 NullResource
    27 HostPortLookupFailed
    28 UrlLookupFailed29 SDLookupFailed
    WRORLookupFailed 30
    31 WRORAuthentPolicyLookupFailed
    32 NoAuthentScheme
    33 exceptional
    34 InvalidSchemeId
    35 InvalidSchemeParameters
    36 InvalidSchemeMapping
    NoUser 37
    38 NonUniqueUser
    39 MissingObCredentialPassword
    WrongPassword 40
    41 MissingPassword
    42 MissingCertificate
    43 InvalidCertificate
    44 InvalidSelectionFilter
    45 MissingAuthnPlugin
    46 AuthnPluginAbort
    47AuthnPluginDenied
    48 AuthnPluginNoUser
    49 UnknowSchemeType
    Insecure 50
    51 Authent_Error
    52 Challenge_Failed
    53 AAAClientNotAuthenticated
    54 PasswordExpired
    55 PasswordChangeOnReset
    56 UserLockedOut
    57 AM_Success
    58 AM_Failed
    59 AM_Err_Mem_Alloc
    60 AM_Err_Data_Store
    61 AM_Err_Not_Authorized
    62 AM_Object_Exists
    63 AM_Err_Missing_Object_Name
    64 AM_No_Such_Authn_Scheme
    65 AM_Err_Update_Profile_Attr_Cache
    66 AM_UnknownRequest
    67 MissingAuthnStep
    68 inconclusive results
    69 AM_Disable

    Hope this helps,
    Sagar

  • Code quality / API documentation

    I ' am new action script but I wonder if there are:
    (1) generator of automatic API documentation where I can create documentation on the API of my code. For example in c# or Java (javadoc)
    (2) any code metrics tool where I can check the quality of the code

    Thanks for the help

    Hello!

    You should check ASDOC, which now comes with Flash Builder 2.0.1

  • Code quality / documentation

    I ' am new action script but I wonder if there are:
    (1) generator of automatic API documentation where I can create documentation on the API of my code. For example in c# or Java (javadoc)
    (2) any code metrics tool where I can check the quality of the code

    Thanks for the help

    Answer 1 is ASDOC, see
    http://www.Adobe.com/cfusion/webforums/Forum/MessageView.cfm?CATID=587&ThreadId=1265307&CF ID = 24606662 & CFTOKEN = 6ab69b1124a3af55-A53803B7 - 926 B-F17E-5967C2985AC41721 & jsessionid = 48308f b 71, 31072211816

    Q2 is always open

  • BlackBerry smartphone error Code 0 x 80040057 check Documentation

    I just installed the latest Desktop Manager software. When I try to sync my calendar Windows I get the above message. What Miss me?

    What is the exact message? Is - it this one?

    A problem is preventing Windows to check accurately the license on this computer, error Code: 0 x 80040057

    If this is the case, it's a problem of Windows XP.

  • How can I read a PDF form with c# code. Can someone please help with the snippet of code or documentation.

    My requirement is to read the full user of PDF form fields using c# code.

    Any code snippet or a document will help.

    Thank you

    OK, Acrobat and the Acrobat SDK kit are not for the server. But Alice has produced s called LiveCycle business that had a Java API. This can help. It's enterprise software and not the same as LiveCycle Designer. There is also the Adobe PDF Library, which is C++.

  • SSL via CRMI. Oracle has documented RIDC client code is not compiled.

    This part of the oracle documentation does not compile:

    4 . SSL configuration

    RIDC authorizes the communication of Secure Socket Layer (SSL) with Oracle Content Server using the Protocol of communication Intradoc.

    Note:

    You must install and activate the safety component suppliers on the Oracle Content Server instance you want to access and configure the server for SSL communications content.

    An example of use of the IDC on a Secure (SSL) Socket Protocol:

    // build a secure IDC client as cast to specific type

    IntradocClient idcClient = (IntradocClient manager.createClient("idcs://localhost:54444");

    // set the SSL socket options

    config.setKeystoreFile("ketstore/client_keystore");

    //location of keystore file

    config.setKeystorePassword ("password");

    // keystore password

    config.setKeystoreAlias("SecureClient");

    //keystore alias

    config.setKeystoreAliasPassword("password");

    //password for keystore alias

    For more information, see "SSL Communication with Oracle Content Server" .

    config.  is not present. What configuration is intended?

    I tried:

    idcClient = new IdcClientManager () .createClient (getProperty (MY_IDC_URL));

    idcClient.getConfig (). ....

    There are a few options, described in the API:

    IdcClientConfig (Oracle Fusion Middleware remote control Client Intradoc (RIDC) Java API Reference)

    But there is none:

    setKeystoreFile

    setKeystorePassword

    setKeystoreAlias

    setKeystoreAliasPassword


    If I use "setProperty", should what property names I use?

    keystoreFile

    keystorePassword

    keystoreAlias

    keystoreAliasPassword


    ?


    Thanks in advance for your help...


    Kind regards

    Michael

    OK, after that I ask myself the question, I found an answer myself. Sometimes, just to explain the problem to someone else and we'll find a way.

    In the description of the API, there were oracle.stellent.ridc.protocol.intradoc.IntradocClientConfig class

    IntradocClientConfig has requested methods.

    Should work now.

  • BlackBerry smartphone error has occurred. Error code: 0x8004fcd2. See the documentation.

    I get the above error when trying my calendar synchronised. I already tried the following:

    • Hard reboot of the device
    • Re-setup of office software
    • sync settings reconfiguration

    Help, please.

    Hey ritavanmolle,

    Thanks for the quick response.

    The next steps we will do is to determine if the data is bad in Outlook or in the camera.

    1. open BlackBerry Desktop Software, create a backup.

    2. go into device > delete data in BlackBerry Desktop Software.  Choose the selected data, click Calendar all and erase the data.

    3. go to synchronize in BlackBerry Desktop and click reset configuration.  Then re-setup the synchronization.

    Test synchronization and let me know if you get quickly with the same error.

  • I want to get my serial number for Creative Suite 5.5 Design Premium. I have the product code but have lost any other documentation.

    A few months ago, I was in the same position, having to re - install Creative Suite on a new laptop computer. For some reason, it was very easy, but I don't remember how it was done. I don't want to have to communicate with the institution for the proof of the new character and wait several days for a response. I'm on a deadline of something before that date. Any notice received with gratitude.

    then save your serial number.

    If you registered with adobe, sign in to your account, https://www.adobe.com/account.html

    If it is currently installed on a pc, you can use belarc advisor to recover.

Maybe you are looking for

  • List of all the calls that I made

    Hello everyone.I have a request, I hope someone will replay and advice me...I need a list of Skype calls I have with one of my contacts...To whom should I address my request?

  • Upgrading power supply

    I recently bought a new video card and when I installed it, I got nothing but a screen empty. I was told that I may need to upgrade from my diet. I have a Compaq presario 6000 model 6ZPXE2 and it has a 220 watt power supply inside. I don't know what

  • solve the error code 643

    I have two updates that fail to install, get the error code 643, how to solve this, thanks

  • start-up easier: there is a lost language dock which is not found

    When I start my computer, then connect, it says that there is a lost language dock which can not be found.  It says that I need to check if the disc correctly or make sure I'm contected to a network.  I just connected a wireless Internet, so I do not

  • Question about unique to the VCS cluster driver

    I'm just configuration conductor for the first time according to the guide found here: http://www.Cisco.com/c/dam/en/us/TD/docs/Telepresence/infrastructure/con... Because I need to connect to a VCS cluster with two counterparts, each counterpart must