2011-01-06 277 views
0

我使用窗體中的面板,面板包含一個文本框,窗體包含另一個文本框。當我點擊確定按鈕的面板,病隱藏和形式顯示,面板中的文本框的值被轉移到另一個文本框在相同的形式。請幫助任何人。如何將值從一個文本框複製到另一個不同的兩個窗體vb.net2008的文本框?

+0

幫助我,我試圖使用= Me.Text,但這是窗體,而不是文本框。感謝您的詢問。 – JeopardyTempest 2016-11-14 20:54:17

回答

2

在簡單按鈕點擊事件: -

Text2.Text = Text1.Text

+0

謝謝你,先生提供這個想法..工作.. – 2011-01-07 05:00:22

0

,如果我理解正確的,我不知道,我做了一個小例子 你好法布里奇奧

<asp:Panel ID="Panel1" runat="server"> 
     <div> 
     <asp:Label ID="Label1" runat="server" Text="Testo 1"></asp:Label> 
     &nbsp; 
     <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> 
     </div> 
    </asp:Panel> 


     <div> 
     <asp:Label ID="Label2" runat="server" Text="Testo 2"></asp:Label> 
     &nbsp; 
     <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox> 
     </div> 

     <div> 
     <asp:Button ID="Button1" runat="server" Text="Button" /> 
     </div> 

Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click 
     Dim str1 As String = Me.TextBox1.Text 
     Me.Panel1.Visible = False 
     Me.TextBox2.Text = str1 
    End Sub 
0
Public Shared Function GrabURL(ByRef value As String) As String 
    If (value Is Nothing) Then 
     Return "" 
    Else 
     Return Regex.Match(value, "(http://([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)?)").Value 
    End If 
End Function 

' if empty string is added: 
FForm2.ListView1.Items.Add(New ListViewItem(GrabURL(RichTextBox1.Text))) 

' if empty URL should be ignored: 
dim lviURL as New ListViewItem(GrabURL(RichTextBox1.Text)) 
if lviURL .Text <>"" then FForm2.ListView1.Items.Add(lviURL) 
相關問題