Step 3Software
- OnLoad() takes the txt file as input and prepares a grid of channels.
- Opens and displays a stream when you click on a channel from the grid.
- Contains a button that toggles the window between the computer and TV screen, so that you don't have to do it manually.
- Any other ideas you get (for example, I added a button to open video files).
How to toggle the window between computer screen and TV set
In my case, when you click on an object called "Picture3" (button for moving window, see picture bellow) it runs this piece of code:
If Picture3.Tag = ">" Then
Me.WindowState = 0
Me.Left = Screen.Width
Me.WindowState = 2
Picture3.Tag = "<"
Else
Me.WindowState = 0
Me.Left = 0
Me.WindowState = 2
Picture3.Tag = ">"
End If
| « Previous Step | Download PDFView All Steps | Next Step » |
1
comment
|
Add Comment
|
![]() |
Add Comment
|







































