Your question is nearly bogus. I'll give you the answer that I think you want, but for future reference, try to read what you post prior to posting it. Not to try and sound like the "post police", but damn you sound ignorant. It's amazing you know what VB is...
Here' a command to make a button that will launch a program:
Private Sub CommandButton1_Click()
Shell "C:\Windows\Stupid.exe", vbMaximizedFocus
End Sub
Here's a command to make a button that will launch a streaming windows media player link from a specific host (port number not truly necessary unless you're doing some renegade type of stuff. I use Microsoft Expression Encoder to launch a local streaming video of the weather channel to all workstations. We work construction.)
Private Sub CommandButton1_Click()
Shell "wmplayer.exe http://computer-name:8080/", vbMaximizedFocus
End Sub
Here's a command to launch a button that will open an FTP site within the actual Windows Explorer environment, so you can use drag/drop. VERY NICE if you're trying to tell a moron a simple way to connect to your FTP server:
Private Sub CommandButton1_Click()
Shell "Explorer ftp://ftpsitehere.com/", vbMaximizedFocus
End Sub
So, explore with that little "shell" command, and enjoy. Sorry for being a Richard Head earlier. But, I didn't give myself that name for no reason. I'm an angry nerd. I sit here at work all day, and read other people's problems.
This is as easy as it gets.
I'm laughing my *** off at the people who replied before I did. Wow, the madness they bring upon themselves.