IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Silverlight Discussion :

Impossible d'ajouter un datagrid


Sujet :

Silverlight

  1. #1
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    207
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 207
    Par défaut Impossible d'ajouter un datagrid
    Bonjour,
    J'aimerais ajouter a mon projet un datagrid, mais je n'y parviens pas.
    En effet, lorsque je tente d'en ajouter, je reçois le message d'erreur suivant :

    Value cannot be null
    Parameter name : childorDescendant
    Est ce que quelqu'un peut m'aider?
    Merci d'avance

  2. #2
    Rédacteur
    Avatar de Thomas Lebrun
    Profil pro
    Inscrit en
    Octobre 2002
    Messages
    9 161
    Détails du profil
    Informations personnelles :
    Âge : 43
    Localisation : France

    Informations forums :
    Inscription : Octobre 2002
    Messages : 9 161
    Par défaut
    Si tu essayes d'ajouter ton Datagrid à la main dans le code XAML ?

  3. #3
    Expert confirmé
    Avatar de Skyounet
    Homme Profil pro
    Software Engineer
    Inscrit en
    Mars 2005
    Messages
    6 380
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 38
    Localisation : Etats-Unis

    Informations professionnelles :
    Activité : Software Engineer
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mars 2005
    Messages : 6 380
    Par défaut
    Citation Envoyé par maxwel56 Voir le message
    Bonjour,
    J'aimerais ajouter a mon projet un datagrid, mais je n'y parviens pas.
    En effet, lorsque je tente d'en ajouter, je reçois le message d'erreur suivant :



    Est ce que quelqu'un peut m'aider?
    Merci d'avance
    Ouais ça m'est déjà arrivé. Du coup je fais plus de glisser-déposer de la toolbox, j'écris tout à la main.

  4. #4
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    207
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 207
    Par défaut
    Quand j'ajoute un datagrid directement ds le code ça me le souligne.
    Je ne comprends pas pourquoi.

  5. #5
    Expert confirmé
    Avatar de Skyounet
    Homme Profil pro
    Software Engineer
    Inscrit en
    Mars 2005
    Messages
    6 380
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 38
    Localisation : Etats-Unis

    Informations professionnelles :
    Activité : Software Engineer
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mars 2005
    Messages : 6 380
    Par défaut
    Citation Envoyé par maxwel56 Voir le message
    Quand j'ajoute un datagrid directement ds le code ça me le souligne.
    Je ne comprends pas pourquoi.
    Est-ce que tu as rajouté la référence vers la dll qui contient le DataGrid ?
    Est-ce que tu as rajouté la ligne dans le xaml pour référencer le namespace ?

  6. #6
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    207
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 207
    Par défaut
    Oui j'ai ajouté la reference
    System.windows.control.data.dll que j'ai trouvé ds c://microsoftsdks
    J'ai également ajouté le namespace correspondant
    Et même en fesant ceci ma balise <datagrid> n'est pas reconnu?
    Est ce que cela peut venir d'un problème d'installation?
    J'utilise Visual Studio 2010 Beta 2, je developpe en silverlight 4

  7. #7
    Expert confirmé
    Avatar de Skyounet
    Homme Profil pro
    Software Engineer
    Inscrit en
    Mars 2005
    Messages
    6 380
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 38
    Localisation : Etats-Unis

    Informations professionnelles :
    Activité : Software Engineer
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mars 2005
    Messages : 6 380
    Par défaut
    Citation Envoyé par maxwel56 Voir le message
    Oui j'ai ajouté la reference
    System.windows.control.data.dll que j'ai trouvé ds c://microsoftsdks
    J'ai également ajouté le namespace correspondant
    Et même en fesant ceci ma balise <datagrid> n'est pas reconnu?
    Est ce que cela peut venir d'un problème d'installation?
    J'utilise Visual Studio 2010 Beta 2, je developpe en silverlight 4
    Oui mais tu programmes au hasard...

    Est-ce que tu as rajouté le namespace pour référencer ton assembly comme je t'ai indiqué dans le message précédent ?

    Code xml : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    xmlns:data="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data"
    [...]
    <data:DataGrid>

  8. #8
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    207
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 207
    Par défaut
    oui j'ai ajouté tout ça benjamin mais toujours pas de datagrid

  9. #9
    Expert confirmé
    Avatar de Skyounet
    Homme Profil pro
    Software Engineer
    Inscrit en
    Mars 2005
    Messages
    6 380
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 38
    Localisation : Etats-Unis

    Informations professionnelles :
    Activité : Software Engineer
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mars 2005
    Messages : 6 380
    Par défaut
    Citation Envoyé par maxwel56 Voir le message
    oui j'ai ajouté tout ça benjamin mais toujours pas de datagrid
    Montre tout ton code.
    Est-ce que la référence apparait bien dans l'onglet .NET quand tu fais Ajouter une référence ?

    Si tu vas en code behind et que tu tapes : DataGrid, est-ce qu'il est reconnu ? Est-ce qu'il te propose d'ajouter le namespace ?

    Quel est le chemin exact de la dll que tu as ajouté comme référence ?
    Si tu fais clic droit : Voir dans l'explorateur d'objet, est-ce que tu peux voir la classe DataGrid ?

  10. #10
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    207
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 207
    Par défaut
    Dans le .net j'ai pas la dll correspondante au datagrid du coup je l'ai cherché sur mon ordinateur :
    C:\Program Files\Microsoft SDKs\Silverlight\v4.0\Libraries\Client\System.Windows.Controls.Data.dll

  11. #11
    Expert confirmé
    Avatar de Skyounet
    Homme Profil pro
    Software Engineer
    Inscrit en
    Mars 2005
    Messages
    6 380
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 38
    Localisation : Etats-Unis

    Informations professionnelles :
    Activité : Software Engineer
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mars 2005
    Messages : 6 380
    Par défaut
    Citation Envoyé par maxwel56 Voir le message
    Dans le .net j'ai pas la dll correspondante au datagrid du coup je l'ai cherché sur mon ordinateur :
    C:\Program Files\Microsoft SDKs\Silverlight\v4.0\Libraries\Client\System.Windows.Controls.Data.dll
    Et pour les autres questions ?

  12. #12
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    207
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 207
    Par défaut
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    <UserControl xmlns:my="clrnamespace:
    System.Windows.Controls;assembly=System.Windows.Controls.Data" x:Class="SilverlightApplication.Page"
    xmlns="http://schemas.microsoft.com/client/2007"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Width="800" Height="600">
    <Grid x:Name="LayoutRoot" Background="White" ShowGridLines="True">
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="400"/>
    <ColumnDefinition Width="400"/>
    </Grid.ColumnDefinitions>
    <StackPanel Grid.Row="1" Grid.Column="0" Orientation="Horizontal">
    <ListBox x:Name="lstCountries" Width="300" ></ListBox>
    <Button x:Name="Search" Width="75" Height="30" Margin="10,0,0,,4" Content="Rechercher" VerticalAlignment="Center" Background="Blue" FontWeight="Bold" FontSize="14"/>
    </StackPanel>
    <my:DataGrid x:Name="theDataGrid" AlternatingRowBackground="Beige" AutoGenerateColumns="True" Width="400" Height="</Grid>
    </UserControl>

    Oui je vois les datagrid dans la toolbox.

  13. #13
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    207
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 207
    Par défaut
    J'ai réinstallé visual studio 2010. Un message m'indique qu'il y a des erreurs que voici :


    [01/14/10,18:02:10] Microsoft Silverlight 3 SDK: [2] Setup detection logic indicates that this component is NOT installed, but MSI indicates that it IS already installed. This is usually caused by an incompatible previous version being installed on the system. Check in Add Remove Programs and uninstall any previous versions of Microsoft Silverlight 3 SDK.
    [01/14/10,18:02:11] Microsoft Silverlight 3 SDK: [2] WARNING! Setup Failed for optional component Microsoft Silverlight 3 SDK. MSI returned error code 1603
    [01/15/10,08:55:33] VS70pgui: [2] The following volumes do not have enough disk space for repair/reinstall:
    [01/15/10,08:55:33] VS70pgui: [2] c:\ 3136836096 1356510208|
    [01/18/10,15:28:36] VC 10.0 Runtime (x86): [2] dlmgr: Unable to Cancel Job : hr= 0x80200002
    [01/18/10,15:28:36] VC 10.0 Runtime (x86): [2] dlmgr: CDownloadJobCompositeImpl: Download completed with hr = 0x80004004
    [01/18/10,15:28:36] setup.exe: [2] ISetupComponent:re/Post/Install() failed in ISetupManager::InternalInstallManager() with HRESULT -2147467260.
    [01/18/10,15:28:37] setup.exe: [2] CSetupManager::RunInstallPhase() - Call to Pre/Install/Post for InstallComponents failed
    [01/18/10,15:28:37] setup.exe: [2] CSetupManager::RunInstallPhaseAndCheckResults() - RunInstallPhase() returned a NULL piActionResults
    [01/18/10,15:28:37] setup.exe: [2] CSetupManager::RunInstallFromList() - RunInstallPhaseAndCheckResults failed [2]
    [01/18/10,15:28:37] setup.exe: [2] ISetupManager::RunInstallLists(IP_PREINSTALL failed in ISetupManager::RunInstallFromThread()
    [01/18/10,15:28:37] setup.exe: [2] ISetupManager::RunInstallFromThread() failed in ISetupManager::RunInstall()
    [01/18/10,15:28:37] setup.exe: [2] CSetupManager::Run() - Call to RunInstall() failed
    [01/18/10,15:28:38] VS70pgui: [2] Return for VC 10.0 Runtime (x86) indicates a failed installation. DepCheck indicates the component is installed.
    [01/18/10,15:28:38] VS70pgui: [2] DepCheck indicates Microsoft Visual F# 1.0 Runtime was not attempted to be installed.
    [01/18/10,15:28:39] VS70pgui: [2] DepCheck indicates Microsoft Visual Studio Macro Tools was not attempted to be installed.
    [01/18/10,15:28:39] VS70pgui: [2] DepCheck indicates Microsoft Visual Studio 2010 Professional Beta 2 - ENU was not attempted to be installed.
    [01/18/10,15:28:39] VS70pgui: [2] DepCheck indicates Microsoft ASP.NET MVC 2 - Visual Studio 2010 Tools was not attempted to be installed.
    [01/18/10,15:28:39] VS70pgui: [2] DepCheck indicates Microsoft ASP.NET MVC 2 was not attempted to be installed.
    [01/18/10,15:28:39] VS70pgui: [2] DepCheck indicates Microsoft Silverlight 3 SDK was not attempted to be installed.
    [01/18/10,15:28:40] VS70pgui: [2] DepCheck indicates Microsoft Office Development Tools for Visual Studio 2010 (x86) was not attempted to be installed.
    [01/18/10,15:28:40] VS70pgui: [2] DepCheck indicates Dotfuscator Software Services - Community Edition was not attempted to be installed.
    [01/18/10,15:28:40] VS70pgui: [2] DepCheck indicates Crystal Reports templates for Visual Studio 2010 was not attempted to be installed.
    [01/18/10,15:28:40] VS70pgui: [2] DepCheck indicates Microsoft SQL Server Compact 3.5 SP2 Beta ENU was not attempted to be installed.
    [01/18/10,15:28:40] VS70pgui: [2] DepCheck indicates Visual Studio 2010 Beta 2 Tools for SQL Server Compact ENU was not attempted to be installed.
    [01/18/10,15:28:40] VS70pgui: [2] DepCheck indicates Microsoft Sync Framework Runtime v1.0 (x86) ENU was not attempted to be installed.
    [01/18/10,15:28:40] VS70pgui: [2] DepCheck indicates Microsoft Sync Services for ADO.NET v2.0 (x86) ENU was not attempted to be installed.
    [01/18/10,15:28:40] VS70pgui: [2] DepCheck indicates Microsoft Sync Framework Services v1.0 (x86) ENU was not attempted to be installed.
    [01/18/10,15:28:41] VS70pgui: [2] DepCheck indicates Microsoft Sync Framework SDK v1.0 (x86) ENU was not attempted to be installed.
    [01/18/10,15:28:41] VS70pgui: [2] DepCheck indicates Microsoft SQL Publishing Wizard 1.4 was not attempted to be installed.
    [01/18/10,15:28:41] VS70pgui: [2] DepCheck indicates SQL Server System CLR Types was not attempted to be installed.
    [01/18/10,15:28:41] VS70pgui: [2] DepCheck indicates SQL Server 2008 R2 Management Objects was not attempted to be installed.
    [01/18/10,15:28:41] VS70pgui: [2] DepCheck indicates Microsoft SQL Server 2008 Express Service Pack 1 (x86) was not attempted to be installed.
    [01/18/10,15:28:41] VS70pgui: [2] DepCheck indicates Data-tier Application Component Framework was not attempted to be installed.
    [01/18/10,15:28:42] VS70pgui: [2] DepCheck indicates Microsoft SharePoint Development Tools was not attempted to be installed.
    [01/18/10,15:28:42] VS70pgui: [2] DepCheck indicates Data-tier Application Component Project System was not attempted to be installed.
    [01/18/10,15:28:42] VS70pgui: [2] DepCheck indicates Transact-SQL Language Service was not attempted to be installed.
    [01/18/10,15:28:42] VS70pgui: [2] DepCheck indicates Microsoft Visual Studio 2010 ADO.NET Entity Framework Tools was not attempted to be installed.
    [01/18/10,15:28:42] VS70pgui: [2] DepCheck indicates Microsoft Help 3.0 Beta 2 was not attempted to be installed.
    [01/18/10,16:07:11] Microsoft Silverlight 3 SDK: [2] Setup detection logic indicates that this component is NOT installed, but MSI indicates that it IS already installed. This is usually caused by an incompatible previous version being installed on the system. Check in Add Remove Programs and uninstall any previous versions of Microsoft Silverlight 3 SDK.
    [01/18/10,16:07:13] Microsoft Silverlight 3 SDK: [2] WARNING! Setup Failed for optional component Microsoft Silverlight 3 SDK. MSI returned error code 1603
    ***EndOfSession***[01/14/10,18:02:10] Microsoft Silverlight 3 SDK: [2] Setup detection logic indicates that this component is NOT installed, but MSI indicates that it IS already installed. This is usually caused by an incompatible previous version being installed on the system. Check in Add Remove Programs and uninstall any previous versions of Microsoft Silverlight 3 SDK.
    [01/14/10,18:02:11] Microsoft Silverlight 3 SDK: [2] WARNING! Setup Failed for optional component Microsoft Silverlight 3 SDK. MSI returned error code 1603
    [01/15/10,08:55:33] VS70pgui: [2] The following volumes do not have enough disk space for repair/reinstall:
    [01/15/10,08:55:33] VS70pgui: [2] c:\ 3136836096 1356510208|
    [01/18/10,15:28:36] VC 10.0 Runtime (x86): [2] dlmgr: Unable to Cancel Job : hr= 0x80200002
    [01/18/10,15:28:36] VC 10.0 Runtime (x86): [2] dlmgr: CDownloadJobCompositeImpl: Download completed with hr = 0x80004004
    [01/18/10,15:28:36] setup.exe: [2] ISetupComponent:re/Post/Install() failed in ISetupManager::InternalInstallManager() with HRESULT -2147467260.
    [01/18/10,15:28:37] setup.exe: [2] CSetupManager::RunInstallPhase() - Call to Pre/Install/Post for InstallComponents failed
    [01/18/10,15:28:37] setup.exe: [2] CSetupManager::RunInstallPhaseAndCheckResults() - RunInstallPhase() returned a NULL piActionResults
    [01/18/10,15:28:37] setup.exe: [2] CSetupManager::RunInstallFromList() - RunInstallPhaseAndCheckResults failed [2]
    [01/18/10,15:28:37] setup.exe: [2] ISetupManager::RunInstallLists(IP_PREINSTALL failed in ISetupManager::RunInstallFromThread()
    [01/18/10,15:28:37] setup.exe: [2] ISetupManager::RunInstallFromThread() failed in ISetupManager::RunInstall()
    [01/18/10,15:28:37] setup.exe: [2] CSetupManager::Run() - Call to RunInstall() failed
    [01/18/10,15:28:38] VS70pgui: [2] Return for VC 10.0 Runtime (x86) indicates a failed installation. DepCheck indicates the component is installed.
    [01/18/10,15:28:38] VS70pgui: [2] DepCheck indicates Microsoft Visual F# 1.0 Runtime was not attempted to be installed.
    [01/18/10,15:28:39] VS70pgui: [2] DepCheck indicates Microsoft Visual Studio Macro Tools was not attempted to be installed.
    [01/18/10,15:28:39] VS70pgui: [2] DepCheck indicates Microsoft Visual Studio 2010 Professional Beta 2 - ENU was not attempted to be installed.
    [01/18/10,15:28:39] VS70pgui: [2] DepCheck indicates Microsoft ASP.NET MVC 2 - Visual Studio 2010 Tools was not attempted to be installed.
    [01/18/10,15:28:39] VS70pgui: [2] DepCheck indicates Microsoft ASP.NET MVC 2 was not attempted to be installed.
    [01/18/10,15:28:39] VS70pgui: [2] DepCheck indicates Microsoft Silverlight 3 SDK was not attempted to be installed.
    [01/18/10,15:28:40] VS70pgui: [2] DepCheck indicates Microsoft Office Development Tools for Visual Studio 2010 (x86) was not attempted to be installed.
    [01/18/10,15:28:40] VS70pgui: [2] DepCheck indicates Dotfuscator Software Services - Community Edition was not attempted to be installed.
    [01/18/10,15:28:40] VS70pgui: [2] DepCheck indicates Crystal Reports templates for Visual Studio 2010 was not attempted to be installed.
    [01/18/10,15:28:40] VS70pgui: [2] DepCheck indicates Microsoft SQL Server Compact 3.5 SP2 Beta ENU was not attempted to be installed.
    [01/18/10,15:28:40] VS70pgui: [2] DepCheck indicates Visual Studio 2010 Beta 2 Tools for SQL Server Compact ENU was not attempted to be installed.
    [01/18/10,15:28:40] VS70pgui: [2] DepCheck indicates Microsoft Sync Framework Runtime v1.0 (x86) ENU was not attempted to be installed.
    [01/18/10,15:28:40] VS70pgui: [2] DepCheck indicates Microsoft Sync Services for ADO.NET v2.0 (x86) ENU was not attempted to be installed.
    [01/18/10,15:28:40] VS70pgui: [2] DepCheck indicates Microsoft Sync Framework Services v1.0 (x86) ENU was not attempted to be installed.
    [01/18/10,15:28:41] VS70pgui: [2] DepCheck indicates Microsoft Sync Framework SDK v1.0 (x86) ENU was not attempted to be installed.
    [01/18/10,15:28:41] VS70pgui: [2] DepCheck indicates Microsoft SQL Publishing Wizard 1.4 was not attempted to be installed.
    [01/18/10,15:28:41] VS70pgui: [2] DepCheck indicates SQL Server System CLR Types was not attempted to be installed.
    [01/18/10,15:28:41] VS70pgui: [2] DepCheck indicates SQL Server 2008 R2 Management Objects was not attempted to be installed.
    [01/18/10,15:28:41] VS70pgui: [2] DepCheck indicates Microsoft SQL Server 2008 Express Service Pack 1 (x86) was not attempted to be installed.
    [01/18/10,15:28:41] VS70pgui: [2] DepCheck indicates Data-tier Application Component Framework was not attempted to be installed.
    [01/18/10,15:28:42] VS70pgui: [2] DepCheck indicates Microsoft SharePoint Development Tools was not attempted to be installed.
    [01/18/10,15:28:42] VS70pgui: [2] DepCheck indicates Data-tier Application Component Project System was not attempted to be installed.
    [01/18/10,15:28:42] VS70pgui: [2] DepCheck indicates Transact-SQL Language Service was not attempted to be installed.
    [01/18/10,15:28:42] VS70pgui: [2] DepCheck indicates Microsoft Visual Studio 2010 ADO.NET Entity Framework Tools was not attempted to be installed.
    [01/18/10,15:28:42] VS70pgui: [2] DepCheck indicates Microsoft Help 3.0 Beta 2 was not attempted to be installed.
    [01/18/10,16:07:11] Microsoft Silverlight 3 SDK: [2] Setup detection logic indicates that this component is NOT installed, but MSI indicates that it IS already installed. This is usually caused by an incompatible previous version being installed on the system. Check in Add Remove Programs and uninstall any previous versions of Microsoft Silverlight 3 SDK.
    [01/18/10,16:07:13] Microsoft Silverlight 3 SDK: [2] WARNING! Setup Failed for optional component Microsoft Silverlight 3 SDK. MSI returned error code 1603
    [01/18/10,16:39:07] VS70pgui: [2] DepCheck indicates Microsoft Silverlight 3 SDK is not installed.
    [01/20/10,15:34:11] Microsoft Visual Studio 2010 Professional Beta 2 - ENU: [2] dlmgr: IBackgroundCopyError::GetErrorDescription failed: hr= 0x8007013d
    [01/20/10,15:43:08] Microsoft Visual Studio 2010 Professional Beta 2 - ENU: [2] dlmgr: IBackgroundCopyError::GetErrorDescription failed: hr= 0x8007013d
    [01/20/10,15:43:19] Microsoft Visual Studio 2010 Professional Beta 2 - ENU: [2] dlmgr: Unable to Cancel Job : hr= 0x80200002
    [01/20/10,15:43:19] Microsoft Visual Studio 2010 Professional Beta 2 - ENU: [2] dlmgr: CDownloadJobCompositeImpl: Download completed with hr = 0x80004004
    [01/20/10,15:43:20] Microsoft Visual Studio 2010 Professional Beta 2 - ENU: [2] Failed to fetch setup file in CGRootComponent:reInstall(), cancelled
    [01/20/10,15:43:20] setup.exe: [2] ISetupComponent:re/Post/Install() failed in ISetupManager::InternalInstallManager() with HRESULT -2147467260.
    [01/20/10,15:43:21] setup.exe: [2] CSetupManager::RunInstallPhase() - Call to Pre/Install/Post for InstallComponents failed
    [01/20/10,15:43:21] setup.exe: [2] CSetupManager::RunInstallPhaseAndCheckResults() - RunInstallPhase() returned a NULL piActionResults
    [01/20/10,15:43:21] setup.exe: [2] CSetupManager::RunInstallFromList() - RunInstallPhaseAndCheckResults failed [2]
    [01/20/10,15:43:22] setup.exe: [2] ISetupManager::RunInstallLists(IP_PREINSTALL failed in ISetupManager::RunInstallFromThread()
    [01/20/10,15:43:22] setup.exe: [2] ISetupManager::RunInstallFromThread() failed in ISetupManager::RunInstall()
    [01/20/10,15:43:22] setup.exe: [2] CSetupManager::Run() - Call to RunInstall() failed
    [01/20/10,15:43:24] VS70pgui: [2] DepCheck indicates Microsoft Application Error Reporting was not attempted to be installed.
    [01/20/10,15:43:25] VS70pgui: [2] DepCheck indicates VC 9.0 Runtime (x86) was not attempted to be installed.
    [01/20/10,15:43:25] VS70pgui: [2] DepCheck indicates VC 10.0 Runtime (x86) was not attempted to be installed.
    [01/20/10,15:43:26] VS70pgui: [2] DepCheck indicates Microsoft .NET Framework 4 Beta 2 was not attempted to be installed.
    [01/20/10,15:43:27] VS70pgui: [2] DepCheck indicates Microsoft Visual F# 1.0 Runtime was not attempted to be installed.
    [01/20/10,15:43:27] VS70pgui: [2] DepCheck indicates Microsoft Visual Studio Macro Tools was not attempted to be installed.
    [01/20/10,15:43:28] VS70pgui: [2] DepCheck indicates .NET Framework 4 Multi-Targeting Pack was not attempted to be installed.
    [01/20/10,15:43:28] VS70pgui: [2] Return for Microsoft Visual Studio 2010 Professional Beta 2 - ENU indicates a failed installation. DepCheck indicates the component is installed.
    [01/20/10,15:43:28] VS70pgui: [2] DepCheck indicates Microsoft Web Deployment Tool (x86) was not attempted to be installed.
    [01/20/10,15:43:29] VS70pgui: [2] DepCheck indicates Microsoft ASP.NET MVC 2 - Visual Studio 2010 Tools was not attempted to be installed.
    [01/20/10,15:43:29] VS70pgui: [2] DepCheck indicates Microsoft ASP.NET MVC 2 was not attempted to be installed.
    [01/20/10,15:43:30] VS70pgui: [2] DepCheck indicates Visual Studio 2010 Tools for Office Runtime Beta 2 (x86) was not attempted to be installed.
    [01/20/10,15:43:30] VS70pgui: [2] DepCheck indicates Microsoft Office Development Tools for Visual Studio 2010 (x86) was not attempted to be installed.
    [01/20/10,15:43:31] VS70pgui: [2] DepCheck indicates Dotfuscator Software Services - Community Edition was not attempted to be installed.
    [01/20/10,15:43:31] VS70pgui: [2] DepCheck indicates Crystal Reports templates for Visual Studio 2010 was not attempted to be installed.
    [01/20/10,15:43:31] VS70pgui: [2] DepCheck indicates Microsoft SQL Server Compact 3.5 SP2 Beta ENU was not attempted to be installed.
    [01/20/10,15:43:32] VS70pgui: [2] DepCheck indicates Visual Studio 2010 Beta 2 Tools for SQL Server Compact ENU was not attempted to be installed.
    [01/20/10,15:43:32] VS70pgui: [2] DepCheck indicates Microsoft Sync Framework Runtime v1.0 (x86) ENU was not attempted to be installed.
    [01/20/10,15:43:32] VS70pgui: [2] DepCheck indicates Microsoft Sync Services for ADO.NET v2.0 (x86) ENU was not attempted to be installed.
    [01/20/10,15:43:33] VS70pgui: [2] DepCheck indicates Microsoft Sync Framework Services v1.0 (x86) ENU was not attempted to be installed.
    [01/20/10,15:43:33] VS70pgui: [2] DepCheck indicates Microsoft Sync Framework SDK v1.0 (x86) ENU was not attempted to be installed.
    [01/20/10,15:43:34] VS70pgui: [2] DepCheck indicates Microsoft SQL Publishing Wizard 1.4 was not attempted to be installed.
    [01/20/10,15:43:34] VS70pgui: [2] DepCheck indicates SQL Server System CLR Types was not attempted to be installed.
    [01/20/10,15:43:34] VS70pgui: [2] DepCheck indicates SQL Server 2008 R2 Management Objects was not attempted to be installed.
    [01/20/10,15:43:35] VS70pgui: [2] DepCheck indicates Data-tier Application Component Framework was not attempted to be installed.
    [01/20/10,15:43:36] VS70pgui: [2] DepCheck indicates Microsoft SharePoint Development Tools was not attempted to be installed.
    [01/20/10,15:43:36] VS70pgui: [2] DepCheck indicates Data-tier Application Component Project System was not attempted to be installed.
    [01/20/10,15:43:36] VS70pgui: [2] DepCheck indicates Transact-SQL Language Service was not attempted to be installed.
    [01/20/10,15:43:36] VS70pgui: [2] DepCheck indicates Microsoft Visual Studio 2010 ADO.NET Entity Framework Tools was not attempted to be installed.
    [01/20/10,15:43:37] VS70pgui: [2] DepCheck indicates Microsoft Help 3.0 Beta 2 was not attempted to be installed.
    [01/27/10,13:19:47] Microsoft Visual Studio 2010 Professional Beta 2 - ENU: [2] dlmgr: IBackgroundCopyError::GetErrorDescription failed: hr= 0x8007013d
    ***EndOfSession***

  14. #14
    Expert confirmé
    Avatar de Skyounet
    Homme Profil pro
    Software Engineer
    Inscrit en
    Mars 2005
    Messages
    6 380
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 38
    Localisation : Etats-Unis

    Informations professionnelles :
    Activité : Software Engineer
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mars 2005
    Messages : 6 380
    Par défaut
    Tu as désinstallé Silverlight 3 ?

  15. #15
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    207
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 207
    Par défaut
    heu non, il faut désinstaller silverlight 3?

  16. #16
    Expert confirmé
    Avatar de Skyounet
    Homme Profil pro
    Software Engineer
    Inscrit en
    Mars 2005
    Messages
    6 380
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 38
    Localisation : Etats-Unis

    Informations professionnelles :
    Activité : Software Engineer
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mars 2005
    Messages : 6 380
    Par défaut
    Citation Envoyé par maxwel56 Voir le message
    heu non, il faut désinstaller silverlight 3?
    Check in Add Remove Programs and uninstall any previous versions of Microsoft Silverlight 3 SDK

  17. #17
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    207
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 207
    Par défaut
    c'est bon cela fonctionne j'ai réinstallé le silverlight tools for visual studio 2010 beta 2

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Impossible d'ajouter une imprimante !
    Par Le Pharaon dans le forum Windows XP
    Réponses: 3
    Dernier message: 17/11/2015, 18h27
  2. Impossible d'ajouter un enregistrement fils
    Par SwiTz dans le forum Langage SQL
    Réponses: 2
    Dernier message: 03/03/2006, 14h22
  3. Impossible d'ajouter un enregistrement fils
    Par Ludo75 dans le forum Requêtes
    Réponses: 5
    Dernier message: 25/01/2006, 16h09
  4. Réponses: 1
    Dernier message: 14/11/2005, 16h43

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo