Visual studio2019

hellhammer72 Messages postés 20 Date d'inscription vendredi 16 août 2013 Statut Membre Dernière intervention 30 décembre 2019 - 23 oct. 2019 à 13:32
vb95 Messages postés 3472 Date d'inscription samedi 11 janvier 2014 Statut Contributeur Dernière intervention 13 avril 2024 - 7 janv. 2020 à 15:39
Bonjour à tous!
Je me suis créé un petit logiciel pour mon travail (je suis praticien) contenant environ 19 Forms la 18eme étant une analyse de toutes les autres forms. Lorsque j'ai ouvert cette form hier soir plus rien dans le design. Ma form est vide. Pourtant toutes les lignes de code sont présentes pour preuve j'ai souhaité créé un bouton il me le nomme Button6 et lorsque je veux le nommé Boutton1 j'ai un message d'erreur. Tout est présent dans l'explorateur de fichier à droite tous mes labels, box, buttons....Mais page form totalement vide ! Comment récupérer tout mon design car j'avoue que c'est des jours de travail perdu?
Merci d'avance

6 réponses

NHenry Messages postés 15113 Date d'inscription vendredi 14 mars 2003 Statut Modérateur Dernière intervention 22 avril 2024 159
23 oct. 2019 à 18:42
À tout hasard, as-tu regardé dans les propriétés de la form et utilisé le sélecteur pour voir si par hasard tes contrôles ne seraient pas hors écran ?
0
hellhammer72 Messages postés 20 Date d'inscription vendredi 16 août 2013 Statut Membre Dernière intervention 30 décembre 2019
23 oct. 2019 à 18:54
Alors j'ai une piste de ce qui a cloché!
N'ayant pas de réponse j'ai tout refait cette après-midi ( une petite partie) et du coup lorsque je veux sauvegarder mon application j'ai un message " mémoire insuffisante pour continuer l’exécution du programme".

Et la dernière fois j'ai eu ce message et l'application s'est coupé car elle ne répondait plus. Je ne m'inquiétais pas vu que je sauvegarde toutes les 10mn mais en fait je ne comprend pas trop la sauvegarde..et lorsque j'ai redémarrer plus rien dans ma page.. du coup j'ai le même message qui s'affiche et je ne sais pas comment gérer cela..

Pouvez vous m'aider svp je n'ai pas envie de tout reperdre...
0
Whismeril Messages postés 19028 Date d'inscription mardi 11 mars 2003 Statut Non membre Dernière intervention 24 avril 2024 656
23 oct. 2019 à 20:17
Bonjour

Peux tu préciser dans quel langage tu codes?
Tu avais posté ton message en C++, il a été déplacé vers VB.Net, mais il n’y a rien dans ce que tu as écrit qui plaide pour l’un ou l’autre, ou encore C# voir F#....
0
hellhammer72 Messages postés 20 Date d'inscription vendredi 16 août 2013 Statut Membre Dernière intervention 30 décembre 2019
23 oct. 2019 à 20:37
Bonjour

Bon avant tout il faut bien comprendre que je suis novice et que j'ai cree ce programme pour faciliter mes séances (je suis kinésiologue) et que je ne cherche pas à être un grand programmateur.
Ceci étant dit j'ai créé ce programme avec des formulaires windows form donc je dirais C#?
0
Whismeril Messages postés 19028 Date d'inscription mardi 11 mars 2003 Statut Non membre Dernière intervention 24 avril 2024 656
Modifié le 23 oct. 2019 à 22:44
Tout le monde débute un jour, mais comme toute discipline, il ne faut pas le faire en dépit du bon sens.
T'inscrire à un cours d'Allemand, pour apprendre le Chinois ne va pas marcher.

Là c'est un peu ce que tu dit.

Des windows forms, il y en a en C#, mais aussi en VB.net et EN C++.Net.

Ça n'est donc pas un critère discriminant.

Par contre, le fait de savoir quel langage nous permettrait de te fournir des indications ciblées, pour essayer de récupérer tes données.

Quelle l'extension de tes fichiers de code?

0
hellhammer72 Messages postés 20 Date d'inscription vendredi 16 août 2013 Statut Membre Dernière intervention 30 décembre 2019
24 oct. 2019 à 00:57
Mes form sont en .vb! donc j'imagine que c'est du vb.net?
0
Whismeril Messages postés 19028 Date d'inscription mardi 11 mars 2003 Statut Non membre Dernière intervention 24 avril 2024 656
24 oct. 2019 à 09:24
Bonjour

On est bien en vb.net.
Avant tout, je te conseille de suivre un cours en ligne pour acquérir de bonnes bases. Celui-ci est pas mal
http://plasserre.developpez.com/cours/vb-net/

Vb.Net est un langage objet.
Tout objet dispose d’un constructeur, c’est une méthode (les sub et les functions sont des méthodes) qui est appelée à l’initialisation d’une instance.
C’est dans cette méthode qu’on écrit le code nécessaire à l’existence de l’objet.
Quand le constructeur n’est pas écrit c’est un constructeur par défaut qui est appliqué.

Pour les formulaires, le constructeur est « cachée », car le développeur définit ce qui est nécessaire en mode design.

On va commencer par afficher le constructeur.
Pour l’exemple, un formulaire avec un bouton et une boite de texte.


Côté code behind « rien »
Public Class Form1
 
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
 
    End Sub
End Class


A la 2eme ligne tu vas tapper
Public Class Form1
 
    Public Sub New()

    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
 
    End Sub
End Class


Et tapper Entrée.
VS va t’afficher l code complet du constructeur

Public Class Form1
 
    Public Sub New()
 
        ' Cet appel est requis par le concepteur.
        InitializeComponent()
 
        ' Ajoutez une initialisation quelconque après l'appel InitializeComponent().
 
    End Sub
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
 
    End Sub
End Class


On voit que la méthode InitializeComponent est appelée.
Elle est cachée elle aussi, dans un fichier à part, car c’est sur ce fichier que travaille le designer.

On va y aller voir

Click droit / atteindre la définition

Et hop
Private Sub InitializeComponent()
        Me.Button1 = New System.Windows.Forms.Button()
        Me.TextBox1 = New System.Windows.Forms.TextBox()
        Me.SuspendLayout()
        '
        'Button1
        '
        Me.Button1.Location = New System.Drawing.Point(190, 137)
        Me.Button1.Name = "Button1"
        Me.Button1.Size = New System.Drawing.Size(196, 51)
        Me.Button1.TabIndex = 0
        Me.Button1.Text = "Button1"
        Me.Button1.UseVisualStyleBackColor = True
        '
        'TextBox1
        '
        Me.TextBox1.Location = New System.Drawing.Point(167, 89)
        Me.TextBox1.Name = "TextBox1"
        Me.TextBox1.Size = New System.Drawing.Size(256, 20)
        Me.TextBox1.TabIndex = 1
        Me.TextBox1.Text = "Coucou"
        '
        'Form1
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(800, 450)
        Me.Controls.Add(Me.TextBox1)
        Me.Controls.Add(Me.Button1)
        Me.Name = "Form1"
        Me.Text = "Form1"
        Me.ResumeLayout(False)
        Me.PerformLayout()
 
    End Sub


Là est écrit tout le nécessaire à mettre un bouton et une textbox avec « coucou » dedans sur le formulaire.
La moindre erreur dans cette méthode ou dans le fichier complet entraine le dysfonctionnement du designer.

