[VB] Sauvegarder le texte de plusieurs label
Fermé
rangertigre
Messages postés
20
Date d'inscription
mardi 25 mars 2008
Statut
Membre
Dernière intervention
6 avril 2011
-
4 avril 2011 à 22:45
rangertigre Messages postés 20 Date d'inscription mardi 25 mars 2008 Statut Membre Dernière intervention 6 avril 2011 - 6 avril 2011 à 16:21
rangertigre Messages postés 20 Date d'inscription mardi 25 mars 2008 Statut Membre Dernière intervention 6 avril 2011 - 6 avril 2011 à 16:21
A voir également:
- [VB] Sauvegarder le texte de plusieurs label
- Texte de chanson gratuit pdf - Télécharger - Vie quotidienne
- Vb - Télécharger - Langages
- Vb cable - Télécharger - Audio & Musique
- Excel cellule couleur si condition texte - Guide
- Logiciel de sauvegarde - Guide
2 réponses
Le plus simple est d'utiliser la sérialisation, ou un fichier config.
En ce qui concerne la sérialisation :
http://www.siteduzero.com/tutoriel-3-312629-la-sauvegarde-d-objets.html
Pour un fichier config, base toi là dessus :
Un simple flux stream pour enregistrer tes infos dedans, et le fichier est bien plus lisible.
J'espère t'avoir aidé :)
En ce qui concerne la sérialisation :
http://www.siteduzero.com/tutoriel-3-312629-la-sauvegarde-d-objets.html
Pour un fichier config, base toi là dessus :
Public Class Config Private Shared _Items As New Dictionary(Of String, String) Public Shared Function GetItem(ByVal Item As String) As String If _Items.ContainsKey(Item) Then Return _Items(Item) msgbox("Can't find item '" & Item & "' in configuration file", True) Return "" End Function Public Shared Sub LoadConfig() If Not IO.File.Exists("config.txt") Then msgbox("Can't find configuration file !", True) End If Try Dim Reader As New IO.StreamReader("config.txt") While Not Reader.EndOfStream Dim Line As String = Reader.ReadLine If Line.Trim.StartsWith("#") Then Continue While If Not Line.Contains("=") Then Continue While Dim LigneInfos() As String = Line.Split("=".ToCharArray, 2) Dim Item As String = LigneInfos(0).ToUpper.Trim Dim Value As String = LigneInfos(1).Trim If Item = "" Then Continue While _Items.Add(Item, Value) End While Catch ex As Exception msgbox("Can't read configuration file !", True) End Try End Sub End Class
Un simple flux stream pour enregistrer tes infos dedans, et le fichier est bien plus lisible.
J'espère t'avoir aidé :)
rangertigre
Messages postés
20
Date d'inscription
mardi 25 mars 2008
Statut
Membre
Dernière intervention
6 avril 2011
6 avril 2011 à 16:21
6 avril 2011 à 16:21
Je crois que tu n'a pas compris ce que je voulais.
J'ai environ 90 labels et je veux enregistrer leurs textes.
J'ai environ 90 labels et je veux enregistrer leurs textes.