Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: kehers
  • Order by date
  1. kehers

    using GDI object inplace of buttons

    is there any way i can use GDI objects like rectangles, strings,etc, call a onClick event handler..as in simulating window.forms.buttons?
  2. kehers

    Preloading a message while page loads

    Sorry...i forgot to mention the script is in within the hed tag...guess thats wat makes it show the message while the page loads...putting the flash code directly inside the body, i guess, wont work..however, its worth a try.
  3. kehers

    Preloading a message while page loads

    using the following snippet to intimate a user that a certain task is been going on while the page loads : <script type="text/javascript"> <!-- Begin document.write('<div id="loading">task going on eg. Searching, please wait... </div>'); window.onload=function(){...
  4. kehers

    Authenticating against Active Directory

    Really dont get you...but in my own little brain i think you might want to take a look at sessions http://uk.php.net/manual/en/ref.session.php or using header() to authenticatation
  5. kehers

    making a query not case sensitive

    how can i make a mysql query term not case sensitive..as in making the search for movies in the statement below not case sensitive select *, match(url, title, comment) against ('movies') as score from dir where match(url, title, comment) against ('movies') and subdir='$in'
  6. kehers

    Disappearing act?

    found out that when a bulk of codes comes between a mysql query and the mysql_fetch_array function, the result of the mysql_query statement dispappears ...as in something like below: //db connection $result = mysql_query($sql_statement); //some long lines of codes, statements, loops, etc...
  7. kehers

    php vs mysql fulltext

    Sorry...wat do u mean by PMA?
  8. kehers

    php vs mysql fulltext

    using the mysql fulltext stunt within a php page to run a kinda search within my db. To be specific, here goes the query: select *, match(url, title, comment) against ('movies') as score from dir where match(url, title, comment) against ('movies') limit $somevariable, 10 using mysql_num_rows...
  9. kehers

    radiobuttons vs selectedIndex

    :-)
  10. kehers

    radiobuttons vs selectedIndex

    Thanks for the reply. Can u help with a simple snippet to go thru the loop? :-)
  11. kehers

    radiobuttons vs selectedIndex

    CAn one access radiobutton index as one does with select option index...as in something like document.formname.radiobutton.selectedIndex ?
  12. kehers

    Error compiling a lib

    A friend tried compiling a java library for me: waplet.jar and stressed it returned the error: exception in thread "main" java.lan.NoClassDefFoundError: waplet/jar. what could be wrong?
  13. kehers

    table column issues

    i av a table with a column containing categories some addresses belong to, occuring a number of times. i'd however luv to get each distinct category in the column with their number of occurence. As in something like this: ---------------+----- CategoryNameA | 5 ---------------+-----...
  14. kehers

    SQL table creation query

    how can one get the sql query with which a table was created?
  15. kehers

    wap Emulator applet

    Thanks Diancecht for your post. actually looked around in d search engidnes b4 posting. found some however but the problem is that i want one i can customize on my site. found one around here: http://waplet.sourceforge.net but the problem however is that it like requires a compiler or sort which...
  16. kehers

    wap Emulator applet

    I'm designing a kinda dir which includs wap sites. In a bid to enable viewing wap sites online, i need a wap emulator applet dat i can embed somewhere on the site. Any idea where i can get one from?
  17. kehers

    Auto reminder

    Being very modest and honest, though this sounds freaky, i must confess i dont get wat u pals mean by cron job...having an idea i bet would draw me nearer to the solution.
  18. kehers

    File upload handling...

    I'm tring to run a file upload script that goes this way: if($_POST['ad']){ print_r($_FILES);//just doing a little debugging trick here if(is_uploaded_file($_FILE['ad']['tmp_name'])){ if($_FILES['ad']['type'] == 'image/gif' || $_FILES['ad']['type'] == 'application/x-shockwave-flash'){ //trying...
  19. kehers

    Include multiple pages with parameters

    I really dont get that but in my little brain i think you should take a look at file and directory functions like file,fopen,fread and opendir,scandir the likes...by the way dont forget that allow_url_fopen should be enabled in php.ini preg_match and its families may help too
  20. kehers

    Auto reminder

    :-) Thanks for that...it was kinda funny coz i thought of that too actually - as in setting up a script inside d index page to do that...was only thinking there could be another alternative. Thanks again...but i hope at least someone comes knocking at the site everyday :-)

Part and Inventory Search

Back
Top