S’il n’y a plus rien ou plus grand chose dans ce fichier, c’est perdu.
Si tu y voies plein de lignes de code, tu les copies colles ici, en suivant ces quelques instructions https://codes-sources.commentcamarche.net/faq/11288-les-balises-de-code
0
Hellhammer72
24 oct. 2019 à 10:22
Merci beaucoup pour vos réponses et votre aide! Malheureusement dommage que nous ne nous soyons pas rencontrés plus tôt car après des heures de recherche sur le net n’ayant pas de réponses à mon problème j’ai supprimé ma form et je suis en train de la refaire mais j’avais bien tout ces codes ...!!!!
Je vais effectivement suivre le cours et essayer d’alléger mes lignes de programme car c’est bien un problème mémoire qui est à la cause de tout cela!
Une dernière question : j’ai fouiner un peu partout sur le net mais sans succès ! J’aimerais que cette fameuse forme qui analyse et résume toutes mes forms soit enregistrer en pdf! Connaîtriez vous la marche à suivre svp !
Allez en avant les cours de programmation m’attendent ...????
0
hellhammer72 Messages postés 20 Date d'inscription vendredi 16 août 2013 Statut Membre Dernière intervention 30 décembre 2019
30 déc. 2019 à 12:24
Bonjour Whismeril
Je ressors un vieux dossier sur un problème que j'avais eu il y a quelques temps. J'ai voulu faire quelques modifs de design sur mon petit logiciel et rebelotte. Bon cette fois je n'ai pas tout perdu mai j'ai perdu tout le design d'une form. J'ai fait tes manipulations et j'ai bien toutes les lignes de codes dans atteindre la definition. Mais ma form est totalement vide... Je ne sais pas quoi faire et j'en ai marre de tout refaire... j'ai déjà tout refait une fois.... merci d'avance pour votre aide
0
hellhammer72 Messages postés 20 Date d'inscription vendredi 16 août 2013 Statut Membre Dernière intervention 30 décembre 2019
30 déc. 2019 à 12:30
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Form11
    Inherits System.Windows.Forms.Form

    'Form remplace la méthode Dispose pour nettoyer la liste des composants.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overrides Sub Dispose(ByVal disposing As Boolean)
        Try
            If disposing AndAlso components IsNot Nothing Then
                components.Dispose()
            End If
        Finally
            MyBase.Dispose(disposing)
        End Try
    End Sub

    'Requise par le Concepteur Windows Form
    Private components As System.ComponentModel.IContainer

    'REMARQUE : la procédure suivante est requise par le Concepteur Windows Form
    'Elle peut être modifiée à l'aide du Concepteur Windows Form.  
    'Ne la modifiez pas à l'aide de l'éditeur de code.
    <System.Diagnostics.DebuggerStepThrough()> _
    Private Sub InitializeComponent()
        Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Form11))
        Me.GroupBox2 = New System.Windows.Forms.GroupBox()
        Me.CheckBox3 = New System.Windows.Forms.CheckBox()
        Me.Label1 = New System.Windows.Forms.Label()
        Me.CheckBox4 = New System.Windows.Forms.CheckBox()
        Me.Button2 = New System.Windows.Forms.Button()
        Me.Button1 = New System.Windows.Forms.Button()
        Me.Label3 = New System.Windows.Forms.Label()
        Me.Label2 = New System.Windows.Forms.Label()
        Me.Label4 = New System.Windows.Forms.Label()
        Me.Label25 = New System.Windows.Forms.Label()
        Me.Label19 = New System.Windows.Forms.Label()
        Me.Label17 = New System.Windows.Forms.Label()
        Me.Label13 = New System.Windows.Forms.Label()
        Me.PictureBox4 = New System.Windows.Forms.PictureBox()
        Me.PictureBox5 = New System.Windows.Forms.PictureBox()
        Me.PictureBox2 = New System.Windows.Forms.PictureBox()
        Me.Label7 = New System.Windows.Forms.Label()
        Me.Label6 = New System.Windows.Forms.Label()
        Me.Label23 = New System.Windows.Forms.Label()
        Me.Label22 = New System.Windows.Forms.Label()
        Me.Label16 = New System.Windows.Forms.Label()
        Me.Label15 = New System.Windows.Forms.Label()
        Me.Label11 = New System.Windows.Forms.Label()
        Me.Label9 = New System.Windows.Forms.Label()
        Me.Label8 = New System.Windows.Forms.Label()
        Me.Label10 = New System.Windows.Forms.Label()
        Me.Label21 = New System.Windows.Forms.Label()
        Me.PictureBox3 = New System.Windows.Forms.PictureBox()
        Me.PictureBox1 = New System.Windows.Forms.PictureBox()
        Me.Label12 = New System.Windows.Forms.Label()
        Me.Label27 = New System.Windows.Forms.Label()
        Me.Label28 = New System.Windows.Forms.Label()
        Me.PictureBox7 = New System.Windows.Forms.PictureBox()
        Me.Label24 = New System.Windows.Forms.Label()
        Me.Label42 = New System.Windows.Forms.Label()
        Me.Label46 = New System.Windows.Forms.Label()
        Me.Label40 = New System.Windows.Forms.Label()
        Me.Label41 = New System.Windows.Forms.Label()
        Me.Label43 = New System.Windows.Forms.Label()
        Me.Label45 = New System.Windows.Forms.Label()
        Me.Label34 = New System.Windows.Forms.Label()
        Me.Label35 = New System.Windows.Forms.Label()
        Me.Label32 = New System.Windows.Forms.Label()
        Me.Label33 = New System.Windows.Forms.Label()
        Me.Label31 = New System.Windows.Forms.Label()
        Me.Label29 = New System.Windows.Forms.Label()
        Me.Label20 = New System.Windows.Forms.Label()
        Me.Label26 = New System.Windows.Forms.Label()
        Me.Label30 = New System.Windows.Forms.Label()
        Me.Label37 = New System.Windows.Forms.Label()
        Me.Label44 = New System.Windows.Forms.Label()
        Me.Label47 = New System.Windows.Forms.Label()
        Me.Label48 = New System.Windows.Forms.Label()
        Me.PictureBox8 = New System.Windows.Forms.PictureBox()
        Me.PictureBox6 = New System.Windows.Forms.PictureBox()
        Me.Label49 = New System.Windows.Forms.Label()
        Me.Label14 = New System.Windows.Forms.Label()
        Me.Label36 = New System.Windows.Forms.Label()
        Me.Label38 = New System.Windows.Forms.Label()
        Me.Label39 = New System.Windows.Forms.Label()
        Me.Panel4 = New System.Windows.Forms.Panel()
        Me.Label53 = New System.Windows.Forms.Label()
        Me.Label54 = New System.Windows.Forms.Label()
        Me.Panel1 = New System.Windows.Forms.Panel()
        Me.Panel2 = New System.Windows.Forms.Panel()
        Me.Panel3 = New System.Windows.Forms.Panel()
        Me.Panel5 = New System.Windows.Forms.Panel()
        Me.Label18 = New System.Windows.Forms.Label()
        Me.Label5 = New System.Windows.Forms.Label()
        Me.Label50 = New System.Windows.Forms.Label()
        Me.Label51 = New System.Windows.Forms.Label()
        Me.Panel6 = New System.Windows.Forms.Panel()
        Me.Panel7 = New System.Windows.Forms.Panel()
        Me.GroupBox2.SuspendLayout()
        CType(Me.PictureBox4, System.ComponentModel.ISupportInitialize).BeginInit()
        CType(Me.PictureBox5, System.ComponentModel.ISupportInitialize).BeginInit()
        CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).BeginInit()
        CType(Me.PictureBox3, System.ComponentModel.ISupportInitialize).BeginInit()
        CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
        CType(Me.PictureBox7, System.ComponentModel.ISupportInitialize).BeginInit()
        CType(Me.PictureBox8, System.ComponentModel.ISupportInitialize).BeginInit()
        CType(Me.PictureBox6, System.ComponentModel.ISupportInitialize).BeginInit()
        Me.Panel3.SuspendLayout()
        Me.Panel5.SuspendLayout()
        Me.Panel6.SuspendLayout()
        Me.Panel7.SuspendLayout()
        Me.SuspendLayout()
        '
        'GroupBox2
        '
        Me.GroupBox2.Controls.Add(Me.CheckBox3)
        Me.GroupBox2.Controls.Add(Me.Label1)
        Me.GroupBox2.Controls.Add(Me.CheckBox4)
        Me.GroupBox2.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.GroupBox2.Location = New System.Drawing.Point(840, 822)
        Me.GroupBox2.Name = "GroupBox2"
        Me.GroupBox2.Size = New System.Drawing.Size(200, 100)
        Me.GroupBox2.TabIndex = 63
        Me.GroupBox2.TabStop = False
        Me.GroupBox2.Text = "TEST"
        '
        'CheckBox3
        '
        Me.CheckBox3.AutoSize = True
        Me.CheckBox3.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.CheckBox3.Location = New System.Drawing.Point(105, 48)
        Me.CheckBox3.Name = "CheckBox3"
        Me.CheckBox3.Size = New System.Drawing.Size(78, 28)
        Me.CheckBox3.TabIndex = 31
        Me.CheckBox3.Text = "Droite"
        Me.CheckBox3.UseVisualStyleBackColor = True
        '
        'Label1
        '
        Me.Label1.AutoSize = True
        Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label1.Location = New System.Drawing.Point(75, 17)
        Me.Label1.Name = "Label1"
        Me.Label1.Size = New System.Drawing.Size(108, 13)
        Me.Label1.TabIndex = 51
        Me.Label1.Text = "Cocher si deverouille "
        '
        'CheckBox4
        '
        Me.CheckBox4.AutoSize = True
        Me.CheckBox4.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.CheckBox4.Location = New System.Drawing.Point(6, 48)
        Me.CheckBox4.Name = "CheckBox4"
        Me.CheckBox4.Size = New System.Drawing.Size(96, 28)
        Me.CheckBox4.TabIndex = 30
        Me.CheckBox4.Text = "Gauche"
        Me.CheckBox4.UseVisualStyleBackColor = True
        '
        'Button2
        '
        Me.Button2.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Button2.Location = New System.Drawing.Point(950, 941)
        Me.Button2.Name = "Button2"
        Me.Button2.Size = New System.Drawing.Size(110, 34)
        Me.Button2.TabIndex = 67
        Me.Button2.Text = "Suivant"
        Me.Button2.UseVisualStyleBackColor = True
        '
        'Button1
        '
        Me.Button1.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Button1.Location = New System.Drawing.Point(815, 941)
        Me.Button1.Name = "Button1"
        Me.Button1.Size = New System.Drawing.Size(110, 34)
        Me.Button1.TabIndex = 66
        Me.Button1.Text = "Précédent"
        Me.Button1.UseVisualStyleBackColor = True
        '
        'Label3
        '
        Me.Label3.AutoSize = True
        Me.Label3.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label3.ForeColor = System.Drawing.Color.MidnightBlue
        Me.Label3.Location = New System.Drawing.Point(374, 30)
        Me.Label3.Name = "Label3"
        Me.Label3.Size = New System.Drawing.Size(403, 24)
        Me.Label3.TabIndex = 71
        Me.Label3.Text = "Je me pardonne - Je pardonne aux autres"
        '
        'Label2
        '
        Me.Label2.AutoSize = True
        Me.Label2.BackColor = System.Drawing.Color.MidnightBlue
        Me.Label2.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label2.ForeColor = System.Drawing.SystemColors.ButtonFace
        Me.Label2.Location = New System.Drawing.Point(27, 30)
        Me.Label2.Margin = New System.Windows.Forms.Padding(6, 0, 6, 0)
        Me.Label2.Name = "Label2"
        Me.Label2.Size = New System.Drawing.Size(338, 24)
        Me.Label2.TabIndex = 70
        Me.Label2.Text = "9. MOYEN GLUTEAL - Maître du coeur"
        '
        'Label4
        '
        Me.Label4.AutoSize = True
        Me.Label4.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label4.Location = New System.Drawing.Point(141, 73)
        Me.Label4.Name = "Label4"
        Me.Label4.Size = New System.Drawing.Size(490, 72)
        Me.Label4.TabIndex = 235
        Me.Label4.Text = "- Sur quelles petites choses trébuchez-vous ou vous cognez-vous?" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "- Avez-vous des" &
    " difficultés à garder vos jambes écartées, littéralement ou " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "figurativement?" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
        '
        'Label25
        '
        Me.Label25.AutoSize = True
        Me.Label25.BackColor = System.Drawing.Color.Black
        Me.Label25.ForeColor = System.Drawing.SystemColors.ButtonFace
        Me.Label25.Location = New System.Drawing.Point(135, 188)
        Me.Label25.Name = "Label25"
        Me.Label25.Size = New System.Drawing.Size(36, 13)
        Me.Label25.TabIndex = 233
        Me.Label25.Text = "Début"
        '
        'Label19
        '
        Me.Label19.AutoSize = True
        Me.Label19.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label19.Location = New System.Drawing.Point(141, 9)
        Me.Label19.Name = "Label19"
        Me.Label19.Size = New System.Drawing.Size(510, 36)
        Me.Label19.TabIndex = 231
        Me.Label19.Text = "-  Aliments riches en vitamine E (germes de blé, petits pois, légumes verts à " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "f" &
    "euilles). Pour les hommes, il est utile de consommer des testicules de veau." & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
        '
        'Label17
        '
        Me.Label17.AutoSize = True
        Me.Label17.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label17.Location = New System.Drawing.Point(355, 180)
        Me.Label17.Name = "Label17"
        Me.Label17.Size = New System.Drawing.Size(131, 24)
        Me.Label17.TabIndex = 229
        Me.Label17.Text = "Méridien YIN"
        '
        'Label13
        '
        Me.Label13.AutoSize = True
        Me.Label13.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label13.Location = New System.Drawing.Point(280, 98)
        Me.Label13.Name = "Label13"
        Me.Label13.Size = New System.Drawing.Size(304, 72)
        Me.Label13.TabIndex = 228
        Me.Label13.Text = "Bilatéralement, depuis l'extérieur du mamelon" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "en descendant par le milieu de la " &
    "face interne" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "du bras jusqu'à la fin du majeur, côté pouce." & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
        '
        'PictureBox4
        '
        Me.PictureBox4.Image = CType(resources.GetObject("PictureBox4.Image"), System.Drawing.Image)
        Me.PictureBox4.Location = New System.Drawing.Point(3, 3)
        Me.PictureBox4.Name = "PictureBox4"
        Me.PictureBox4.Size = New System.Drawing.Size(284, 353)
        Me.PictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom
        Me.PictureBox4.TabIndex = 226
        Me.PictureBox4.TabStop = False
        '
        'PictureBox5
        '
        Me.PictureBox5.Image = CType(resources.GetObject("PictureBox5.Image"), System.Drawing.Image)
        Me.PictureBox5.Location = New System.Drawing.Point(338, -51)
        Me.PictureBox5.Name = "PictureBox5"
        Me.PictureBox5.Size = New System.Drawing.Size(284, 350)
        Me.PictureBox5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom
        Me.PictureBox5.TabIndex = 225
        Me.PictureBox5.TabStop = False
        '
        'PictureBox2
        '
        Me.PictureBox2.Image = CType(resources.GetObject("PictureBox2.Image"), System.Drawing.Image)
        Me.PictureBox2.Location = New System.Drawing.Point(7, -55)
        Me.PictureBox2.Name = "PictureBox2"
        Me.PictureBox2.Size = New System.Drawing.Size(325, 354)
        Me.PictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom
        Me.PictureBox2.TabIndex = 224
        Me.PictureBox2.TabStop = False
        '
        'Label7
        '
        Me.Label7.AutoSize = True
        Me.Label7.BackColor = System.Drawing.Color.Red
        Me.Label7.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label7.Location = New System.Drawing.Point(330, 38)
        Me.Label7.Name = "Label7"
        Me.Label7.Size = New System.Drawing.Size(189, 24)
        Me.Label7.TabIndex = 236
        Me.Label7.Text = "MAITRE DU CŒUR"
        '
        'Label6
        '
        Me.Label6.AutoSize = True
        Me.Label6.BackColor = System.Drawing.Color.Red
        Me.Label6.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label6.Location = New System.Drawing.Point(355, 222)
        Me.Label6.Name = "Label6"
        Me.Label6.Size = New System.Drawing.Size(134, 24)
        Me.Label6.TabIndex = 232
        Me.Label6.Text = "Elément FEU"
        '
        'Label23
        '
        Me.Label23.AutoSize = True
        Me.Label23.BackColor = System.Drawing.Color.Black
        Me.Label23.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label23.ForeColor = System.Drawing.SystemColors.ButtonFace
        Me.Label23.Location = New System.Drawing.Point(495, 263)
        Me.Label23.Name = "Label23"
        Me.Label23.Size = New System.Drawing.Size(72, 24)
        Me.Label23.TabIndex = 247
        Me.Label23.Text = "Origine"
        '
        'Label22
        '
        Me.Label22.AutoSize = True
        Me.Label22.BackColor = System.Drawing.Color.Black
        Me.Label22.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label22.ForeColor = System.Drawing.SystemColors.ButtonFace
        Me.Label22.Location = New System.Drawing.Point(412, 413)
        Me.Label22.Name = "Label22"
        Me.Label22.Size = New System.Drawing.Size(81, 24)
        Me.Label22.TabIndex = 246
        Me.Label22.Text = "Insertion"
        '
        'Label16
        '
        Me.Label16.AutoSize = True
        Me.Label16.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label16.Location = New System.Drawing.Point(688, 250)
        Me.Label16.Name = "Label16"
        Me.Label16.Size = New System.Drawing.Size(24, 18)
        Me.Label16.TabIndex = 245
        Me.Label16.Text = "L5"
        '
        'Label15
        '
        Me.Label15.AutoSize = True
        Me.Label15.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label15.Location = New System.Drawing.Point(662, 202)
        Me.Label15.Name = "Label15"
        Me.Label15.Size = New System.Drawing.Size(94, 48)
        Me.Label15.TabIndex = 244
        Me.Label15.Text = "- Réflexe" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & " spinal" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
        '
        'Label11
        '
        Me.Label11.AutoSize = True
        Me.Label11.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label11.Location = New System.Drawing.Point(4, 137)
        Me.Label11.Name = "Label11"
        Me.Label11.Size = New System.Drawing.Size(164, 18)
        Me.Label11.TabIndex = 243
        Me.Label11.Text = "Bord supérieur du pubis"
        '
        'Label9
        '
        Me.Label9.AutoSize = True
        Me.Label9.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label9.Location = New System.Drawing.Point(343, 82)
        Me.Label9.Name = "Label9"
        Me.Label9.Size = New System.Drawing.Size(188, 36)
        Me.Label9.TabIndex = 242
        Me.Label9.Text = "La bosse proéminente des" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "os iliaques, au niveau de L5"
        '
        'Label8
        '
        Me.Label8.AutoSize = True
        Me.Label8.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label8.Location = New System.Drawing.Point(360, 48)
        Me.Label8.Name = "Label8"
        Me.Label8.Size = New System.Drawing.Size(119, 24)
        Me.Label8.TabIndex = 241
        Me.Label8.Text = "Postérieurs : "
        '
        'Label10
        '
        Me.Label10.AutoSize = True
        Me.Label10.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label10.Location = New System.Drawing.Point(34, 113)
        Me.Label10.Name = "Label10"
        Me.Label10.Size = New System.Drawing.Size(111, 24)
        Me.Label10.TabIndex = 240
        Me.Label10.Text = "Antérieurs : "
        '
        'Label21
        '
        Me.Label21.AutoSize = True
        Me.Label21.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label21.Location = New System.Drawing.Point(229, 11)
        Me.Label21.Name = "Label21"
        Me.Label21.Size = New System.Drawing.Size(329, 24)
        Me.Label21.TabIndex = 238
        Me.Label21.Text = "POINTS NEURO-LYMPHATIQUES" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
        '
        'PictureBox3
        '
        Me.PictureBox3.Image = CType(resources.GetObject("PictureBox3.Image"), System.Drawing.Image)
        Me.PictureBox3.Location = New System.Drawing.Point(388, 38)
        Me.PictureBox3.Name = "PictureBox3"
        Me.PictureBox3.Size = New System.Drawing.Size(404, 434)
        Me.PictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom
        Me.PictureBox3.TabIndex = 237
        Me.PictureBox3.TabStop = False
        '
        'PictureBox1
        '
        Me.PictureBox1.Image = CType(resources.GetObject("PictureBox1.Image"), System.Drawing.Image)
        Me.PictureBox1.Location = New System.Drawing.Point(7, 38)
        Me.PictureBox1.Name = "PictureBox1"
        Me.PictureBox1.Size = New System.Drawing.Size(375, 434)
        Me.PictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage
        Me.PictureBox1.TabIndex = 239
        Me.PictureBox1.TabStop = False
        '
        'Label12
        '
        Me.Label12.AutoSize = True
        Me.Label12.BackColor = System.Drawing.Color.Black
        Me.Label12.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label12.ForeColor = System.Drawing.SystemColors.ButtonFace
        Me.Label12.Location = New System.Drawing.Point(279, 448)
        Me.Label12.Name = "Label12"
        Me.Label12.Size = New System.Drawing.Size(81, 24)
        Me.Label12.TabIndex = 248
        Me.Label12.Text = "Insertion"
        '
        'Label27
        '
        Me.Label27.AutoSize = True
        Me.Label27.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label27.ForeColor = System.Drawing.Color.Red
        Me.Label27.Location = New System.Drawing.Point(154, 70)
        Me.Label27.Name = "Label27"
        Me.Label27.Size = New System.Drawing.Size(32, 24)
        Me.Label27.TabIndex = 252
        Me.Label27.Text = "10"
        '
        'Label28
        '
        Me.Label28.AutoSize = True
        Me.Label28.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label28.Location = New System.Drawing.Point(14, 16)
        Me.Label28.Name = "Label28"
        Me.Label28.Size = New System.Drawing.Size(311, 24)
        Me.Label28.TabIndex = 250
        Me.Label28.Text = "POINTS NEURO-VASCULAIRES"
        '
        'PictureBox7
        '
        Me.PictureBox7.Image = CType(resources.GetObject("PictureBox7.Image"), System.Drawing.Image)
        Me.PictureBox7.Location = New System.Drawing.Point(44, 53)
        Me.PictureBox7.Name = "PictureBox7"
        Me.PictureBox7.Size = New System.Drawing.Size(261, 347)
        Me.PictureBox7.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom
        Me.PictureBox7.TabIndex = 251
        Me.PictureBox7.TabStop = False
        '
        'Label24
        '
        Me.Label24.AutoSize = True
        Me.Label24.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label24.Location = New System.Drawing.Point(60, 364)
        Me.Label24.Name = "Label24"
        Me.Label24.Size = New System.Drawing.Size(232, 36)
        Me.Label24.TabIndex = 253
        Me.Label24.Text = "Bosse pariétale, sur la crête entre " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l'oreille et le sommet de la tête"
        '
        'Label42
        '
        Me.Label42.AutoSize = True
        Me.Label42.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label42.Location = New System.Drawing.Point(328, 65)
        Me.Label42.Name = "Label42"
        Me.Label42.Size = New System.Drawing.Size(182, 16)
        Me.Label42.TabIndex = 277
        Me.Label42.Text = "Centre de la pliure du poignet" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
        '
        'Label46
        '
        Me.Label46.AutoSize = True
        Me.Label46.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label46.Location = New System.Drawing.Point(292, 65)
        Me.Label46.Name = "Label46"
        Me.Label46.Size = New System.Drawing.Size(38, 16)
        Me.Label46.TabIndex = 276
        Me.Label46.Text = "7MC:"
        '
        'Label40
        '
        Me.Label40.AutoSize = True
        Me.Label40.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label40.Location = New System.Drawing.Point(293, 141)
        Me.Label40.Name = "Label40"
        Me.Label40.Size = New System.Drawing.Size(65, 16)
        Me.Label40.TabIndex = 273
        Me.Label40.Text = "SECOND"
        '
        'Label41
        '
        Me.Label41.AutoSize = True
        Me.Label41.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label41.Location = New System.Drawing.Point(293, 100)
        Me.Label41.Name = "Label41"
        Me.Label41.Size = New System.Drawing.Size(31, 16)
        Me.Label41.TabIndex = 271
        Me.Label41.Text = "3Rt:"
        '
        'Label43
        '
        Me.Label43.AutoSize = True
        Me.Label43.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label43.Location = New System.Drawing.Point(292, 35)
        Me.Label43.Name = "Label43"
        Me.Label43.Size = New System.Drawing.Size(69, 16)
        Me.Label43.TabIndex = 270
        Me.Label43.Text = "PREMIER"
        '
        'Label45
        '
        Me.Label45.AutoSize = True
        Me.Label45.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label45.Location = New System.Drawing.Point(322, 100)
        Me.Label45.Name = "Label45"
        Me.Label45.Size = New System.Drawing.Size(247, 32)
        Me.Label45.TabIndex = 272
        Me.Label45.Text = "Côté médian du pied, en montant depuis" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l'hallux"
        '
        'Label34
        '
        Me.Label34.AutoSize = True
        Me.Label34.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label34.Location = New System.Drawing.Point(300, 192)
        Me.Label34.Name = "Label34"
        Me.Label34.Size = New System.Drawing.Size(35, 16)
        Me.Label34.TabIndex = 268
        Me.Label34.Text = "10R:"
        '
        'Label35
        '
        Me.Label35.AutoSize = True
        Me.Label35.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label35.Location = New System.Drawing.Point(331, 192)
        Me.Label35.Name = "Label35"
        Me.Label35.Size = New System.Drawing.Size(245, 16)
        Me.Label35.TabIndex = 269
        Me.Label35.Text = "Extrémité médiane de la région poplitée"
        '
        'Label32
        '
        Me.Label32.AutoSize = True
        Me.Label32.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label32.Location = New System.Drawing.Point(300, 150)
        Me.Label32.Name = "Label32"
        Me.Label32.Size = New System.Drawing.Size(38, 16)
        Me.Label32.TabIndex = 266
        Me.Label32.Text = "3MC:"
        '
        'Label33
        '
        Me.Label33.AutoSize = True
        Me.Label33.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label33.Location = New System.Drawing.Point(338, 150)
        Me.Label33.Name = "Label33"
        Me.Label33.Size = New System.Drawing.Size(229, 32)
        Me.Label33.TabIndex = 267
        Me.Label33.Text = "Au centre de la pliure du coude, juste " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "à l'intérieur du tendon du biceps"
        '
        'Label31
        '
        Me.Label31.AutoSize = True
        Me.Label31.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label31.Location = New System.Drawing.Point(295, 125)
        Me.Label31.Name = "Label31"
        Me.Label31.Size = New System.Drawing.Size(65, 16)
        Me.Label31.TabIndex = 265
        Me.Label31.Text = "SECOND"
        '
        'Label29
        '
        Me.Label29.AutoSize = True
        Me.Label29.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label29.Location = New System.Drawing.Point(296, 96)
        Me.Label29.Name = "Label29"
        Me.Label29.Size = New System.Drawing.Size(26, 16)
        Me.Label29.TabIndex = 263
        Me.Label29.Text = "1F:"
        '
        'Label20
        '
        Me.Label20.AutoSize = True
        Me.Label20.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label20.Location = New System.Drawing.Point(296, 68)
        Me.Label20.Name = "Label20"
        Me.Label20.Size = New System.Drawing.Size(232, 16)
        Me.Label20.TabIndex = 262
        Me.Label20.Text = "A la base interne de l'ongle du majeur"
        '
        'Label26
        '
        Me.Label26.AutoSize = True
        Me.Label26.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label26.Location = New System.Drawing.Point(295, 28)
        Me.Label26.Name = "Label26"
        Me.Label26.Size = New System.Drawing.Size(69, 16)
        Me.Label26.TabIndex = 261
        Me.Label26.Text = "PREMIER"
        '
        'Label30
        '
        Me.Label30.AutoSize = True
        Me.Label30.BackColor = System.Drawing.Color.Red
        Me.Label30.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label30.ForeColor = System.Drawing.SystemColors.ButtonFace
        Me.Label30.Location = New System.Drawing.Point(296, 50)
        Me.Label30.Name = "Label30"
        Me.Label30.Size = New System.Drawing.Size(42, 16)
        Me.Label30.TabIndex = 260
        Me.Label30.Text = "9MC:"
        '
        'Label37
        '
        Me.Label37.AutoSize = True
        Me.Label37.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label37.ForeColor = System.Drawing.Color.Red
        Me.Label37.Location = New System.Drawing.Point(338, 52)
        Me.Label37.Name = "Label37"
        Me.Label37.Size = New System.Drawing.Size(245, 16)
        Me.Label37.TabIndex = 259
        Me.Label37.Text = "Point de tapotement de la douleur:"
        '
        'Label44
        '
        Me.Label44.AutoSize = True
        Me.Label44.BackColor = System.Drawing.Color.WhiteSmoke
        Me.Label44.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label44.Location = New System.Drawing.Point(0, 16)
        Me.Label44.Name = "Label44"
        Me.Label44.Size = New System.Drawing.Size(91, 18)
        Me.Label44.TabIndex = 258
        Me.Label44.Text = "SEDATION"
        '
        'Label47
        '
        Me.Label47.AutoSize = True
        Me.Label47.BackColor = System.Drawing.Color.PeachPuff
        Me.Label47.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label47.Location = New System.Drawing.Point(13, 26)
        Me.Label47.Name = "Label47"
        Me.Label47.Size = New System.Drawing.Size(122, 18)
        Me.Label47.TabIndex = 257
        Me.Label47.Text = "TONIFICATION"
        '
        'Label48
        '
        Me.Label48.AutoSize = True
        Me.Label48.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label48.Location = New System.Drawing.Point(175, 0)
        Me.Label48.Name = "Label48"
        Me.Label48.Size = New System.Drawing.Size(255, 24)
        Me.Label48.TabIndex = 256
        Me.Label48.Text = "POINTS D'ACUPRESSION"
        '
        'PictureBox8
        '
        Me.PictureBox8.Image = CType(resources.GetObject("PictureBox8.Image"), System.Drawing.Image)
        Me.PictureBox8.Location = New System.Drawing.Point(3, 16)
        Me.PictureBox8.Name = "PictureBox8"
        Me.PictureBox8.Size = New System.Drawing.Size(278, 229)
        Me.PictureBox8.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom
        Me.PictureBox8.TabIndex = 255
        Me.PictureBox8.TabStop = False
        '
        'PictureBox6
        '
        Me.PictureBox6.Image = CType(resources.GetObject("PictureBox6.Image"), System.Drawing.Image)
        Me.PictureBox6.Location = New System.Drawing.Point(16, 28)
        Me.PictureBox6.Name = "PictureBox6"
        Me.PictureBox6.Size = New System.Drawing.Size(273, 219)
        Me.PictureBox6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom
        Me.PictureBox6.TabIndex = 254
        Me.PictureBox6.TabStop = False
        '
        'Label49
        '
        Me.Label49.AutoSize = True
        Me.Label49.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label49.Location = New System.Drawing.Point(328, 96)
        Me.Label49.Name = "Label49"
        Me.Label49.Size = New System.Drawing.Size(207, 16)
        Me.Label49.TabIndex = 264
        Me.Label49.Text = "Côté externe de l'ongle de l'hallux"
        '
        'Label14
        '
        Me.Label14.AutoSize = True
        Me.Label14.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label14.Location = New System.Drawing.Point(296, 203)
        Me.Label14.Name = "Label14"
        Me.Label14.Size = New System.Drawing.Size(35, 16)
        Me.Label14.TabIndex = 280
        Me.Label14.Text = "10R:"
        '
        'Label36
        '
        Me.Label36.AutoSize = True
        Me.Label36.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label36.Location = New System.Drawing.Point(327, 203)
        Me.Label36.Name = "Label36"
        Me.Label36.Size = New System.Drawing.Size(245, 16)
        Me.Label36.TabIndex = 281
        Me.Label36.Text = "Extrémité médiane de la région poplitée"
        '
        'Label38
        '
        Me.Label38.AutoSize = True
        Me.Label38.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label38.Location = New System.Drawing.Point(299, 167)
        Me.Label38.Name = "Label38"
        Me.Label38.Size = New System.Drawing.Size(38, 16)
        Me.Label38.TabIndex = 278
        Me.Label38.Text = "3MC:"
        '
        'Label39
        '
        Me.Label39.AutoSize = True
        Me.Label39.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label39.Location = New System.Drawing.Point(337, 167)
        Me.Label39.Name = "Label39"
        Me.Label39.Size = New System.Drawing.Size(229, 32)
        Me.Label39.TabIndex = 279
        Me.Label39.Text = "Au centre de la pliure du coude, juste " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "à l'intérieur du tendon du biceps"
        '
        'Panel4
        '
        Me.Panel4.BackColor = System.Drawing.Color.PeachPuff
        Me.Panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.Panel4.Location = New System.Drawing.Point(31, 811)
        Me.Panel4.Name = "Panel4"
        Me.Panel4.Size = New System.Drawing.Size(661, 171)
        Me.Panel4.TabIndex = 282
        '
        'Label53
        '
        Me.Label53.AutoSize = True
        Me.Label53.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label53.Location = New System.Drawing.Point(3, 5)
        Me.Label53.Name = "Label53"
        Me.Label53.Size = New System.Drawing.Size(132, 24)
        Me.Label53.TabIndex = 27
        Me.Label53.Text = "NUTRITION: " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
        '
        'Label54
        '
        Me.Label54.AutoSize = True
        Me.Label54.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label54.Location = New System.Drawing.Point(-1, 69)
        Me.Label54.Name = "Label54"
        Me.Label54.Size = New System.Drawing.Size(146, 24)
        Me.Label54.TabIndex = 62
        Me.Label54.Text = "METAPHORE:"
        '
        'Panel1
        '
        Me.Panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.Panel1.Location = New System.Drawing.Point(31, 66)
        Me.Panel1.Name = "Panel1"
        Me.Panel1.Size = New System.Drawing.Size(661, 301)
        Me.Panel1.TabIndex = 283
        '
        'Panel2
        '
        Me.Panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.Panel2.Location = New System.Drawing.Point(31, 404)
        Me.Panel2.Name = "Panel2"
        Me.Panel2.Size = New System.Drawing.Size(661, 358)
        Me.Panel2.TabIndex = 284
        '
        'Panel3
        '
        Me.Panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.Panel3.Controls.Add(Me.Label21)
        Me.Panel3.Controls.Add(Me.Label10)
        Me.Panel3.Controls.Add(Me.Label8)
        Me.Panel3.Controls.Add(Me.Label9)
        Me.Panel3.Controls.Add(Me.Label11)
        Me.Panel3.Controls.Add(Me.Label15)
        Me.Panel3.Controls.Add(Me.Label16)
        Me.Panel3.Controls.Add(Me.Label22)
        Me.Panel3.Controls.Add(Me.Label23)
        Me.Panel3.Controls.Add(Me.Label12)
        Me.Panel3.Controls.Add(Me.PictureBox1)
        Me.Panel3.Controls.Add(Me.PictureBox3)
        Me.Panel3.Location = New System.Drawing.Point(783, 17)
        Me.Panel3.Name = "Panel3"
        Me.Panel3.Size = New System.Drawing.Size(753, 474)
        Me.Panel3.TabIndex = 285
        '
        'Panel5
        '
        Me.Panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.Panel5.Controls.Add(Me.Label28)
        Me.Panel5.Controls.Add(Me.Label27)
        Me.Panel5.Controls.Add(Me.Label24)
        Me.Panel5.Controls.Add(Me.PictureBox7)
        Me.Panel5.Location = New System.Drawing.Point(1563, 16)
        Me.Panel5.Name = "Panel5"
        Me.Panel5.Size = New System.Drawing.Size(326, 474)
        Me.Panel5.TabIndex = 286
        '
        'Label18
        '
        Me.Label18.AutoSize = True
        Me.Label18.BackColor = System.Drawing.Color.Black
        Me.Label18.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label18.ForeColor = System.Drawing.SystemColors.ButtonFace
        Me.Label18.Location = New System.Drawing.Point(132, 85)
        Me.Label18.Name = "Label18"
        Me.Label18.Size = New System.Drawing.Size(59, 18)
        Me.Label18.TabIndex = 288
        Me.Label18.Text = "Second"
        '
        'Label5
        '
        Me.Label5.AutoSize = True
        Me.Label5.BackColor = System.Drawing.Color.Black
        Me.Label5.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label5.ForeColor = System.Drawing.SystemColors.ButtonFace
        Me.Label5.Location = New System.Drawing.Point(95, 164)
        Me.Label5.Name = "Label5"
        Me.Label5.Size = New System.Drawing.Size(60, 18)
        Me.Label5.TabIndex = 287
        Me.Label5.Text = "Premier"
        '
        'Label50
        '
        Me.Label50.AutoSize = True
        Me.Label50.BackColor = System.Drawing.Color.Black
        Me.Label50.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label50.ForeColor = System.Drawing.SystemColors.ButtonFace
        Me.Label50.Location = New System.Drawing.Point(110, 78)
        Me.Label50.Name = "Label50"
        Me.Label50.Size = New System.Drawing.Size(59, 18)
        Me.Label50.TabIndex = 290
        Me.Label50.Text = "Second"
        '
        'Label51
        '
        Me.Label51.AutoSize = True
        Me.Label51.BackColor = System.Drawing.Color.Black
        Me.Label51.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label51.ForeColor = System.Drawing.SystemColors.ButtonFace
        Me.Label51.Location = New System.Drawing.Point(72, 215)
        Me.Label51.Name = "Label51"
        Me.Label51.Size = New System.Drawing.Size(60, 18)
        Me.Label51.TabIndex = 289
        Me.Label51.Text = "Premier"
        '
        'Panel6
        '
        Me.Panel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.Panel6.Controls.Add(Me.Label48)
        Me.Panel6.Controls.Add(Me.Label49)
        Me.Panel6.Controls.Add(Me.Label18)
        Me.Panel6.Controls.Add(Me.Label47)
        Me.Panel6.Controls.Add(Me.Label5)
        Me.Panel6.Controls.Add(Me.Label37)
        Me.Panel6.Controls.Add(Me.Label30)
        Me.Panel6.Controls.Add(Me.Label26)
        Me.Panel6.Controls.Add(Me.Label20)
        Me.Panel6.Controls.Add(Me.Label29)
        Me.Panel6.Controls.Add(Me.Label31)
        Me.Panel6.Controls.Add(Me.Label33)
        Me.Panel6.Controls.Add(Me.Label32)
        Me.Panel6.Controls.Add(Me.Label35)
        Me.Panel6.Controls.Add(Me.Label34)
        Me.Panel6.Controls.Add(Me.PictureBox6)
        Me.Panel6.Location = New System.Drawing.Point(1295, 514)
        Me.Panel6.Name = "Panel6"
        Me.Panel6.Size = New System.Drawing.Size(594, 260)
        Me.Panel6.TabIndex = 291
        '
        'Panel7
        '
        Me.Panel7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.Panel7.Controls.Add(Me.Label44)
        Me.Panel7.Controls.Add(Me.Label50)
        Me.Panel7.Controls.Add(Me.Label45)
        Me.Panel7.Controls.Add(Me.Label51)
        Me.Panel7.Controls.Add(Me.Label43)
        Me.Panel7.Controls.Add(Me.Label41)
        Me.Panel7.Controls.Add(Me.Label40)
        Me.Panel7.Controls.Add(Me.Label46)
        Me.Panel7.Controls.Add(Me.Label42)
        Me.Panel7.Controls.Add(Me.Label39)
        Me.Panel7.Controls.Add(Me.Label14)
        Me.Panel7.Controls.Add(Me.Label38)
        Me.Panel7.Controls.Add(Me.Label36)
        Me.Panel7.Controls.Add(Me.PictureBox8)
        Me.Panel7.Location = New System.Drawing.Point(1295, 763)
        Me.Panel7.Name = "Panel7"
        Me.Panel7.Size = New System.Drawing.Size(594, 241)
        Me.Panel7.TabIndex = 292
        '
        'Form11
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.AutoScroll = True
        Me.BackColor = System.Drawing.Color.Silver
        Me.ClientSize = New System.Drawing.Size(1916, 1054)
        Me.Name = "Form11"
        Me.Text = "9.MOYEN GLUTEAL"
        Me.WindowState = System.Windows.Forms.FormWindowState.Maximized
        Me.GroupBox2.ResumeLayout(False)
        Me.GroupBox2.PerformLayout()
        CType(Me.PictureBox4, System.ComponentModel.ISupportInitialize).EndInit()
        CType(Me.PictureBox5, System.ComponentModel.ISupportInitialize).EndInit()
        CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).EndInit()
        CType(Me.PictureBox3, System.ComponentModel.ISupportInitialize).EndInit()
        CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
        CType(Me.PictureBox7, System.ComponentModel.ISupportInitialize).EndInit()
        CType(Me.PictureBox8, System.ComponentModel.ISupportInitialize).EndInit()
        CType(Me.PictureBox6, System.ComponentModel.ISupportInitialize).EndInit()
        Me.Panel3.ResumeLayout(False)
        Me.Panel3.PerformLayout()
        Me.Panel5.ResumeLayout(False)
        Me.Panel5.PerformLayout()
        Me.Panel6.ResumeLayout(False)
        Me.Panel6.PerformLayout()
        Me.Panel7.ResumeLayout(False)
        Me.Panel7.PerformLayout()
        Me.ResumeLayout(False)

    End Sub
    Friend WithEvents GroupBox2 As System.Windows.Forms.GroupBox
    Friend WithEvents CheckBox3 As System.Windows.Forms.CheckBox
    Friend WithEvents Label1 As System.Windows.Forms.Label
    Friend WithEvents CheckBox4 As System.Windows.Forms.CheckBox
    Friend WithEvents Button2 As System.Windows.Forms.Button
    Friend WithEvents Button1 As System.Windows.Forms.Button
    Friend WithEvents Label3 As System.Windows.Forms.Label
    Friend WithEvents Label2 As System.Windows.Forms.Label
    Friend WithEvents Label4 As System.Windows.Forms.Label
    Friend WithEvents Label25 As System.Windows.Forms.Label
    Friend WithEvents Label19 As System.Windows.Forms.Label
    Friend WithEvents Label17 As System.Windows.Forms.Label
    Friend WithEvents Label13 As System.Windows.Forms.Label
    Friend WithEvents PictureBox4 As System.Windows.Forms.PictureBox
    Friend WithEvents PictureBox5 As System.Windows.Forms.PictureBox
    Friend WithEvents PictureBox2 As System.Windows.Forms.PictureBox
    Friend WithEvents Label7 As System.Windows.Forms.Label
    Friend WithEvents Label6 As System.Windows.Forms.Label
    Friend WithEvents Label23 As System.Windows.Forms.Label
    Friend WithEvents Label22 As System.Windows.Forms.Label
    Friend WithEvents Label16 As System.Windows.Forms.Label
    Friend WithEvents Label15 As System.Windows.Forms.Label
    Friend WithEvents Label11 As System.Windows.Forms.Label
    Friend WithEvents Label9 As System.Windows.Forms.Label
    Friend WithEvents Label8 As System.Windows.Forms.Label
    Friend WithEvents Label10 As System.Windows.Forms.Label
    Friend WithEvents Label21 As System.Windows.Forms.Label
    Friend WithEvents PictureBox3 As System.Windows.Forms.PictureBox
    Friend WithEvents PictureBox1 As System.Windows.Forms.PictureBox
    Friend WithEvents Label12 As System.Windows.Forms.Label
    Friend WithEvents Label27 As System.Windows.Forms.Label
    Friend WithEvents Label28 As System.Windows.Forms.Label
    Friend WithEvents PictureBox7 As System.Windows.Forms.PictureBox
    Friend WithEvents Label24 As System.Windows.Forms.Label
    Friend WithEvents Label42 As System.Windows.Forms.Label
    Friend WithEvents Label46 As System.Windows.Forms.Label
    Friend WithEvents Label40 As System.Windows.Forms.Label
    Friend WithEvents Label41 As System.Windows.Forms.Label
    Friend WithEvents Label43 As System.Windows.Forms.Label
    Friend WithEvents Label45 As System.Windows.Forms.Label
    Friend WithEvents Label34 As System.Windows.Forms.Label
    Friend WithEvents Label35 As System.Windows.Forms.Label
    Friend WithEvents Label32 As System.Windows.Forms.Label
    Friend WithEvents Label33 As System.Windows.Forms.Label
    Friend WithEvents Label31 As System.Windows.Forms.Label
    Friend WithEvents Label29 As System.Windows.Forms.Label
    Friend WithEvents Label20 As System.Windows.Forms.Label
    Friend WithEvents Label26 As System.Windows.Forms.Label
    Friend WithEvents Label30 As System.Windows.Forms.Label
    Friend WithEvents Label37 As System.Windows.Forms.Label
    Friend WithEvents Label44 As System.Windows.Forms.Label
    Friend WithEvents Label47 As System.Windows.Forms.Label
    Friend WithEvents Label48 As System.Windows.Forms.Label
    Friend WithEvents PictureBox8 As System.Windows.Forms.PictureBox
    Friend WithEvents PictureBox6 As System.Windows.Forms.PictureBox
    Friend WithEvents Label49 As System.Windows.Forms.Label
    Friend WithEvents Label14 As System.Windows.Forms.Label
    Friend WithEvents Label36 As System.Windows.Forms.Label
    Friend WithEvents Label38 As System.Windows.Forms.Label
    Friend WithEvents Label39 As System.Windows.Forms.Label
    Friend WithEvents Panel4 As Panel
    Friend WithEvents Label53 As Label
    Friend WithEvents Label54 As Label
    Friend WithEvents Panel1 As Panel
    Friend WithEvents Panel2 As Panel
    Friend WithEvents Panel3 As Panel
    Friend WithEvents Panel5 As Panel
    Friend WithEvents Label18 As Label
    Friend WithEvents Label5 As Label
    Friend WithEvents Label50 As Label
    Friend WithEvents Label51 As Label
    Friend WithEvents Panel6 As Panel
    Friend WithEvents Panel7 As Panel
