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 Shaun E 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: Oostwijk
  • Content: Threads
  • Order by date
  1. Oostwijk

    how old

    How to test if a file named "file1.txt" is older then 24 hours ?
  2. Oostwijk

    link array

    I've got an array which has multiple lines like these in it: <A HREF="http://www.socialgallery.com/galleries/mfhm/Gall14/gall.php?4573">Older Page</A><BR> <A HREF="http://movies.easy-dater.com/galleries/01/195/pre.html">Movie Page</A><BR> As you can see it are links to certain websites. Now I...
  3. Oostwijk

    eh, dumb grep problem

    To test if I understand the grep command correctly I used this little script: $items="no way test"; if (grep /$items/,"test"){print "ok";} These lines should print "ok" sice test appears in $items. Though "ok" isn't printed. What am I doing wrong here ? I've tried it the other way around: if...
  4. Oostwijk

    first character

    How to check if the first character in a string is a number ?
  5. Oostwijk

    How to retrieve

    My girlfriend accidently removed a sent email from the OUT mailbox. Is there a way to retrieve the email ? (I cant ask the recipient of the email). I couldn find the email in the trash mailbox either. I hope someone can help me.
  6. Oostwijk

    table cgi scripts

    I've got a table consisting out of two columns in my html page. In the left column I want to display a cgi-script and in the right column I want to display an other cgi-script. Which lines do I need to launch the cgi-scripts in the columns ?
  7. Oostwijk

    hiding cgi code for webhost

    Is there a way to hide the cgi code for my webhost ? I'm affraid he's gonna steal my code. I worked days to scribe the code. I'm on a win98 machine and upload my cgi-script to my webhost which is an Unix machine. A friend told me that it isn't possible to execute windows based exe files on an...
  8. Oostwijk

    remaining string

    How can I remove the first character of a variable ?
  9. Oostwijk

    left character

    How to retrieve the left character of the value from variable $line and store that character in a variable named $charact
  10. Oostwijk

    text file - date problem

    I've got a textfile, which contains lines like these: 3-4-03 5:42:30 13-9-03 11:26:00 3-4-03 6:07:16 5-5-99 22:22:00 22-5-03 6:27:48 27-5-03 23:49:06 20-2-03 3:42:12 9-7-02 5:56:34 8-5-03 5:01:44 19-11-03 3:25:56 14-5-03 22:51:50 11-3-03 4:45:28 29-4-03 6:01:56 2-6-03 10:40:54 29-4-03 6:14:38...
  11. Oostwijk

    I want to know from which website v

    I want to know from which website visitors come to my website (the previous website). Which lines do I need for that ?
  12. Oostwijk

    sorting filelistbox

    I want to be able to sort a filelistbox (named file1) ascending and descending at name and size. How can that be achieved ?
  13. Oostwijk

    2 beginners questions

    1. I've made a program, when I compile or test the program it takes the whole screen, while it should take only half the screen. How can I adjust the width and height the program uses ? I've allready altered height and width in the form properties but that didn't work. 2. How can I check on...
  14. Oostwijk

    strange error

    What is wrong with this ? I'm not always getting an subscript out of range, but when Filelistbox File1 contains these files: uwvGAK sollicitatie.doc cv BLABLAR.DOC cv.doc brief16-07-2002.DOC uitkeringsdeskundige.DOC gembel.doc h&m.doc vvbs.doc uszoterug.doc CV2.doc belast2001.doc openweb.DOC...
  15. Oostwijk

    Get the size of a Folder in KBytes

    I want to know if I can copy the files in filelistbox1 to the target defined in Dir2.path, how can I measure if the target drive has enough hard disk space to store those files ?
  16. Oostwijk

    file problem

    What am I doing wrong here ? I've got a Drivelistbox named Drive2 and a Dirlistbox named Dir2. Now I want to store a file in the selected drive and directory. I tried it with: Dim Dezedir As String Dezedir = Dir2.Path + &quot;\mdw.tst&quot; bestandsnummer = FreeFile Open Dezedir For Output As...
  17. Oostwijk

    number of files

    How to get the number of files in a Filelistbox named File1 and store this number in a variable named $numberfiles ?
  18. Oostwijk

    Cookie problems

    I'm trying to write and read a cookie, though I've got lot of problems doing so. I've tried this script: #!/usr/bin/perl use CGI qw/:standard/; use CGI::Cookie; # Create new cookies and send them $cookie1 = new CGI::Cookie(-name=>'ID',-value=>123456); $cookie2 = new...
  19. Oostwijk

    finding in html page

    I've got a html page in which these lines occure: &#8226; geavanceerd zoeken &#8226; voorkeuren &#8226; taalhulpmiddelen het web doorzoeken zoeken in <br><br>Gevondenhi<hr>5 I've built an script that searches for characters/words (defined by a user) on that html page. The search is done...
  20. Oostwijk

    Major problem, please help

    I use LWP::Simple to fetch a certain page on the internet. The page contains: <html> &#8226; geavanceerd zoeken &#8226; voorkeuren &#8226; taalhulpmiddelen het web doorzoeken zoeken in <br><br>5 records -><br>the code </html> As you can see &#8226 occures in the code. I wrote a script...

Part and Inventory Search

Back
Top