-->

Software


Welcome to BrowseNPlayTV!


Use this form to log in with your user name and password.


Select these boxes so you can be informed and entertained.


Click OK when you're done selecting what you want to do.


Enjoy!


Select from these game sites.


Play games like Text Twist on Candystand.com!


To understand how to use this software, watch my commercial or...


take a look at my photographic demonstration!

Two samples of programming code:

  Private Sub commercialDemonstrationListBox_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles commercialDemonstrationListBox.SelectedIndexChanged
        If commercialDemonstrationListBox.SelectedIndex = 0 Then
            Dim commercialForm As New commercialForm
            commercialForm.ShowDialog()
        ElseIf commercialDemonstrationListBox.SelectedIndex = 1 Then
            Dim demonstrationForm As New demonstrationForm
            demonstrationForm.ShowDialog()
        End If
    End Sub

 Private Sub saveToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SaveToolStripMenuItem.Click, saveToolStripButton.Click
        'Allow the user to save files with a specific file name

        Dim responseDialogResult As DialogResult

        'Clear the FileName property
        saveFileDialog.FileName = ""
        responseDialogResult = saveFileDialog.ShowDialog

        'Don't open any file if user selects cancel
        If responseDialogResult = Windows.Forms.DialogResult.Cancel Then
            Exit Sub
        End If

        Dim lastUserStreamWriter As New StreamWriter("saveFileDialog.FileName")

        'Save users info into the lastUser.dat file
        lastUserStreamWriter.WriteLine(firstNameTextBox.Text)
        lastUserStreamWriter.WriteLine(regionTextBox.Text)
        lastUserStreamWriter.WriteLine(countryTextBox.Text)
        lastUserStreamWriter.WriteLine(maleRadioButton.Checked)
        lastUserStreamWriter.WriteLine(femaleRadioButton.Checked)
        lastUserStreamWriter.WriteLine(twelveSixteenRadioButton.Checked)
        lastUserStreamWriter.WriteLine(seventeenThirtyRadioButton.Checked)
        lastUserStreamWriter.WriteLine(thirtyOneFortyRadioButton.Checked)
        lastUserStreamWriter.WriteLine(fortyOneFiftyRadioButton.Checked)
        lastUserStreamWriter.WriteLine(fiftyOneSixtyFiveRadioButton.Checked)
        lastUserStreamWriter.WriteLine(sixtyFiveOneHundredRadioButton.Checked)
        lastUserStreamWriter.WriteLine(newsCheckBox.Checked)
        lastUserStreamWriter.WriteLine(browseCheckBox.Checked)
        lastUserStreamWriter.WriteLine(bmailCheckBox.Checked)
        lastUserStreamWriter.WriteLine(bimCheckBox.Checked)
        lastUserStreamWriter.WriteLine(weatherCheckBox.Checked)
        lastUserStreamWriter.WriteLine(calendarCheckBox.Checked)
        lastUserStreamWriter.WriteLine(gameCheckBox.Checked)
        lastUserStreamWriter.WriteLine(musicCheckBox.Checked)
        lastUserStreamWriter.WriteLine(videoCheckBox.Checked)
        lastUserStreamWriter.WriteLine(pictureCheckBox.Checked)
        lastUserStreamWriter.WriteLine(networkCheckBox.Checked)
        lastUserStreamWriter.WriteLine(dailyJokeCheckBox.Checked)
        lastUserStreamWriter.Close()
    End Sub