CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5

Threaded View

  1. #1
    Join Date
    Sep 2003
    Posts
    15

    whats wrong wit my code?

    this is friends code but i am having problems with it too!

    Option Explicit
    Public strHidden As String

    Private Sub cmdHide_Click()
    strHidden = txtHide.Text
    txtHide.Text = ""
    frmShow.Show
    End Sub

    *********************

    Option Explicit

    Private Sub cmdShow_Click()
    txtShow.Text = strHidden
    End Sub

    [Cimperiali: title changed to make it related to question]
    Last edited by Cimperiali; October 15th, 2003 at 02:51 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured