|
-
May 14th, 2003, 11:23 AM
#1
Thread Starter
Registered User
-
May 14th, 2003, 11:28 AM
#2
Need-a-life Member
-
May 14th, 2003, 11:36 AM
#3
Thread Starter
Registered User
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.
-
May 14th, 2003, 11:46 AM
#4
Thread Starter
Registered User
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.
-
May 14th, 2003, 03:29 PM
#5
New Member
Nice little app there. And don't worry, this man does not write an virus software, no need to worry!
-
May 14th, 2003, 03:32 PM
#6
PowerPoster
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....
-
May 14th, 2003, 03:32 PM
#7
Hyperactive Member
Thanks bud. I know I can trust you....
I'll sleep so much easier tonight!
-
May 14th, 2003, 03:37 PM
#8
New Member
You can trust me, I know and have worked with Derek.
-
May 14th, 2003, 03:38 PM
#9
PowerPoster
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....
-
May 14th, 2003, 03:43 PM
#10
Thread Starter
Registered User
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.
-
May 14th, 2003, 04:39 PM
#11
Banned
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
-
May 14th, 2003, 05:18 PM
#12
Thread Starter
Registered User
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
-
May 14th, 2003, 06:04 PM
#13
Frenzied Member
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:
Public OnOff As Integer
Private Sub Command1_Click()
If OnOff = 0 Then
Command1.Caption = "Started"
Timer1.Enabled = True
OnOff = 1
Else
Command1.Caption = "Stoped"
Timer1.Enabled = False
OnOff = 0
End If
Timer1.Interval = Text1 * 1000
End Sub
Private Sub Form_Load()
OnOff = 0
Timer1.Enabled = False
WebBrowser1.GoHome
End Sub
Private Sub Timer1_Timer()
WebBrowser1.Refresh
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/
-
May 14th, 2003, 06:06 PM
#14
Frenzied Member
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/
-
May 14th, 2003, 06:21 PM
#15
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.
-
May 14th, 2003, 07:04 PM
#16
Thread Starter
Registered User
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
-
May 14th, 2003, 07:07 PM
#17
Thread Starter
Registered User
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:
Public OnOff As Integer
Private Sub Command1_Click()
If OnOff = 0 Then
Command1.Caption = "Started"
Timer1.Enabled = True
OnOff = 1
Else
Command1.Caption = "Stoped"
Timer1.Enabled = False
OnOff = 0
End If
Timer1.Interval = Text1 * 1000
End Sub
Private Sub Form_Load()
OnOff = 0
Timer1.Enabled = False
WebBrowser1.GoHome
End Sub
Private Sub Timer1_Timer()
WebBrowser1.Refresh
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
-
May 14th, 2003, 08:30 PM
#18
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
-
May 15th, 2003, 07:00 AM
#19
Thread Starter
Registered User
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|