nzmaimita
Messages postés5Date d'inscriptionvendredi 3 novembre 2000StatutMembreDernière intervention20 novembre 2010
-
20 nov. 2010 à 13:27
cs_Le Pivert
Messages postés7904Date d'inscriptionjeudi 13 septembre 2007StatutContributeurDernière intervention14 août 2024
-
20 nov. 2010 à 16:30
Bonjour
Je dispose d'un projet VB.NET contenant 100 forms, parmi cette liste il y en a une fenêtre contient un champ text, dans le quel je cherche à prévisualiser en dynamique un form parmi la liste (100) en tapant son nom(form NAME) dans la zone text.
Comment je dois procéder.
cs_Le Pivert
Messages postés7904Date d'inscriptionjeudi 13 septembre 2007StatutContributeurDernière intervention14 août 2024137 20 nov. 2010 à 16:30
Bonjour,
Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
If TextBox1.Text = "Form3" Then
Form3.Show()
End If
End Sub