Results 1 to 19 of 19

Thread: Not a problem but something that eveyone make enjoy *UPDATED* *CODE AS REQUESTED*

  1. #1

    Thread Starter
    Registered User Virus00110's Avatar
    Join Date
    Jul 2002
    Location
    Williamsport, PA
    Posts
    290

    Talking Not a problem but something that eveyone make enjoy *UPDATED* *CODE AS REQUESTED*

    I recently created a small app that will refresh a webpage based on a set amount of mintues and a set webpage that you want to refresh. however the timer will pause if you go to a different webpage. The reason I created this app is mainly for the VB Forums website so that I don't have to click the reload or refresh webbrowser buttons every couple of minutes to see if anyone posted anything. Please enjoy and if you have any question please message me. thanks

    PS. if anyone would like to see the code or download it let me know and i will post it in the code bank.

    PPS. Zip has been updated to include code posted at bottom i have also updated it here as well.
    Attached Files Attached Files
    Last edited by Virus00110; May 15th, 2003 at 07:05 AM.

  2. #2
    Need-a-life Member Mc Brain's Avatar
    Join Date
    Apr 2000
    Location
    Buenos Aires, Argentina
    Posts
    6,808

    Re: Not a problem but something that eveyone make enjoy

    Originally posted by Virus00110
    I recently created a small app that will refresh a webpage based on a set amount of mintues and a set webpage that you want to refresh. however the timer will pause if you go to a different webpage. The reason I created this app is mainly for the VB Forums website so that I don't have to click the reload or refresh webbrowser buttons every couple of minutes to see if anyone posted anything. Please enjoy and if you have any question please message me. thanks

    PS. if anyone would like to see the code or download it let me know and i will post it in the code bank.
    Gee!! Are you really expecting most of the users execute an EXE file? No offense.... but your nickname is a bit suspicious.
    Emiliano F. Martín


    If a post has helped you then please Rate it! (and give the user points he/she deserves by clicking on the image).
    Encourage the person who helped you to keep doing it, and give him the points he deserves.


    MP3 Organizer: Freeware to logically organize all your MP3s.

  3. #3

    Thread Starter
    Registered User Virus00110's Avatar
    Join Date
    Jul 2002
    Location
    Williamsport, PA
    Posts
    290
    You are very correct and I respect what you are saying but if you ever look at any of my post you would see that most of the people that ask question like disabling anti-virus programs and hiding their program from being seen in the task manager I always inform them that they would probably never get any answers because it sounds like they are writing a virus. In addition if I did it would be very easy to get me into trouble considering I post it and I’m sure that VB Forums tracks IP address and things like that. However if you don't believe me I will post the code in the code bank. I understand your concern.

  4. #4

    Thread Starter
    Registered User Virus00110's Avatar
    Join Date
    Jul 2002
    Location
    Williamsport, PA
    Posts
    290
    here is a little more proof that it isn't a virus but i still respect your concerns. i am currently running it even now as i typed this, but here is a screen shot of it and my desktop.

    http://userweb.suscom.net/~linkinpark/
    Last edited by Virus00110; May 14th, 2003 at 12:00 PM.

  5. #5
    New Member
    Join Date
    May 2003
    Location
    Bloomsburg, PA
    Posts
    12
    Nice little app there. And don't worry, this man does not write an virus software, no need to worry!

  6. #6
    PowerPoster
    Join Date
    Aug 2000
    Location
    IN SILENCE
    Posts
    6,441

    Well

    I's use it, but I want the code, not the exe.

    Trust is earned...
    Remaining quiet down here !!!

    BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....

  7. #7
    Hyperactive Member
    Join Date
    Jan 2003
    Location
    Cape Cod, US
    Posts
    292
    Thanks bud. I know I can trust you....

    I'll sleep so much easier tonight!


  8. #8
    New Member
    Join Date
    May 2003
    Location
    Bloomsburg, PA
    Posts
    12
    You can trust me, I know and have worked with Derek.

  9. #9
    PowerPoster
    Join Date
    Aug 2000
    Location
    IN SILENCE
    Posts
    6,441

    Well

    Originally posted by fungi
    Thanks bud. I know I can trust you....

    I'll sleep so much easier tonight!

    There are many people I trust on this forum...

    I have been buds with them for years.

    This "virus" person sounds sketchy. All I am saying...
    Remaining quiet down here !!!

    BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....

  10. #10

    Thread Starter
    Registered User Virus00110's Avatar
    Join Date
    Jul 2002
    Location
    Williamsport, PA
    Posts
    290
    Ok everyone i understand you concern i have posted a zip with the code the exe is with it if you still don't trust me then just delete the exe. if you still don't believe me after that i will zip it again and re-re-post it w/o the exe.

  11. #11
    Banned jhermiz's Avatar
    Join Date
    Jun 2002
    Location
    Antarctica
    Posts
    2,492
    You seriously think its that hard to click refresh? Id rather click refresh than run a complete application in the background which covers 1/3 of the screen just to get a refresh every X seconds....

    I really see no use in that.

    Jon

  12. #12

    Thread Starter
    Registered User Virus00110's Avatar
    Join Date
    Jul 2002
    Location
    Williamsport, PA
    Posts
    290
    Originally posted by jhermiz
    You seriously think its that hard to click refresh? Id rather click refresh than run a complete application in the background which covers 1/3 of the screen just to get a refresh every X seconds....

    I really see no use in that.

    Jon
    that's fine but when i'm at work and i'm working on something i don't feel like switching back and forth from what i'm doing to refresh the page to see if anyone answered my post. that takes time away from what i should be doing at work. and besides maybe i just felt like doing it for fun oh and if you would download the code and look at it you can minimize the app to the system tray! wow what a concept

  13. #13
    Frenzied Member JasonLpz's Avatar
    Join Date
    Mar 2001
    Location
    Brooklyn, NY
    Posts
    1,335
    not to discorage anyone but this code is pure simplcity . If you want to make one just use the web browser template that comes with vb then add 1 button and 1 text box :
    it would be something like this

    VB Code:
    1. Public OnOff As Integer
    2. Private Sub Command1_Click()
    3.     If OnOff = 0 Then
    4.         Command1.Caption = "Started"
    5.         Timer1.Enabled = True
    6.         OnOff = 1
    7.             Else
    8.         Command1.Caption = "Stoped"
    9.         Timer1.Enabled = False
    10.         OnOff = 0
    11.         End If
    12. Timer1.Interval = Text1 * 1000
    13. End Sub
    14.  
    15. Private Sub Form_Load()
    16. OnOff = 0
    17. Timer1.Enabled = False
    18. WebBrowser1.GoHome
    19. End Sub
    20.  
    21. Private Sub Timer1_Timer()
    22. WebBrowser1.Refresh
    23. End Sub

    Not trying to mean anything offensive ok.
    - JayWare
    Live to love. Not to Hate

    Im to busy to have a site. But I got one and still working on it.

    http://dre3k.net/

  14. #14
    Frenzied Member JasonLpz's Avatar
    Join Date
    Mar 2001
    Location
    Brooklyn, NY
    Posts
    1,335
    any you can always just press F5 on your keyboard instead of clicking and using mem for a app to do it
    - JayWare
    Live to love. Not to Hate

    Im to busy to have a site. But I got one and still working on it.

    http://dre3k.net/

  15. #15
    I'm about to be a PowerPoster! Joacim Andersson's Avatar
    Join Date
    Jan 1999
    Location
    Sweden
    Posts
    14,649
    An EXE file could have a virus even if the creator didn't add it. Isn't that what a virus usually do, infect program files? So it's not only a question about trusting the creator, you must also trust that he scans his hard drive on a regular basis and that his anti-virus program is up to date. But not even then can you be sure that the file isn't infected, but then again this applies to every program you may download from the Net and it's always up to you when you deside to do so.
    Last edited by Joacim Andersson; May 14th, 2003 at 06:27 PM.

  16. #16

    Thread Starter
    Registered User Virus00110's Avatar
    Join Date
    Jul 2002
    Location
    Williamsport, PA
    Posts
    290
    Originally posted by Joacim Andersson
    An EXE file could have a virus even if the creator didn't add it. Isn't that what a virus usually do, infect program files? So it's not only a question about trusting the creator, you must also trust that he scans his hard drive on a regular basis and that his anti-virus program is up to date. But not even then can you be sure that the file isn't infected, but then again this applies to every program you may download from the Net and it's always up to you when you deside to do so.
    norton anti-virus 2003 recent update and scans harddrive everyday at 4:00AM if you would like to know

  17. #17

    Thread Starter
    Registered User Virus00110's Avatar
    Join Date
    Jul 2002
    Location
    Williamsport, PA
    Posts
    290
    Originally posted by JasonLpz
    not to discorage anyone but this code is pure simplcity . If you want to make one just use the web browser template that comes with vb then add 1 button and 1 text box :
    it would be something like this

    VB Code:
    1. Public OnOff As Integer
    2. Private Sub Command1_Click()
    3.     If OnOff = 0 Then
    4.         Command1.Caption = "Started"
    5.         Timer1.Enabled = True
    6.         OnOff = 1
    7.             Else
    8.         Command1.Caption = "Stoped"
    9.         Timer1.Enabled = False
    10.         OnOff = 0
    11.         End If
    12. Timer1.Interval = Text1 * 1000
    13. End Sub
    14.  
    15. Private Sub Form_Load()
    16. OnOff = 0
    17. Timer1.Enabled = False
    18. WebBrowser1.GoHome
    19. End Sub
    20.  
    21. Private Sub Timer1_Timer()
    22. WebBrowser1.Refresh
    23. End Sub

    Not trying to mean anything offensive ok.
    no no i don't think of that at all we are all here to learn and share knowledge right and that's almost how my code is with a few changes however for some reason the zip with all the code did upload and i am not at the computer i did the app on so i will re-re-post it tomorrow. no offense taken

  18. #18
    I'm about to be a PowerPoster! Joacim Andersson's Avatar
    Join Date
    Jan 1999
    Location
    Sweden
    Posts
    14,649
    Originally posted by Virus00110
    norton anti-virus 2003 recent update and scans harddrive everyday at 4:00AM if you would like to know
    LOL, I was speaking in general terms. I'm a bit tired of everytime someone uploads a compiled exe someone immediatly posts a reply like "if you think I will download a compiled program you're crazy". We all know about the danger of installing a program on our local system regardless of where it comes from. It's up to each and everyone to deside if they want to download it or not. I don't really think anyone browsing this forum really need to be reminded about it. No offence Mc Brain

  19. #19

    Thread Starter
    Registered User Virus00110's Avatar
    Join Date
    Jul 2002
    Location
    Williamsport, PA
    Posts
    290
    sorry to anyone that downloaded the zip and still found the exe. when i re-uploaded the zip yesterday i must have grabbed the wrong zip file so here is the correct zip file with the code and the exe. enjoy.
    Attached Files Attached Files

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width