473,395 Members | 1,584 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

(Search Tool) Alright Already I Fixed It :)

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

Nov 20 '05 #1
4 1109
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 thatcategorizes posts in the vb.net and ado.net newsgroups and eliminates thetrash 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 meinforming me of the bug in the datagrid (the scrollbars don't show up unlessyou 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 thisso I expected things like this.

The bug is now fixed. The corrected version is 1.06. It should automaticallyremove 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

.

Nov 20 '05 #2
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

"IAmIronMan" <an*******@discussions.microsoft.com> wrote in message
news:03****************************@phx.gbl...
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

.

Nov 20 '05 #3
Cor
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
Nov 20 '05 #4
> 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.

:)

"Cor" <no*@non.com> wrote in message
news:Ob**************@TK2MSFTNGP12.phx.gbl...
Cor

Nov 20 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: AaronV | last post by:
Hello, I'm a webmaster for a college newspaper and I'm implementing an article search. I'm running PHP with a MySQL database to store the weekly stories. Does anyone know of an article that...
1
by: Les Juby | last post by:
A year or two back I needed a search script to scan thru HTML files on a client site. Usual sorta thing. A quick search turned up a neat script that provided great search results. It was fast,...
4
by: Tarique Jawed | last post by:
Alright I needed some help regarding a removal of a binary search tree. Yes its for a class, and yes I have tried working on it on my own, so no patronizing please. I have most of the code working,...
60
by: Julie | last post by:
What is the *fastest* way in .NET to search large on-disk text files (100+ MB) for a given string. The files are unindexed and unsorted, and for the purposes of my immediate requirements, can't...
32
by: tshad | last post by:
Can you do a search for more that one string in another string? Something like: someString.IndexOf("something1","something2","something3",0) or would you have to do something like: if...
1
by: Brian Quigley | last post by:
Hi, i have a website built in asp and access (to be upscaled to SQL server). i need to put in a website search engine. Anyone got any ideas on an easy to integrate commercial one ? my worry is...
4
by: Anastasios Hatzis | last post by:
I'm looking for a pattern where different client implementations can use the same commands of some fictive tool ("foo") by accessing some kind of API. Actually I have the need for such pattern for...
9
by: Fabian Braennstroem | last post by:
Hi, I wrote a small gtk file manager, which works pretty well. Until now, I am able to select different file (treeview entries) just by extension (done with 'endswith'). See the little part...
3
by: flushfire | last post by:
I posted this already in VB's ask a question thread but nobody's answering ATM, I really need an answer ASAP. Anyways, Im a noob in both VB and SQL so I just followed the walkthrough MS provides. I...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.