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 bkrike 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: purcion
  • Content: Threads
  • Order by date
  1. purcion

    compatibility

    I dont really know anything about scsi thats why i am here i guess , anyway I was given an Adaptec 2940UW scsi Controller for christmas and . Im wondering what sort of internal scsi hard drives are compatible with it . I see all this ultra160, U320 , ultra 3 and Im confused as to what drive i...
  2. purcion

    Renaming files on server as uploading

    Im having some problems in my code below , the file uploads no problem , the string replace only works on the data written to the tblZ_Img , but not the actual image being uploaded. example: original file name on my hd name is Te sst.jpg I use the script below to upload it its name is written...
  3. purcion

    Line count without a carrige return

    Hi, Is there a way to count the number of lines of text in a field? I tried using PatternCount with the carrige return symbol as my searchstring and this doesnt work(unless of course you have manually added carrige returns with the enter key) It wont find whats not there. It seems that when...
  4. purcion

    being selective about ids

    hi Im using this code to make list of a mysql table ======================================================= <?php $getnews = mysql_query("select * from tblZ_Test ORDER BY id DESC "); while($r=mysql_fetch_array( $getnews)){ extract($r); echo '<a href =...
  5. purcion

    Sending to a popup

    I have listed some code I m working on that works well basically it pulls some data off a database and limits it to displaying 250 characters of the description which if the user clicks on the ..more link it will pass the variable onto a new page and show them the whole description if it is...
  6. purcion

    A bit of Syntax help

    Hi I am using a function ============================================== <?php function nicetrim ($s) { $MAX_LENGTH = 250; $Str = html_entity_decode($s); if (strlen($Str) <= $MAX_LENGTH) { return $s; } $s2 = substr($Str, 0, $MAX_LENGTH - 3); $s2 .= "...More"; return...
  7. purcion

    help with str_replace(&quot; &quot;, &quot;_&quot;, $file_image);

    hi , I have a series of pages 1 has input forms that send variables to a page that uploads and submits the files and text to mysql . It works fine until someone tries to upload a file with white space in the name the problem im having is in my submit page I cant place the str_replace function...
  8. purcion

    how to deal with this exception

    I have created some code that searches the system for files it then populates a Listview with the details the columns being caption = path subitem = filename subitem = datemodified the idea being that when the user clicks on the 'path' column it shells explorer at the folder so you can...
  9. purcion

    Stop spin button from going below 0

    I m hoping this is simple and possible I have a editbox thats value is controlled by a spin button . How would I stop it from going into minus numbers ie -10 below 0. here is the code i a using ... {=======================================================} procedure...
  10. purcion

    Finding largest file

    I basically need some help with code (delphi) that will display the files on my system sorted by size. This could be a problem i guess if a system has 90,000 files but i would even be happy to have code that displays just the largest file on my system. thanks in advance

Part and Inventory Search

Back
Top