Visual Studio Help

v3n0m

New Member
Hey all im in the middle of programing a program with visual studio its called File Finder you input file you wish to get from your pc click serch and it looks for that file i have it all working but theres a catch:eek: it dosent serhc your pc lol
jus runs and dosent serch for a file
P.S there a display box that all resuls show up into
Any help would be nice
Thanx
 
Hey all im in the middle of programing a program with visual studio its called File Finder you input file you wish to get from your pc click serch and it looks for that file i have it all working but theres a catch:eek: it dosent serhc your pc lol
jus runs and dosent serch for a file
P.S there a display box that all resuls show up into
Any help would be nice
Thanx

Wow well there are an infinite number of ways you can code something wrong. We don't stand a chance without at least looking at the section of code you think may be wrong.
 
So it doesn't actually search properly??

No it dosent serch at all when i input my file im looking for and click serch a box pops up saying looking for your file but its not looking for it i dont know the proper code
for it
 
Argh, that's why i cant find documents on my pc when i search for them. I wish microsoft would fire you. (joke)


You could post all the code.
 
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If RadioButton1.Checked = True Then
MsgBox("Finding Your File")
Else
Application.Exit()
End If
End Sub

Private Sub RadioButton1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton1.CheckedChanged

End Sub
End Class
 
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If RadioButton1.Checked = True Then
MsgBox("Finding Your File")
Else
Application.Exit()
End If
End Sub

Private Sub RadioButton1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton1.CheckedChanged

End Sub
End Class


Hmmmm this code checks to see if a radio button is checked. If it is it put's up a message to say finding your file if it is not it exits the program. That's all it does.I think you are getting a little confused here. Did you copy the code from a book or something? What gave you the impression this would work?

Put it this way there needs to be a heck of a lot more code than that for this to work.

I am a little confisued why you would want this anyway when windows does it for you?
 
Hmmmm this code checks to see if a radio button is checked. If it is it put's up a message to say finding your file if it is not it exits the program. That's all it does.I think you are getting a little confused here. Did you copy the code from a book or something? What gave you the impression this would work?

Put it this way there needs to be a heck of a lot more code than that for this to work.

I am a little confisued why you would want this anyway when windows does it for you?

Cos im new to all this and wanted to starts off easy but those windows tutorials are rubish

but if i wont work never mind i will jus get rid thanx for posting tho
 
Back
Top