Custom QML component not recognized

From my understanding, to create a custom component of QML, you basically just create a new QML file, create the user interface, and you can immediately call the file name component. He does not like that for my application.

Currently I have in my assets from the main.qml file, and I want to create a custom separator, so I create a new folder in assets called common, and I create a new QML file with QML container model, called CustomDivider.qml. So far, I'm following the example of Cookbook very well.

The end result of my CustomDivider.qml is literally that:

import bb.cascades 1.0

{Of container

Divider {}

topMargin:10

bottomMargin:1

}

}

In my main.qml, I call CustomDivider {}, and it is not recognized by the IDE. When I run my application, the screen turns black, indicating that something is wrong

Can someone tell me what exactly is the problem?

You can also use import "nom_de_dossier".

Tags: BlackBerry Developers

Similar Questions

  • Cannot create a custom SOA Gateway-> error integration interface: meta-method type hash_of_lists not recognized as a type of compatibility V1 (cannot mix options v1 & v2)

    Hello

    Steps to create a custom integration interface

    • Download the model of virtual machine of EGGS and the oracle Installer 12.2.4 did with success (instance VISION)
    • Tired of creating new interface but I got an error like below
        • Could not find Class / MethodMaker.pm in @INC (@INC contains: /u01/install/VISION/fs1/EBSapps/appl/fnd/12.0.0/perl /u01/install/VISION/fs1/EBSapps/appl/fnd/12.0.0/xml/orc115)
    • According to the oracle documentation "Oracle E-Business Suite integrated SOA gateway Implementation Guide" then as follows to install the perl module.
    • After that, when I tried to return the script get errors like below
      • Meta-method hash_of_lists type not recognized as a type of compatibility V1

      • (cannot mix options v1 & v2)

      • to the /u01/install/VISION/fs1/FMW_Home/webtier/perl/lib/site_perl/5.10.0/x86_64-linux-thread-multi/Class/MethodMaker.pm of line 24

      • BEGIN failed--compilation abandoned at /u01/install/VISION/fs1/EBSapps/appl/fnd/12.0.0/perl/FND/irep/repo/Rep/Loader.pm line 691.

      • Compilation failed to require online /u01/install/VISION/fs1/EBSapps/appl/fnd/12.0.0/perl/FND/irep/repo/Rep/Annotation.pm 46.

      • BEGIN failed--compilation abandoned at /u01/install/VISION/fs1/EBSapps/appl/fnd/12.0.0/perl/FND/irep/repo/Rep/Annotation.pm line 46.

      • Compilation failed in require in /u01/install/VISION/fs1/EBSapps/appl/fnd/12.0.0/perl/FND/irep/repo/Rep/Parser.pm line 172.

      • BEGIN failed--compilation abandoned at /u01/install/VISION/fs1/EBSapps/appl/fnd/12.0.0/perl/FND/irep/repo/Rep/Parser.pm line 172.

      • Compilation failed in require in /u01/install/VISION/fs1/EBSapps/appl/fnd/12.0.0/bin/irep_parser.pl line 37.

      • BEGIN failed--compilation abandoned at /u01/install/VISION/fs1/EBSapps/appl/fnd/12.0.0/bin/irep_parser.pl line 37.

    Can someone solve this problem.

    Thanks in advance

    Have no experience with this, but MOS Doc 1400165.1 may be useful

  • Skin + component custom Spark does not correctly appear in Flash Builder

    I am creating a custom spark component which has a personalized content for use in MXML much as controlbar and the contents of a special group. I imitated the application Panel and PanelSkin, but is not correctly make in FlashBuilder, but it looks good at execution time. My custom group is called headerGroup. And I followed the implementation of the controlBar in Panel. My skin file should display the header at the top of the container. For debugging, I just renamed my headerGroup to contentGroup (defined in SkinnableContainer) and I can see this content at design time.

    What should I do extra to get my custom group appears at design time? Below, I've stuck my componetn and his skin file.

    Console.As

    package

    {

    import flash.utils.describeType;

    import mx.core.mx_internal;

    import mx.utils.BitFlagUtil;

    import spark.components.Button;

    import spark.components.Group;

    import spark.components.SkinnableContainer;

    import spark.components.supportClasses.SkinnableComponent;

    import spark.layouts.supportClasses.LayoutBase;

    use the space namespace mx_internal;

    public class Console extends SkinnableContainer

    {

    protected const CONSOLE_HEADER:String = "consoleHeader";

    protected public static const HEADER_PROPERTY_FLAG:uint = 1 < < 0;

    protected public static const LAYOUT_PROPERTY_FLAG:uint = 1 < < 1;

    protected public static const VISIBLE_PROPERTY_FLAG:uint = 1 < < 2;

    mx_internal public static var createAccessibilityImplementation:Function;

    [SkinPart(required="false")]

    public var headerGroup:Group;

    mx_internal var headerGroupProperties:Object = {visible: true};

    [ArrayElementType("mx.core.IVisualElement")]

    public function get headerContent (): array

    {

    If (headerGroup)

    return headerGroup.getMXMLContent ();

    else

    return headerGroupProperties.headerContent;

    }

    public public function set headerContent(value:Array):void

    {

    If (headerGroup)

    {

    headerGroup.mxmlContent = value;

    headerGroupProperties = BitFlagUtil.update (headerGroupProperties as uint, )

    HEADER_PROPERTY_FLAG, value! = null);

    }

    else

    headerGroupProperties.headerContent = value;

    invalidateSkinState();

    }


    public function get headerLayout (): LayoutBase

    {

    (headerGroup) return

    ? headerGroup.layout

    : headerGroupProperties.layout;

    }

    public public function set headerLayout(value:LayoutBase):void

    {

    If (headerGroup)

    {

    headerGroup.layout = value;

    headerGroupProperties = BitFlagUtil.update (headerGroupProperties as uint, )

    LAYOUT_PROPERTY_FLAG, true);

    }

    else

    headerGroupProperties.layout = value;

    }

    public function get headerVisible (): Boolean

    {

    (headerGroup) return

    ? headerGroup.visible

    : headerGroupProperties.visible;

    }

    public public function set headerVisible(value:Boolean):void

    {

    If (headerGroup)

    {

    headerGroup.visible = value;

    headerGroupProperties = BitFlagUtil.update (headerGroupProperties as uint, )

    VISIBLE_PROPERTY_FLAG, value);

    }

    else

    headerGroupProperties.visible = value;

    invalidateSkinState();

    if (skin)

    skin.invalidateSize ();

    }


    /**

    *  @private

    */

    override protected function initializeAccessibility (): void

    {

    If (VMConsole.createAccessibilityImplementation! = null)

    VMConsole.createAccessibilityImplementation (this);

    }

    override protected function partAdded(partName:String,_instance:Object):void

    {

    super.partAdded (partName, instance);

    If (instance is headerGroup)

    {

    / / copy values transferred by proxy (if defined) headerGroupProperties to headerGroup

    var newHeaderGroupProperties:uint = 0;

    If (headerGroupProperties.headerContent! == undefined)

    {

    headerGroup.mxmlContent = headerGroupProperties.headerContent;

    newHeaderGroupProperties = BitFlagUtil.update(newHeaderGroupProperties, )

    HEADER_PROPERTY_FLAG, true);

    }

    If (headerGroupProperties.visible! == undefined)

    {

    headerGroup.visible = headerGroupProperties.visible;

    newHeaderGroupProperties = BitFlagUtil.update(newHeaderGroupProperties, )

    VISIBLE_PROPERTY_FLAG, true);

    }

    headerGroupProperties = newHeaderGroupProperties;

    }

    }


    override protected function partRemoved(partName:String,_instance:Object):void

    {

    super.partRemoved (partName, instance);

    }


    override protected function getCurrentSkinState (): String

    {

    var State: String = active? 'normal': "disabled";

    If (headerGroup)

    {

    If (BitFlagUtil.isSet (headerGroupProperties as uint, HEADER_PROPERTY_FLAG) & & )

    BitFlagUtil.isSet (headerGroupProperties as uint, VISIBLE_PROPERTY_FLAG))

    State += "WithHeader";

    }

    else

    {

    If (headerGroupProperties.headerContent & & )

    headerGroupProperties.visible)

    State += "WithHeader";

    }

    return status;

    }

    }

    }

    ConsoleSkin.mxml

    <? XML version = "1.0" encoding = "utf-8"? >

    " < = xmlns:fx s:SparkSkin ' http://ns.Adobe.com/MXML/2009 "

    xmlns:s = "library://ns.adobe.com/flex/spark".

    xmlns:mx = "library://ns.adobe.com/flex/mx" >

    < fx:Declarations >

    <! - Place non-visual elements (e.g., services, items of value) here - >

    < / fx:Declarations >

    < fx:Metadata >

    <! [CDATA]

    /**

    * @copy #hostComponent spark.skins.spark.ApplicationSkin

    */

    [HostComponent ("Console")]

    ]]>

    < / fx:Metadata >

    < s: states >

    < s: State name = "normal" / >

    < s: State name = "disabled" / >

    < name s: State = "normalWithHeader" / >

    < name s: State = "disabledWithHeader" / >

    < / s: states >

    < s:Rect id = "shadow" left = "-1" right = "-1" high = low '-1' = '-1' radiusX = "2" >

    < s:fill >

    < s:LinearGradient rotation = "90" >

    < s:GradientEntry color = "0x000000".

    Alpha = "0.01" / >

    < s:GradientEntry color = "0x000000".

    Alpha = "0.07" / >

    < / s:LinearGradient >

    < / s:fill >

    < / s:Rect >

    < s:Rect id = "fill" left = "1" right = "1" top down = '1' = '1' radiusX = "2" >

    < s:fill >

    < s:LinearGradient rotation = "90" >

    < s:GradientEntry color = "0xFFFFFF".

    Alpha = "0.85" / >

    < s:GradientEntry color = "0xD8D8D8".

    Alpha = "0.85" / >

    < / s:LinearGradient >

    < / s:fill >

    < / s:Rect >

    < s:Group id = "headerGroup" width = "100%" height = "100%" >

    < s:layout >

    < s:HorizontalLayout paddingLeft = "10" paddingRight = "10" paddingTop = "7" paddingBottom = gap "7" = "10" / >

    < / s:layout >

    < / s:Group >

    < / s:SparkSkin >

    Hello

    > Why it does not work when the component is not in a library of thought

    The application code is not "compiled". A CFC is final compiled code, so design mode can load and display. I think that it won't work in an application's performance. Things will need to be recompiled constantly since there is no compc compiler in an application.

    The extra leg, that I am referring is in Design view extensions. There are in fact extended components that implement the API they use in Design mode. It's a glorified built-in Flash Player.

    It's a complication bit, I intend writes a blog on sooner rather than later.

    Mike

  • Calculation Manager - is there a way to see all the members not recognized for a rule or script at the same time

    A customer has a script component that has a good amount of references hardcoded to embedded members.  Is there a way to see all Member unrecognized at once without having to modify the script to each Member not recognized individually in order to validate again in order to see the next?

    Joachim

    not as far as I know :/

    It was already like that in environmental assessments before Calc Manager.

  • HP EliteBook 8730w: replacement of SSD for the boot drive not recognized

    I'm trying to install a Samsung SSD 840 EVO 500 GB instead of the original 500 GB HDD in my Elitebook 8730w (product no. VF889PA #ABG). The 8730w has the latest BIOS (F.20) installed and that is running Windows 7 Professional 32-bit (fully patched).

    When it is connected to the laptop through a USB adapter, to clone the HARD disk image. the SSDS works correctly. Cloning through data Migration Samsung is reported as a success, and the image of the C:\ drive occupies approximately 153 GB. The image of the disc does not include the partition of 1 GB dedicated to HP_TOOLS, due to a known limit of the Samsung software supplied.

    When it is installed in the HARD drive Bay. the SSD is not recognized as a drive and does not appear in the list of startup options. The available boot options only shown are the DVD or a network boot.

    would be very grateful for any advice on the steps required to successfully install the Samsung SSD as boot drive.

    Hmmm.
    Honestly no, I'm not happy with this one. If it was my machine, I'd be a little concerned about whats the corner of the street. In view of the age, is not surprising really, things wear out over time, the mere fact of electronics.

    Search through everything you have posted, all photos, pdf, all the text double checking. I am absolutely puzzled as to what happened. If you 100% does not reinstall the hard disk between the posts above where no HARD drive is detected in the menu boot options for the post below that where the HARD drive is detected in the same menu. I would say that you have a problem with either, the ssd, the computer motherboard laptop or the small connector on the sata port, I think on these is integrated on the motherboard, so it seems that your advice is doubtful.
    If his works now, great... but be aware that your machine can fail at some point in the near future. And it looks like a defect of the motherboard, other things are probably waiting to fail.

    There is no reason whatsoever your laptop must not have seen this ssd at first startup. A HARD drive is a HARD disk, if its compatible sata, then it will work, no doubt. When he is not on an older machine, its probably a sign of a faulty component.

    Looking through your bios options, I recommend the following.

    On startup options, get rid of internal nic pxe boot, that will only slow your machine at startup as it will seek for a network bootable device. This is the message that you get at startup saying Media Test Failure, this page is preventable with this option disabled.
    Less built lan/wlan switching on enabled in the options of the terminal, also change. This means that if you use wifi at home for example and you decide to plug in a cable network directly to the router to speed up the connection, it will not pass if it is not defined, you will have to do it manually. I work in a large company and the number of people who have this option is unreal. They all assume when they are docked they will on the wired connection.

    Because we are here too, if you ever have problems with a flickering screen, first thing to try, is disable the ambient light sensor which is just below this option of switching. Its fine on normally, but its quite common on 8560p for this causes a flickering screen.

    Hope that helped. Good luck in what you decide to do with the machine

  • HIS Radeon HD 4670 not recognized by Win 7

    OK, now that the S6500NX is finally installed with Win 7 Home Premium 32 bit, the only remaining obsticle becomes the system to recognize the video card: a HIS Radeon HD 4670 ("Itceq" AGP 8 X 1 GB of DDR3 memory). It is compatible with DirectX 10.1. I chose ' AGP/Onboard' in the Bios. I've been messing around with different versions of the driver catalyst of 9.x, 10.x to 12.4 (later). The driver seems to be without error, but the adapter or the driver is never automatically recognized by Windows. If I go into Device Manager and "update driver" manually, then select the driver Radeon HD 4670 WDM (not mobility one!), and reboot, the Device Manager has a yellow "!" and said that it has been disabled (all versions 9.x driver to 12.4 said that). I have tested the card in my Gigabyte Triton of K8 system (under XP SP3 but not on the network) and XP sees the card very well.

    Many tech sites (for example, TomsHardware.com) talk about this card and seems to be problematic for some facilities, emits some Catalyst driver, but by all accounts should be recognized by Win 7.

    When the adapter has been installed initially, Win 7 assigned adapter VGA Std 'graphics '. The monitor is an old Dell M782, who did not detected, but because it's using the adapter in windows Std no refresh values appears. hdwwiz recogise the adapter and select strives in hdwwiz shows only those from Intel.

    Issues related to the:

    1. Is this a problem with Win 7 or HIS or the driver Catalyst? (or some combo)
    2. This card is even compatible with Win 7 32 bit?
    3. What is an AGP bios on A7V8X - LA motherboard problem?

    Thanks in advance,

    Thom

    People,

    Not one night white, but close enough. After crossing scenarios and options, try different drivers and pieces of hardware, I found a solution. Problems with possible HDMI and its conflict with its edge (from Paul - thanks!) gave me the idea. I also found the driver AMD AGP hotfix file.

    When I started this process, install Win 7 Home Premium 32-bit on a new HD in a S6500NX I did with the Creative Sound Blaster installed PCI (disabled people onboard in the bios) and the 4670 HIS HD Radeon Itceq AGP 8 X graphics card installed (AGP / enabled in embedded bios). I knew that I had to install a separate driver to get the new 4670 to work with Win 7 (from the list of compatibility with MS). I've always done the express installation. Because the card has never been recognized automatically and manually select a driver always gave place to a yellow '! ' in Device Manager, I have assumed that the existence of a conflict, but didn't know where to start. Reading the various posts here and elsewhere, brought me to believe it was a problem of cpu/bios/agp. It was not, well not quite, at least not the mobo directly.

    I suspect that the conflict was with the device IRQ audio and HDMI sound IRQ, but it is also a matter of AMD AGP with the driver. Once I found the driver 12.3 hotfix (12.4 pilot btw does not work either) AMD, I decided to do a custom installation and do not check the HDMI Audio option (so it should not be installed). Now, at this point, I had taken on the Sound Blaster and always had the sound edge off, so no sound, but has not removed the Creative drivers. Rebooting the system after installation of the driver of 12.3 hotfix for the HD 4670 (without the HDMI sound) Windows 7 recognized the graphics card! The Catalyst Control Center worked, graphic refresh rate and the monitor are now available: everything worked!

    Now, sound. I reinstalled the Sound Blaster card and booted up the system. It worked also. The system is now complete! Ecstatic!

    I'm exhausted. I suspect that the problem is somewhere in the allocation of resources for audio devices, simply not ready to everything tear and test this theory (i.e., re-installation of the verified audio HDMI driver AMD should lead the 4670 is not recognized due to a conflict with the sound card or indeed integrated sound card). In addition, there was the problem with AMD and AGP drivers.

    I finished.

    However, one thing still (somewhat) bothers me: why is there never a Compaq/HP logo at startup (no option in the bios to disable/enable) given that in all likelihood, it would take... This is the life. Maybe it has something to do with "service packs" (whatever they are - jk) and the 'care' of Compaq/HP files (could care less).

    Thom has left the building - good day to all.

    Blessings to all,

    Thom

  • During extraction of zip in XP files, some files display in a format not recognized?

    Hello, I downloaded a few files mp3 audio from a Web site, and they were in zip format. Most of the albums was fine when I used extract all option that would create new folders with the audio files in mp3 format. However, it retrieves all the option used on some of the albums would produce files with the files in a format not recognized. It's strange because the files in the zip folder are the custom mp3 file but those extracted from this same exact issue was not mp3 but not counted. If the original is fine but the extract is not made me think of the windows zip extraction utility could not open some types of zip even if others on the same site have successfully. Have you any suggestions on any program I can use to solve this problem I already paid for them and can't re-download the original download was "successful." The support team of the company I bought thiese maybe not very tech savvy.

    Thank you
    Mulenga

    Hello Mulenga,

    Try to unzip using windows 7

    http://Windows.Microsoft.com/en-us/Windows7/compress-and-uncompress-files-ZIP-files

    See you soon!

  • Unable to open windows for a user... 'is not recognized as an executable program.

    When I try to connect I enter my name and my password and then get an error message "C:Users\xxxxx\Documents\46a6446.exe"s not recognized as an internal or external operable program or batch file. "

    It has always worked before

    Hello

    Windows has user-specific environmental variables and universal environmental variables that affect all users. If install us applications, variables can be changed. If you have installed a software, I suggest you do to Start-> component control-> system-> Advanced-> Environmental Variablesand then check the system and user variable. If the variables have been changed, you should try to make changes to get the same as before.

    When you try to run a file or move to a directory whose name contains any of these characters: & () ^; |, or space >, then you receive following error message: the specified name is not recognized as internal or external command an executable program or batch file.

    Steps to reproduce the problem

    1. Manager file in the Windows NT program directory, copy the Notepad. EXE and rename & NOTEPAD. EXE.
    2. The main group, start the command prompt.
    3. Place you in the Windows NT program directory, type the following command and press ENTER:
      Note & pad

      One of the error messages above appears.

    Type the following (with the quotation marks) in the successful run Notepad:

       "note&pad"
    
  • Canon Vixia HV40 HD camcorder not recognized on IEEE1394

    Windows 7 does not recognize the camcorder HD on IEEE1394 (= Canon Vixia HV40 camcorder. It is compatible Windows 7)

    Camcorder Canon Vixia HV40 =. It's Windows 7 compatible according to the Canon website -http://www.usa.canon.com/consumer/controller?act=ModelInfoAct&fcategoryid=177&modelid=17996

    IEEE1394 card was not recognized initially by Windows 7, so returned to the "legacy" driver, then the card was regognized

    But the camcorder is not recognized

    Camcorder is recognized on another computer running Windows XP with * same * map out and installed on this computer XP IEEE1394)

    Windows 7 Home Edition

    The same camcorder is also not recognized when connected to Windows 7 via USB

    Use the USB port... connection...

    Your camcorder is MPEG-2

    MPEG-2... is a DVD Format

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

    USB terminal

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

    NO - a son of the late connection...

    NON - DV, mpeg2 is already a compressed file.

    DV - is called the great Fame(un-compressed)... This is the best EDITING-format/1080 p is just as good.

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

    USB 2.0 Full Speed---> > Firewire ((NOT))

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

    Video Terminal

    component (output), composite (output)

    Audio =.

    DV: 16-bit (2ch) 48-bit 12 kHz (4 channels) 32 kHz 4ch synchronous recording HDV is not possible: MPEG1 Audio Layer II (2 ch) (4 channels playback of cassettes containing recordings of 4 possible channels)

    ())-->> these would require the CANNON... cables of product...

    Hot shoe Advanced

    Supplied video editing software

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

    None

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

    HDMI Jack

    ((This looks like a reading of TV output))

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

    HDMI Type A connector (output) (19 pins)

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

    Microphone Terminal stereo 3.5 mm mini-plug
    AV Mini helmet/Terminal Terminal 4 pole mini jack 3.5 (video/audio, entry and exit)
    Dimensions (W X H X D) 3.5 x 3.2 x 5.4 in. (88 x 82 x 138 mm)
    Weight (not including lens and battery) 1.2 lbs (535g)
    Weight 1.4 lb (615 g)

    MSM-2010

  • Any update yet to USB sticks being not recognized?

    I searched for help and found similar problems have yet to see any real solution.  Seems that many face the same problem with key USB cannot be recognized on Windows 7

    Is there any solution yet?  I'm not computer whizzkid so if there is a REAL difficulty (not something dubious Regedit that sounded like he screwed up computers everybodys!) please let me know how to do - it is so frustrating!

    See you soon

    Hello

    Have you checked the player on other computers running Windows 7, Vista or XP?

    Be sure to check forums and with Support of the manufacturer of the Drive, their documentation online.

    It is SanDisk however, these methods can help with other brands of USB keys.

    Cruzer not recognized by the PC
    http://KB.SanDisk.com/app/answers/detail/A_ID/10/kW/Cruzer/r_id/101834

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

    Check with manufacturer's support the system, their drivers and documentation online and ask for their
    Forums (if any) for known issues. Search for updates of BIOS, chipset of low-level drivers and others
    USB drivers on the site of the manufacturer of the system (motherboard for systems custom built manufacturer).

    If a PC remove ALL power and reinstallation of the cards, memory and cables (at both ends where possible)
    -in fact, remove and replace - do not just tight. Remove the dust bunnies and make sure that the ventilation openings
    are clear. For a laptop on everything that can be done is to reinstall the memory and clear the vents.

    If nothing works and it's a PC, you can disable the onboard USB and use a USB add-in card
    is not expensive. Of course for a PC or laptop using a real computer store (one who does in)
    Home service) or system manufacturer support can be requested.

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

    Other troubleshooting methods:

    1 reboot to be sure nothing blocks the ports.

    Follow these steps to remove corruption and missing/damaged file system repair or replacement.

    Start - type in the search box - find command top - RIGHT CLICK – RUN AS ADMIN

    sfc/scannow

    How to fix the system files of Windows 7 with the System File Checker
    http://www.SevenForums.com/tutorials/1538-SFC-SCANNOW-Command-System-File-Checker.html

    Then run checkdisk (chkdsk).

    How to run check disk in Windows 7
    http://www.SevenForums.com/tutorials/433-disk-check.html

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

    Then lets refresh the USB stack

    Control Panel - Device Manager - click in the box of white/white - VIEW - show hidden devices

    Look everywhere EXCEPT USB controllers for your device and if find you them (maybe
    plus_d' one of each) under disk drives, you can have several - right CLICK and UNINSTALL
    for all instances

    Control Panel right CLICK on EVERYTHING - Serial USB controllers - device configuration-manager and
    UNINSTALL all but the category itself - REBOOT - it refreshes the drive and battery USB

    This KB shows XP how to and the method of Vista is identical
    http://support.Microsoft.com/kb/310575

    This is a utility to help you, but do 1 above.

    USBDeview is a small utility that lists all USB devices currently connected to your computer.
    as well as all USB devices that you previously used. Run Options and tick the three 1st choice
    to see if one is there. Try to remove all instances and restart then plug the drive.
    http://www.NirSoft.NET/utils/usb_devices_view.html

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

    If necessary try these two:

    Tips for solving problems of USB devices - and a Mr Fixit
    http://windowshelp.Microsoft.com/Windows/en-us/help/c39bd203-f729-47a4-8351-83291e13c8a81033.mspx#EGB

    Hardware devices not detected or not working - Mr. Fixit
    http://support.Microsoft.com/GP/hardware_device_problems

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle="" -="" mark="" twain="" said="" it="">

  • Does anyone have suggestions on what to do when the Windows 7 Installation DVD is not recognized by the DVD player.

    I'm trying to do a custom installation of Windows 7 Professional 32 - bit on my Dell Inspiron 530, which is running Windows Vista Home 32 bit.  I ran the Windows 7 Upgrade Advisor, which was positive.

    The DVD player does not recognize the installation of the new (purchased at microsoft) DVD, although he acknowledges other CD and DVD.
    I tried to restart the computer and also the start of the player directly in the BIOS.
    In the BIOS I have the following message:
    "No available boot device.
    Press the ENTER key to try again
    SATA-0: installed
    SATA-1: installed
    SATA-4: no
    SATA-5: no

    Your CD or DVD drive is missing or is not recognized by Windows or other programs

    Fix for CD/DVD drive missing:

    http://support.Microsoft.com/kb/982116

    If this does not work, try to check the manufacturer of the optical drive to the firmware updates available.

  • Adobe CS 5 Design Standard serial number not recognized

    Adobe CS 5 Design Standard serial number not recognized

    Please contact the Customer - Support Adobe

    They can check your serial number.

  • SCO to Connect downloaded .zip file, not recognized?

    I'm working to articulate scenario 2, packing as a swf/html5 compatible with OCS using SCORM 2004 v.4. When I test the file to SCORM Cloud, the manifesto is good and the project runs without problem. When I take the same file and attempt to load the system to Connect, an error - "file format not recognized" I don't know where to go with this - the articulated site and this site contain no instance ther of this question - anyone? anyone? Bueller?

    Success - not with scenario 2 - that's another story altogether - but we got the boss to the junk food she and we launch Cp8 - everything is fine and our stuff plays well with our LMS Customer!

    The extent of scenario 2 - the publishing options do not include the wrapper of AICC conversion required to operate properly on a 9 configuration pre-connect LMS, so same edition in AICC, mingle you results saying the course is underway and all at the same time. The solution which was finally useful came from Andrew Chemey at Adobe, who sent a file zip which allowed me to package a SCORM 2004 published the script file in a wrapper that communicated with the AICC based connect 8 LMS. We wrapped all of our courses built in scenario 2 in this packaging, posted to the LMS and officially retired the software.

  • cmdlet Get-visession is not recognized

    Hi all

    No idea how to get the cmdlet get-visession running? Its not recognized in my machine like cmdlet validates.

    I see its available in 5.0.1 from according to the blog http://blogs.VMware.com/vipowershell/vCenter/

    I also confirmed that my version is 5.0.1 (see below)

    I need it to check the number of sessions connected to VC periodically. Any help would be appreciated.

    PowerCLI Version
    ----------------
    VMware vSphere PowerCLI 5.0.1 build 581491
    ---------------
    Versions of the snap
    ---------------
    VMware AutoDeploy PowerCLI component 5.0 build 544967
    VMware ImageBuilder PowerCLI component 5.0 build 544967
    VMware vCloud Director PowerCLI component 1.5 build 581492
    License of VMware PowerCLI component 5.0 build 544881
    VMware vSphere PowerCLI component 5.0 build 581435

    You can save the function Get-ViSession to blog in a file article, for example, Get - ViSession.ps1. After that, you can point source this file:

    . .\Get-ViSession.ps1

    to add the function to your session.

    You can also add your PowerShell profile function with:

    Notepad $profile

    Best regards, Robert

  • Ports USB Host not recognized ESX4i of devices

    I have a new HP dl 360 G6, I installed the ESX4i update1 custom hypervisor HP with the latest patches of ´s, HW USB ports are activated by the server BIOS and I create a new machine virtual Windows Server 2008 x 32 with allows USB ports, USB ports are shown by windows 2008, but when I plug a peripheral USB is not recognized I need to plug a USB 72 GB DAT, I tried also with a USB and no job. All USB devices are 2.0.

    Yes, you can redirect USB via VMDirectPath, but you will lose VMotion, HA, instant = backup. I had to recoomend a look at USB over IP as Digi AnywhereUSB

    ---

    MCSA, MCTS, VCP, VMware vExpert 2009

    http://blog.vadmin.ru

Maybe you are looking for