End Class
0
Whismeril Messages postés 19028 Date d'inscription mardi 11 mars 2003 Statut Non membre Dernière intervention 24 avril 2024 656
30 déc. 2019 à 14:44
Bonsoir,

Dans un projet neuf, copie colle ces lignes dans un formulaire avec le même nom, si le design apparaît, sauvegarde, ensuite copie colle le code behind dans le nouveau formulaire.
Un fois fait, remplace l’ancien pas le nouveau dans le projet d’origine.

Je suppose que depuis la dernière fois, tu n’as pas utilisé de logiciels de versioning et de sauvegarde.
0
hellhammer72 Messages postés 20 Date d'inscription vendredi 16 août 2013 Statut Membre Dernière intervention 30 décembre 2019
30 déc. 2019 à 15:06
Bonjour et merci pour ta réponse... J'ai effectué ta procédure mais aucun design n’apparaît malheureusement. Pour la sauvegarde non je n'ai rien trouvé ou je n'ai pas su comment faire. Si tu as un tuyau je suis preneur...
Petite question Existe il un autre logiciel que visual basic plus stable parce que la franchement tout disparait alors que je sauvegarde toutes les 10mn c'est merdique quand même... Bon en attendant si tu as une autre idée pour sauver ma page?
0

Vous n’avez pas trouvé la réponse que vous recherchez ?

Posez votre question
cs_Le Pivert Messages postés 7903 Date d'inscription jeudi 13 septembre 2007 Statut Contributeur Dernière intervention 11 mars 2024 137
24 oct. 2019 à 12:10
Bonjour,

voir ceci pour faire une capture d'écran du Form

https://codes-sources.commentcamarche.net/source/54783-capture-de-controles

L'image enregistrée peut être facilement mis sur un PDF

Voilà
0
Hellhammer72
31 oct. 2019 à 13:59
Merci pour ta réponse mais je ne vois pas du tout comment fonctionne ton lien?
0
cs_Le Pivert Messages postés 7903 Date d'inscription jeudi 13 septembre 2007 Statut Contributeur Dernière intervention 11 mars 2024 137
31 oct. 2019 à 16:58
Le lien t amène vers un programme en VB.Net que tu ouvres.
Il te suffit de le compiler avec F5. C est opérationnel
Voilà
@÷ LePivert
0
Whismeril Messages postés 19028 Date d'inscription mardi 11 mars 2003 Statut Non membre Dernière intervention 24 avril 2024 656
24 oct. 2019 à 13:43
Malheureusement dommage que nous ne nous soyons pas rencontrés plus tôt car après des heures de recherche sur le net n’ayant pas de réponses à mon problème j’ai supprimé ma form et je suis en train de la refaire mais j’avais bien tout ces codes ...!!!!


