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

    FileToStr and StrToFile

    Hi All, I'm wandering this odd behaviour of VFP on how to solve this problem of mine. When the code below runs on the VFP IDE environment it works fine and generates an output of csv file. When the app was an exe file already, it hangs on the code of FiletoSr and StrToFile, it doesn't...
  2. viclap

    Loop and process csv files stored in an array list

    Hi All, I'm very new in python and trying to experiment on learning to process csv files and its contents. My main problem is that, it runs without an error but it only execute once meaning it process only one csv file containing in an array list. Upon checking the directory where the csv...
  3. viclap

    sed to divide a dec number by 10

    Hi to all, I'm new to sed and would like to know what would be the correct syntax on how to divide the a decimal number by 10 (2nd and 4th column) then the result would be on another file. Sample Data: John, 123 ,xxx, 100 David, 223, yyy, 145 Smith, 178, ccc , 240...
  4. viclap

    delete character in nth position

    Hi to all, i have this kind of data: 60 , 70 , 90 , 27,345 , 10 30 , 40 , 100 , 38,900 , 12 41 , 23 , 98 , 21,200 , 09 I've wanted to remove the comma in 4th position to be able to come up with below output using perl: 60 , 70 , 90 , 27345 , 10 30 , 40 , 100 , 38900...
  5. viclap

    extract 3rd,4th and 5th element

    Hi All! I trying to execute this perl script to extract a particular field in a text file, luckily it works. But, right now I would to extract 3 more fields in the text file but couldnt get right syntax on how to do it. command is: perl -pe '$_ = (split(/[ \n]/)) [0] . "\n"' TestDoc.txt...
  6. viclap

    Running find command in Solaris using Runtime.exec

    I'm very new in java and trying to figure out why i'm getting a standard error output of "/usr/bin/find: incomplete statement" --->"find /export/home -type f -mtime +30 -exec rm {} \;" } using java program but executing manually the "find" script command using CLI on solaris Unix os it works...
  7. viclap

    Deleting Files using date option

    Hi to all, I'm having a hard time figuring out on how to delete files (remove) from a directory wherein the scope is from current date to previous dates (30 days). The script will be used for file maintenance of log files which are not needed anymore. Any help will be highly appreciated...
  8. viclap

    Not getting the exact value

    Hi To all, I'm trying to extract the character one by one from a user input and check it if a digit or letter. If digit is found, store the value into a variable. But the problem is i am not getting the exact value (0-9)but the decimal value of the digit. Any help would be greatly...
  9. viclap

    Can't connect to derby database

    Hi to All, I'm new to Java and having an error in my database application using embedded derby database. I'm using netbeans 5 as my IDE. java.lang.ClassNotFoundException:org.apache.derby.jdbc.EmbeddedDriver java.lang.NullPointerException Code: private void ConnectToDatabase () {...
  10. viclap

    Constructor Parameter Problem

    import javax.swing.*; import java.awt.event.*; import java.awt.*; class SplashWindow2 extends JWindow { public SplashWindow2(String filename, Frame f) public SplashWindow2() { super(f); //Frame f = new Frame(); JLabel l = new JLabel(new...
  11. viclap

    upload a file with a description

    Hi to all, I just want a simple code on how to upload a file where I can attached a description of the file on it after it has been inputted by a user on a textbox before uploading of file (upload button of a page). Can someone help me on this? Thanking all of you in advance.
  12. viclap

    read contents of a file and put it as a tooltip

    Hi to all, i'm looking for sample php code wherein when a cursor points to an image or link on a web page a popup window or tooltip will appear on the screen. The description that will appear as popup window or tooltip will be read on a file. Or any ideas? Thanks so much in advance.
  13. viclap

    Available Unix Command

    Dear All, I'm pretty new in Unix, I wanted to know any available Unix command that will give me only the portion of a textfile. ex. ABCDEFGHI ABCDEFGHI TEKTIPS XXCCCCC VVVVVVV DDDDDDD XXXXXXX The command will display only the text...
  14. viclap

    Configure NT server to act as gateway to another domain

    A windows NT server PC was installed in our existing LAN with 2 NIC's and will act as a gateway PC to another domain network. One NIC was configured to act as part of a LAN and the other card will provide connectivity to another domain. I don't know where to start and basically configuring it as...
  15. viclap

    Exising LAN to be connected to WAN

    Hi to all! We have SCo Unix version 3.2 in our office and I would like to connect this UNIX box in our WAN. There are two ethernet controllers present in the unix machine upon hardware verification, now we wish to connect this machine in our existing domain network (windows NT). How do I...
  16. viclap

    can't execute rexec

    Hi to all, i'm trying to connect to a Unix machine using an account created by our administrator. when attempting to logon using a third party utility and remote execute a command in unix an error is beng returned to me "login is incorrect". But when this account is being used in a...
  17. viclap

    Sending login and password in Unix thru Telnet

    Hi! Can somebody tell on how to send login and password info in SCOor IBM AIX Unix thru windows telnet or customized client telnet automatically? I've tried this thing: WinsockClient.SendData "guest" & vbcrlf == login data WinsockClient.SendData "password" & vbcrlf...
  18. viclap

    Deleting temp files

    Hi to all, any example on how to delete files in Java? Let say tmp files stored in windows\temp directory.... thanks a lot.
  19. viclap

    Error running an Applet in a Browser

    Hi to ALl, I made a simple Java Appletusing IBM visual age and seems to work fine using the applet viewer. But when trying to export it to view in a browser (netscape or IE) i got this error message " Class Login already loaded" (IE) or "Applet Login error...
  20. viclap

    remote control software

    hi everyone, does anybody know where can i find any remote control software for sco unix like pcanywhere, carbon copy or close-up? any shareware or freeware can also be accepted.

Part and Inventory Search

Back
Top