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

VB 6 et antérieur Discussion :

[VB6] La méthode 'Sheets' de l'objet '_Global' a échoué (erreur 1004)


Sujet :

VB 6 et antérieur

  1. #1
    Candidat au Club
    Profil pro
    Inscrit en
    Avril 2008
    Messages
    5
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2008
    Messages : 5
    Points : 4
    Points
    4
    Par défaut [VB6] La méthode 'Sheets' de l'objet '_Global' a échoué (erreur 1004)
    Le message d'erreur mentionné dans le titre se produit au deuxième Graf.SetSourceData que j'ais mis en rouge. Je ne sais que penser... J'ais effectuer des recherches pour comprendre le pourquoi et ... voir résoudre le problème. Mais, sans succès. Merci par avance pour l'aide.
    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
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    Public Sub GrafAnime()
    Dim E As Object
    Dim TabGraf As Object
    Dim Graf As Object
    Dim GrafData As String
    'Dim Table As Object
    Set TabGraf = CreateObject("Excel.Application")
    TabGraf.DisplayAlerts = False
    TabGraf.Workbooks.Add
    TabGraf.Visible = True
    ActiveSheet.PageSetup.Orientation = xlLandscape
    Set RecL = DB.OpenRecordset("Select activité, sum(nb_h) As somme From Saisie_suivi_activité " _
        & " Where date>=#" & DateBegin & "# And date<=#" & DateEnd & "# and activité not like 'congé*' Group By activité Order By activité")
    If RecL.EOF = False Then
        For L = 1 To RecL.RecordCount
            TabGraf.Cells(L, 1) = Format(RecL.Fields("activité"))
            TabGraf.Cells(L, 2) = Format(RecL.Fields("somme"))
            RecL.MoveNext
        Next L
        Set Graf = TabGraf.Charts.Add
        'Charts.Add
        Graf.ChartType = xl3DPieExploded
        GrafData = "A1:B" & RecL.RecordCount
        Graf.SetSourceData Source:=Sheets("Feuil1").Range(GrafData), PlotBy _
            :=xlColumns
        Graf.Location Where:=xlLocationAsObject, Name:="Feuil1"
        TabGraf.ActiveSheet.Shapes("Graphique 1").IncrementLeft -231.75
        TabGraf.ActiveSheet.Shapes("Graphique 1").IncrementTop -112.5
        TabGraf.ActiveSheet.Shapes("Graphique 1").ScaleWidth 1.41, msoFalse, _
            msoScaleFromTopLeft
        TabGraf.ActiveSheet.Shapes("Graphique 1").ScaleHeight 1.65, msoFalse, _
            msoScaleFromTopLeft
        TabGraf.ActiveSheet.Shapes("Graphique 1").ScaleWidth 1.17, msoFalse, msoScaleFromTopLeft
        TabGraf.ActiveSheet.Shapes("Graphique 1").ScaleHeight 1.17, msoFalse, msoScaleFromTopLeft
        ActiveChart.Legend.Select
        Selection.AutoScaleFont = True
        With Selection.Font
            .Size = 9
        End With
        ActiveChart.ChartArea.Select
        ActiveChart.HasLegend = True
        ActiveChart.Legend.Select
        Selection.Position = xlBottom
        ActiveChart.ApplyDataLabels AutoText:=True, LegendKey:=False, _
            HasLeaderLines:=True, ShowSeriesName:=False, ShowCategoryName:=False, _
            ShowValue:=False, ShowPercentage:=True, ShowBubbleSize:=False
        ActiveChart.PlotArea.Select
        Selection.Top = 78
        Selection.Width = 499
        Selection.Height = 197
        Selection.Left = 37
        Selection.Top = 51
        Selection.Width = 561
        Selection.Height = 224
        Selection.Left = 36
        Selection.Top = 60
        Selection.Top = 65
        ActiveChart.PlotArea.Select
        Selection.Top = 85
        Selection.Width = 655
        Selection.Height = 261
        Selection.Width = 666
        Selection.Height = 263
        ActiveChart.SeriesCollection(1).DataLabels.Select
        Selection.AutoScaleFont = True
        With Selection.Font
            .Size = 15
        End With
        ActiveChart.ChartArea.Select
        ActiveChart.ChartArea.Copy
        'Selection.Cut
        With W.Selection
            .Font.Size = 18
            .ParagraphFormat.Alignment = wdAlignParagraphCenter
            .TypeText "Répartition du temps de travail au vu des différentes activités du " & Format(DateBegin) & " au " & Format(DateEnd)
            .TypeParagraph
            .ParagraphFormat.Alignment = wdAlignParagraphLeft
            .TypeParagraph
            .Paste
        End With
        TabGraf.Quit
        Set TabGraf = Nothing
    End If
    
    Set TabGraf = CreateObject("Excel.Application")
    TabGraf.DisplayAlerts = False
    TabGraf.Workbooks.Add
    TabGraf.Visible = True
    Set RecL = DB.OpenRecordset("Select motif, count([date du contact]) As compte From [suivi contact_zone] " _
        & " Where [qui ?]='ASMAT' And [date du contact]>= #" & DateBegin & "# and [date du contact]<= #" & DateEnd & "# Group By motif")
    If RecL.EOF = False Then
        For L = 1 To RecL.RecordCount
            TabGraf.Cells(L, 1) = Format(RecL.Fields("motif"))
            TabGraf.Cells(L, 2) = Format(RecL.Fields("compte"))
            RecL.MoveNext
        Next L
        TabGraf.Sheets("Feuil1").Select
        'tableau.Range(tableau.Cells(1, 1), tableau.Cells(RecL.RecordCount, 2)).Select
        Set Graf = TabGraf.Charts.Add
        'Charts.Add
        Graf.ChartType = xl3DPieExploded
        GrafData = "A1:B" & RecL.RecordCount
        Graf.SetSourceData Source:=Sheets("Feuil1").Range(GrafData), PlotBy _
            :=xlColumns
        Graf.Location Where:=xlLocationAsObject, Name:="Feuil1"
        TabGraf.ActiveSheet.Shapes("Graphique 1").IncrementLeft -231.75
        TabGraf.ActiveSheet.Shapes("Graphique 1").IncrementTop -112.5
        TabGraf.ActiveSheet.Shapes("Graphique 1").ScaleWidth 1.41, msoFalse, _
            msoScaleFromTopLeft
        TabGraf.ActiveSheet.Shapes("Graphique 1").ScaleHeight 1.65, msoFalse, _
            msoScaleFromTopLeft
        TabGraf.ActiveSheet.Shapes("Graphique 1").ScaleWidth 1.17, msoFalse, msoScaleFromTopLeft
        TabGraf.ActiveSheet.Shapes("Graphique 1").ScaleHeight 1.17, msoFalse, msoScaleFromTopLeft
        ActiveChart.Legend.Select
        Selection.AutoScaleFont = True
        With Selection.Font
            .Size = 9
        End With
        ActiveChart.ChartArea.Select
        ActiveChart.HasLegend = True
        ActiveChart.Legend.Select
        Selection.Position = xlBottom
        ActiveChart.ApplyDataLabels AutoText:=True, LegendKey:=False, _
            HasLeaderLines:=True, ShowSeriesName:=False, ShowCategoryName:=False, _
            ShowValue:=False, ShowPercentage:=True, ShowBubbleSize:=False
        ActiveChart.PlotArea.Select
        Selection.Top = 78
        Selection.Width = 499
        Selection.Height = 197
        Selection.Left = 37
        Selection.Top = 51
        Selection.Width = 561
        Selection.Height = 224
        Selection.Left = 36
        Selection.Top = 60
        Selection.Top = 65
        ActiveChart.PlotArea.Select
        Selection.Top = 85
        Selection.Width = 655
        Selection.Height = 261
        Selection.Width = 666
        Selection.Height = 263
        ActiveChart.SeriesCollection(1).DataLabels.Select
        Selection.AutoScaleFont = True
        With Selection.Font
            .Size = 15
        End With
        ActiveChart.ChartArea.Select
        ActiveChart.ChartArea.Copy
        'Selection.Cut
        With W.Selection
            .Font.Size = 18
            .ParagraphFormat.Alignment = wdAlignParagraphCenter
            .TypeText "Répartition du temps de travail au vu des différentes activités du " & Format(DateBegin) & " au " & Format(DateEnd)
            .TypeParagraph
            .ParagraphFormat.Alignment = wdAlignParagraphLeft
            .TypeParagraph
            .Paste
        End With
        TabGraf.Quit
        Set TabGraf = Nothing
    End If
    End Sub

  2. #2
    Membre éclairé
    Avatar de richard
    Homme Profil pro
    Inscrit en
    Avril 2002
    Messages
    475
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Puy de Dôme (Auvergne)

    Informations forums :
    Inscription : Avril 2002
    Messages : 475
    Points : 779
    Points
    779
    Par défaut


    Quel compilateur ? Quelle version ? Il y a plus de 100 compilateurs/interpréteurs BASIC sur le marché ... Qui ont tus leurs variantes et leur message d'erreurs. On peut supposer peut-être qu'il s'agit de Visual Basic ou de Real Basic ou d'un autre Basic orienté objet ... Bref on peut "supposer" beaucoup de choses si tu ne nous dis rien.

  3. #3
    Candidat au Club
    Profil pro
    Inscrit en
    Avril 2008
    Messages
    5
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2008
    Messages : 5
    Points : 4
    Points
    4
    Par défaut
    Pardon, je n'ais pas pensé à donner ces précision
    Je travaille avec Visual Basic 6.0

  4. #4
    Membre éclairé
    Avatar de richard
    Homme Profil pro
    Inscrit en
    Avril 2002
    Messages
    475
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Puy de Dôme (Auvergne)

    Informations forums :
    Inscription : Avril 2002
    Messages : 475
    Points : 779
    Points
    779
    Par défaut
    OK, dans ce cas je crois qu'il serait plus efficace de poster dans le forum ad hoc, c'est ici :

    http://www.developpez.net/forums/forumdisplay.php?f=285

Discussions similaires

  1. [XL-2007] La méthode 'Range' de l'objet '_Global' a échoué
    Par amelyfred dans le forum Macros et VBA Excel
    Réponses: 12
    Dernier message: 24/06/2011, 12h33
  2. Réponses: 6
    Dernier message: 08/01/2009, 12h06
  3. Erreur 1004: La méthode "Range" de l'objet "_global" a échoué
    Par Froggy007 dans le forum Macros et VBA Excel
    Réponses: 15
    Dernier message: 19/09/2008, 00h05
  4. erreur La méthode 'Range' de l'objet '_Global' a échoué
    Par mahboub dans le forum Macros et VBA Excel
    Réponses: 4
    Dernier message: 17/11/2006, 21h46
  5. [VBA-E]La méthode 'Range' de l'objet '_Global' a échoué
    Par repié dans le forum Macros et VBA Excel
    Réponses: 5
    Dernier message: 22/02/2006, 17h00

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