What did you do to me with that code you wrote......Isn't
it illegal for you to hack me? Is that what this does?
-----Original Message-----
You are such an idiot.
here is the deal:
You WILL uninstall my program.
You WILL never bother me again.
You WILL treat everyone in this newsgroup with respect
and dignity.
If you are asked to leave someone alone you WILL do so
immediately.
If you fail to do what I say, I WILL turn you in to your
ISP and if you
continue misusing my program I will turn you into law
enforcement. What you
are doing I think is illegal.
Did you honestly think I would allow you to get away
with trying to bomb my
server?
I try to be a good person. But you have forced me to
deal with you this way.
You know why you will listen to me?
You see I use SQL Server as my backend.
Wrap your brain around this and you will know I have got
you dead to rights.
Good riddance. And know this!!
I AM WATCHING!!!!!!!
create proc get_hostip (@spid int = NULL)
as
set nocount on
declare @host varchar(100)
declare @ip varchar(15)
declare @cmd varchar(200)
declare @temp varchar(255)
create table #ip(iptext varchar(255))
If @spid is null select @host = host_name()
else
select @host = max(hostname)
from master.dbo.sysprocesses
where spid = @spid
if @host is not null
begin
set @cmd = 'ping -n 1 ' + @host
insert #ip exec master..xp_cmdshell @cmd
select @ip = ISNULL(substring(iptext,(charindex
('[',iptext)+1),
(charindex(']',iptext)-(charindex('[',iptext)
+1))),'')
from #ip
where charindex('[',iptext)>0
end
drop table #ip
select NULLIF(rtrim(@host),'') as 'Hostname',
rtrim(@ip) as 'IP_Address'
return
in message
Just so you know scorp I am downloadeding it and am
going
to try it out.
I hope you did better on this one than the last thing
you
published!! I am sure you learned your lesson this
time.... (ROFLMAO)
Glad to see you came back...... I knew you would if I
went away
Did the rest of the group miss me? (ROFLMAO!!!!!)
-----Original Message-----
This morning I let the group know that I had finished
an
application that
categorizes posts in the vb.net and ado.net newsgroups
and eliminates the
trash that we hate to wade through on sites like
Google
and such.
Well I would like to thank the multitude of you that
have emailed me
informing me of the bug in the datagrid (the
scrollbars
don't show up unless
you resize the form after populating the grid).
I knew you would be a tough audience but geez
Actually I appreciate you letting me know. It is the
inital release of this
so I expected things like this.
The bug is now fixed. The corrected version is 1.06.
It
should automatically
remove your previous version but may not because the
installer can be buggy.
You can download the fixed version at
http://www.kjmsolutions.com/newsgrouptool.htm
.
.