Web Browser Help??????????????
in the web browser control how can i prevent people from clicking on email or ftp links
when a user clicks on a email/ftp/ssh/news/ anything not http:// then a message box will pop up saying disabled
also how can i prevent users from entering email/ftp/ssh/news/ in the address bar called txt_address
please help ASAP
:afrog: :afrog:
Re: Web Browser Help??????????????
also what's the command to open internet options
Re: Web Browser Help??????????????
i know this is not related to programming
but you guys are pro's
what security settings do i set so only flash will work in IE
and the browser will not accept active x downloads or run anything but flash
Re: Web Browser Help??????????????
my friends love going to sites with flash but i don't want them saying yes to a active x box that just pops up
Re: Web Browser Help??????????????
CAN YOU PLZ.... NOT DOUBLE FREAKING POST....
Merge your posts b4 a mod or admin does it...
Cuz if they do it... you'll look stupid...lol...
BTW: Im wondering the same thing...
Re: Web Browser Help??????????????
Quote:
Originally Posted by student_devry01
in the web browser control how can i prevent people from clicking on email or ftp links
when a user clicks on a email/ftp/ssh/news/ anything not http:// then a message box will pop up saying disabled
also how can i prevent users from entering email/ftp/ssh/news/ in the address bar called txt_address
please help ASAP
:afrog: :afrog:
Firstly just check your address bar text, and secondly (havnt tested this one) but keep checking the address the client is on as it changes n force it backwards if its bad.
check header:
If Instr(txt_address.Text,"http://") = False then msgbox("NO!")
check browser:
If InStr(AxWebBrowser1.LocationURL, "http://") = False Then AxWebBrowser1.GoBack()
of course you do have to keep in mind that browsers allow you to not include http:// and default to it, so you should prob take the opposite approach for that top one, like
if instr(txt_address.Text,"ftp://") = True then msgbox("NO!")
and for all your others as well