I'm working on an ftp app to connect to the xbox. It links to the xbox but when I try to go into any of the folders in the xbox it opens that folder in a new window. Does anyone know how to keep it in the same window.
I'm using VB but I can use C# if I have to.
FTP app help
-
- Posts: 541
- Joined: Thu Feb 08, 2007 5:39 pm
- Location: NJ
FTP app help
Your mom became oversized. Please make your mom smaller before reposting.

Infern0 wrote:You just shave the excess bush and burn the leftovers.
-
- Posts: 5426
- Joined: Sat Jul 24, 2004 12:12 pm
- Location: I'm a Paranoid
- Contact:
![]() |
![]() |
-
- Posts: 541
- Joined: Thu Feb 08, 2007 5:39 pm
- Location: NJ
My code to link to the xbox is kind of like this:
- Private Sub btn_connect_click()
Dim Ip as string = me.txt_IP.text
Dim User as string = me.txt_user.text
Dim Pass as string = me.txt_pass.text
Dim URL as string
URL = "ftp://" & User & ":" & Pass & "@" & Ip
If Ip = "" then
me.messagebox.show("Please enter a valid IP Address")
Else
me.webbroser1.navigate(URL)
End If
End sub
Your mom became oversized. Please make your mom smaller before reposting.

Infern0 wrote:You just shave the excess bush and burn the leftovers.