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 Mike Lewis 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: *

  1. Mausolo

    user identificacion

    request.getRemoteUser() Myself solution
  2. Mausolo

    user identificacion

    I'm new in tomcat development. In my web application i used basic autentificacion. I want to identificate the user, but i don't know to do this. Help please. Thanks.
  3. Mausolo

    Java parser

    I need a parser for Java. I want to analyze a java source file syntacticaly and lexically. Thanks.
  4. Mausolo

    How to make .exe for java program

    Try with Janel, it is open source. http://janel.sourceforge.net/janel/index.html Look here thread269-435421
  5. Mausolo

    HTTP head

    I want to make a simple http server like this import java.net.*; import java.io.*; public class MyHttpServer { /** Creates a new instance of MyHttpServer */ public MyHttpServer() { } public void run() { try { int port = 10000...
  6. Mausolo

    How to Split Large Strings?

    Use StringBuffer and StreamTokenizer Bye
  7. Mausolo

    How can i hide a TabPage in a TabControl?

    Thanks, that's ok
  8. Mausolo

    How can i hide a TabPage in a TabControl?

    That's the question. I am trying with: .Hide() .Visible=false an other. Could anybody help me? Thanks.
  9. Mausolo

    Function add days

    I need a JavaScript function that add days to a date Parameters: Date() and number of days Return: The new Date()
  10. Mausolo

    Method name

    Can i get the name of current method in java program? Thanks
  11. Mausolo

    FTP in Java

    Have somebody a java program than connect to ftp server and downloads files Thanks.
  12. Mausolo

    Executing a java method from a C program

    How can i execute a java method (public) from a C program?
  13. Mausolo

    Executing a java method from C

    Hello all. I need to execute a java method (public) from a C program. How can i do this? Thanks.
  14. Mausolo

    Hexadecimal MOVE

    I don't explain very well I have 01 PIC X. As a input field with value: F9 in hex or '9' Then the value of x (ie 9) represents a hex value, than is 9 in decimal too. If i do MOVE X TO FIELD-COMP-1 I get the value 9 in FIELD-COMP-1...ok But if X = 'A' in hex is C1, How i do a move that...
  15. Mausolo

    Hexadecimal MOVE

    I have the next case 01 VAR-X PIC X. MOVE X'05' TO VAR-X With this sentence i do a hexadecimal MOVE to variable VAR-X I need to do this, but no constant value, i need something like this: MOVE X'VAR-Y TO VAR-X where VAR-Y not is: 01 VAR-Y PIC X VALUE X'05 VAR-Y is: 01 VAR-Y PIC X...

Part and Inventory Search

Back
Top