N’oublie pas que nous sommes bénévoles, on répond quand on peut, et si on veut.

Qui dit question sur un forum dit patience.

Concernant le pdf, on a pour règle ici, de n’avoir qu’un sujet par fil, sinon ça devient vite le bazar.

Mais vu que le-pivert t’as déjà proposé une option en voici 2 autres.

Contrairement à la méthode « capture d’écran », le texte est sélectionnable

Enfin on va parler de
mais en fait je ne comprend pas trop la sauvegarde.


Cliquer sur les disquettes, sur Fichier/Enregistrer ou faire Ctrl+S n’est pas sauvegarder.
C’est un abus de langage.

Sauvegarder c’est à minima, après un enregistrement copier le projet sur un autre support:
  • 2eme disque dur interne (attention pas une 2eme partition du même disque)
  • clé usb / disque dur externe
  • NAS / Serveur
  • Cloud.


Mais le problème de faire ça, c’est que souvent un enregistrement enregistre l'état à l’instant t. Si tu as fait une boulette, que tu l’enregistres et que tu la sauvegardes c’est mort, tu gardes ta boulette.

Le mieux est de ne pas sauvegarder l’état à l’instant t, mais la différence entre t et t - 1.
On parle de sauvegarde incrémentielle.
Si tu fais une boulette, que tu l’enregistres et que tu la sauvegardes tu pourras quand même revenir en arrière.

