View Full Version : Url updater
smurf3432000
06-15-2003, 07:00 PM
Hi.. I am new and I was just woundering if anyone was willing to make a program for me I took vb.net in class but its way over my head and I wouldnt know how to start. This is what I wanted. I wanted a program that would automatically change the url in ie every set amount of sec. which would have a box that you can set. The url would change only by number in order like for example I set the time to 1 sec and the url to: www.google.com/ Then the min number to 1 and the max number to 5 so every sec. the url will change from www.google.com/1 to www.google.com/2 to www.google.com/3 and so on till it gets to the max number. I would greatly approciate it if someone could do this for me you can email me at smurf3432000@yahoo.com
smurf3432000
06-16-2003, 03:20 PM
anyone please?
I charge $85 an hour.
send me the details and I will provide you with the services
Orioli
06-16-2003, 06:26 PM
Note to smurf3432000:
You may ask our members for assistance, but you may NOT ask the members to make the program for you.
If you need to hire a programmer, post your project with details, your budget and the amount you are willing to pay.
Thank you for your cooperation.
Strike
06-16-2003, 09:58 PM
Originally posted by gish
I charge $85 an hour.
send me the details and I will provide you with the services
pah, I'll do it for the low low price of $84.99 per hour
damn!....competition around here...i can't beat that price....how do you survive?
:smash: :nuts: :banana:
smurf3432000
06-16-2003, 10:23 PM
o heh thats alot I thought it would take like 10 min to make but o well. Then can someone give a link on help for using vb.net on a browser like ie. So I can do it my self?
sans-hubris
06-17-2003, 06:00 AM
Originally posted by smurf3432000
o heh thats alot I thought it would take like 10 min to make but o well. Then can someone give a link on help for using vb.net on a browser like ie. So I can do it my self? Asking for help is more like it. Coderforums isn't a place to condone cheating.
Anyway, I don't know about interacting with IE, but I know you can embed the browser component into an application you write. I'll let you do the research though.
sicarius
06-17-2003, 02:06 PM
I only have one acronym for you. COM. Component Object Model. You can access the IE COM object through VB and use it to manipulate the browser. You'll have to find the specifics on your own.
smurf3432000
06-17-2003, 07:24 PM
what do you think would be the easiest to do this is other than vb.net??
1) javascript (unless I am missing something)
I know one should never depend on client side processing, but you want quick and easy.
2) ASP!!!!!! (JScript or VBScript)
Yeah use asp
smurf3432000
06-17-2003, 09:57 PM
I tried it on flash mx and I got it to bring the browser up and go to the site but something is wrong with my loops. This is what I have so far...
var min;
var max;
var url;
do {
min = 1;
min = min+1;
max = 10;
url = min;
getURL("http://www.google.com" + url, "_blank");
} while (min<= max);
It does this but it doesnt change the min value it stays the same and it never stops it just keeps going.
I found the problem the
min = 1;
min = min+1;
max = 10;
url = min;
should be outside the loop
smurf3432000
06-18-2003, 12:12 AM
well 4 hours later I finaly got it done but there is one problem it goes to the updated page every .1 sec and I cant figure out how to make it do it every like 5 sec in flash mx. The gettimer thing tells the time so far the program has been going but I dont know how to make it redo the loop every 5 sec. can anyone help me with that?
vBulletin® v3.7.0, Copyright ©2000-2009, Jelsoft Enterprises Ltd.