Hello im very new to VB6. So far i was able to create a working half a** webbrowser.
What im wanting to do now is create a server search tool along with join option.
I have some codes that are used to search for your requests, but i dont think they are
VB safe.
Code:
unit FilterServerlist; function DoFilter: boolean;
begin
result:=false;
if ping<100 then result:=true
end;
end.
Another code:
Code:
unit FilterServerlist;
function DoFilter: boolean;
begin
// --- your code goes here [start] ---
if (pos('server name',hostname)=0) then result:=true else result:=false;
// --- your code goes here [end] ---
end;
end.
Here is a picture of what it looks like so you
VB GODS know what im talking about.
http://img158.imageshack.us/img158/1345/jointoolke3.jpg
Im willing to give you half credit of program for your total dediacation to helping me.
I would like to have this program up and running by the 18th. So please if you are willing to help me, I know nothing about coding, it would be greatly apprecated.
Slick~