Dans ton cas, ça aurait été parfait.

Comme Microsoft ne propose pas ça dans ses logiciels (contrairement à Mac), des gens ont développé un petit outil en ligne de commande pour faire de la sauvegarde incrémentielle de fichiers textes: Git.
Comme les codes sources sont des fichiers textes les codeurs se sont vite appropriés le truc.
On y a même ajouter tout un tas de possibilités, pour travailler en équipe, essayer plusieurs options et passer de l’une à l’autre, publier sur le net (Github) etc...

Mais bon, la ligne de commande c’est pas pratique.
Donc d’autres gens ont développé des interfaces graphiques, c’est toujours Git derrière.

Perso j’utilise SourceTree, le seul truc chiant est qu’il fzut faire l’installation en ligne.

Git crée un dépôt local (dans le répertoire source de ton projet) ce dépôt constitue disons un enregistrement incrémentiel, tu peux l’associer à un dépôt distant, qui constitue une sauvegarde incrémentielle. Tu peux même faire plusieurs dépôts distants. Et à partir de ces dépôts distants, tu peux communiquer avec plusieurs dépôts locaux (travail en équipe ou multipostes).

Pour le boulot, j’ai mon dépôt distant sur une clé usb et je sauvegarde cette clé régulièrement sur un NAS, et je travaille en multipostes ou en équipe selon les projets.

A la maison, dépôt distant sur clé usb, copie sur un cloud et multipostes.

0
Hellhammer72
29 oct. 2019 à 11:24
Merci pour tout. Ne vois pas dans ma phrase dommage qu'on ne se soit pas rencontré plus tôt une quelconque remarque sur le délai de réponse... Je sais bien que tout cela est bénévole et loin de moi l'idée d'avoir critiqué quoi que ce soit!
Je vais regarder tout cela tranquillement . En tous cas mille merci pour toutes ces infos cela m'est très utile
0
Whismeril Messages postés 19028 Date d'inscription mardi 11 mars 2003 Statut Non membre Dernière intervention 24 avril 2024 656
29 oct. 2019 à 11:55
Y’a pas de soucis
0
Rejoignez-nous