Skip to main content

LAN Search Pro 8.4.0

LAN Search Pro 8.4.0 description

LAN Search Pro 8.4.0 supports a method to find out files on your network. It helps you save your time and money when you need to find some information in your LAN. It features include a very fast multi-threaded search engine, ability to search hidden network resources, restricted access resources and IP sub-networks and much more.
Major Features:
  1. Search according to the specified criteria, search filters.
  2. Ability to search the hidden resources, IP sub-networks, LAN FTP servers.
  3. Ability to search the resources with restricted access (the ones you need a login and password to access).
  4. Ability to ignore some computers (e.g. slow servers) when performing the search. You can also search for specific servers only.
  5. Ability to search specific network folders and much more.
  6. Save, load, sort, navigate, and perform any other actions on the search results.
  7. Fast multi-threaded search engine
  8. Support of large amounts of data the list can now contain up to 2,000,000 files
Enhancements:
  • Added extra settings for IP address discovery.
  • It is now possible to choose among three discovery methods (ICMP, ARP, NetBios).
  • Max number of threads and discovery timeout can be configured.
  • Discovered IP address can be resolved to user-friendly host names.
File size: 681 KB
Platform: Windows All
License: Freeware
Price: FREE
Downloads: 24
Date added: 2009-05-09
Download now

Comments

Popular posts from this blog

Why is this Javascript much *slower* than its jQuery equivalent?

I have a HTML list of about 500 items and a "filter" box above it. I started by using jQuery to filter the list when I typed a letter (timing code added later): $('#filter').keyup( function() { var jqStart = (new Date).getTime(); var search = $(this).val().toLowerCase(); var $list = $('ul.ablist > li'); $list.each( function() { if ( $(this).text().toLowerCase().indexOf(search) === -1 ) $(this).hide(); else $(this).show(); } ); console.log('Time: ' + ((new Date).getTime() - jqStart)); } ); However, there was a couple of seconds delay after typing each letter (particularly the first letter). So I thought it may be slightly quicker if I used plain Javascript (I read recently that jQuery's each function is particularly slow). Here's my JS equivalent: document.getElementById('filter').addEventListener( 'keyup', function () { var jsStart = (new Date).getTime()...

Is it possible to have IF statement in an Echo statement in PHP

Thanks in advance. I did look at the other questions/answers that were similar and didn't find exactly what I was looking for. I'm trying to do this, am I on the right path? echo " <div id='tabs-".$match."'> <textarea id='".$match."' name='".$match."'>". if ($COLUMN_NAME === $match) { echo $FIELD_WITH_COLUMN_NAME; } else { } ."</textarea> <script type='text/javascript'> CKEDITOR.replace( '".$match."' ); </script> </div>"; I am getting the following error message in the browser: Parse error: syntax error, unexpected T_IF Please let me know if this is the right way to go about nesting an IF statement inside an echo. Thank you.