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

    VI Decryption

    Hi, If an encryption is done, by mistake, using the :X command in Vi, and the encryption key is unknown, is there any way of recovering the file? Thanks in advance for any replies.
  2. ryancomps

    How to get rid of link identifier.

    This may be a question with a simple answer but I don't know how to do it. Using a style sheet entry I want to get rid of the link symbol (line under a link) that comes with the <a href=&quot;&quot;> tag. Thank you in advance for any replies. Ryan
  3. ryancomps

    substitute tabs

    I don't know if this is possible but I hope someone can help me. I have a file read into an array. I want to replace every occurance of a tab (\t) with a space. Is there a pattern that represents a tab? foreach $line (@program) { $line =~ s/TAB-PATTERN/ /g; } Thanks in advance Ryan
  4. ryancomps

    Printscreen on Unix

    Is there anyway of using print screen on a Unix operating system like you do in Windows? Any help appreciated, Ryan
  5. ryancomps

    request URI Question

    Quick question and should be easy to answer. Suppose I am calling a cgi script (e.g. test.cgi) using the GET method. I want to pass it a string and an array $string = &quot;hello&quot;; @names = (&quot;mike&quot;,&quot;fred&quot;); I know to send the string I use test.cgi?string=$string...
  6. ryancomps

    perl/tk mainwindow position

    When I open a new mainwindow in perl/tk the position of this new window is randomly selected which doesnt look very professional, especially if its a prompt like &quot;Do you want to save?&quot;. Is there an option to specify the screen location of the window (Preferably in the middle of the...
  7. ryancomps

    javas Runtime.exec command

    I am calling a perl script from within a Java program using : Runtime.getRuntime().exec(&quot;<perl script>&quot;); The perl script is in turn calls a Java program (which works fine from command line). The problem is the perl script will run but it wont execute the java command in it? Can...

Part and Inventory Search

Back
Top