[VBA]Créer une zone de texte dans Excel
Fermé
Raph04
Messages postés
158
Date d'inscription
lundi 30 juin 2008
Statut
Membre
Dernière intervention
17 mai 2022
-
Modifié par Raph04 le 11/04/2012 à 22:49
gbinforme Messages postés 14946 Date d'inscription lundi 18 octobre 2004 Statut Contributeur Dernière intervention 24 juin 2020 - 12 avril 2012 à 09:28
gbinforme Messages postés 14946 Date d'inscription lundi 18 octobre 2004 Statut Contributeur Dernière intervention 24 juin 2020 - 12 avril 2012 à 09:28
A voir également:
- Zone de texte vba
- Zone telechargement - Accueil - Outils
- Excel cellule couleur si condition texte - Guide
- Transcription audio en texte word gratuit - Guide
- Convertisseur récupération de texte - Guide
- Appel data zone franche ✓ - Forum Vos droits sur internet
2 réponses
gbinforme
Messages postés
14946
Date d'inscription
lundi 18 octobre 2004
Statut
Contributeur
Dernière intervention
24 juin 2020
4 714
12 avril 2012 à 00:08
12 avril 2012 à 00:08
bonjour
Un petit exemple pour t'aider à démarrer avec les paramètres de base :
Un petit exemple pour t'aider à démarrer avec les paramètres de base :
Sub créer_zone_texte() ' ' créer_zone_texte Macro ' ActiveSheet.Shapes.AddTextbox(msoTextOrientationHorizontal, 71.25, 45#, _ 221.25, 144.75).Select Selection.Name = "Ma_zone" Selection.ShapeRange.Fill.Visible = msoTrue Selection.ShapeRange.Fill.Solid Selection.ShapeRange.Fill.ForeColor.SchemeColor = 27 Selection.ShapeRange.Fill.Transparency = 0# Selection.ShapeRange.Line.Weight = 0.75 Selection.ShapeRange.Line.DashStyle = msoLineSolid Selection.ShapeRange.Line.Style = msoLineSingle Selection.ShapeRange.Line.Transparency = 0# Selection.ShapeRange.Line.Visible = msoTrue Selection.ShapeRange.Line.ForeColor.SchemeColor = 64 Selection.ShapeRange.Line.BackColor.RGB = RGB(255, 255, 255) Selection.Characters.Text = Range("F2").Text _ & " " & Range("K7").Text With Selection.Characters(Start:=1, Length:=26).Font .Name = "Arial" .FontStyle = "Normal" .Size = 10 .Strikethrough = False .Superscript = False .Subscript = False .OutlineFont = False .Shadow = False .Underline = xlUnderlineStyleNone .ColorIndex = xlAutomatic End With End Sub
Le Pingou
Messages postés
12230
Date d'inscription
mercredi 11 août 2004
Statut
Contributeur
Dernière intervention
15 janvier 2025
1 454
11 avril 2012 à 23:57
11 avril 2012 à 23:57
Bonjour,
Demain dans la matinée...!--
Salutations.
Le Pingou
Demain dans la matinée...!--
Salutations.
Le Pingou
12 avril 2012 à 08:20
Amicales salutations.
Le Pingou.
12 avril 2012 à 09:28
Désolé, je n'avais pas vu ton message hier quand je préparais le mien ;-)
J'espère que Raph04 aura ainsi son point de départ à adapter.
Bonne journée.