(Search Tool) Alright Already I Fixed It :)

  • Thread starter Thread starter scorpion53061
  • Start date Start date
S

scorpion53061

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
 
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!!!!!)
 
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
 
Hi Scorpion,

Do not feed it, Ironman knows now alreayde what ROFLMAO means from Herfried,
so there is some progress.

Scorpion did ask me to give a reaction in another thread that is why I do
it, but please to everyone, do not feed it again.

Cor
 
Scorpion did ask me to give a reaction in another thread that is why I do
it, but please to everyone, do not feed it again.

Cor,

Read the little script at the end of my post. I have got him by the
proverbial you know what and he knows it.

:)
 
Back
Top