CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: love2mao

Page 1 of 7 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    1
    Views
    1,109

    Re: help needed in J2EE

    Find a weblogic manual. I have a good suggestion.
    http://www.amazon.com/gp/product/0764548549/002-0992841-5032842?v=glance&n=283155&v=glance

    You really need to spend some time getting yourself...
  2. Replies
    2
    Views
    1,433

    Re: Zip code encoder

    Why not post your solution for thanks to our viewing :)
  3. Re: GIF File Transfer from one server to another

    Transfer:= Download from A, and then upload onto B
    Delete:= I'm not sure how to delete something from a ftp server
    without human interaction
  4. newbie question on choosing J2EE component

    Gurus,
    I have this question about what component to choose to implment JMS
    service. The scenario is like below:
    1) This is component will use JMS to communicate with another component
    in J2EE...
  5. Replies
    1
    Views
    15,774

    Replace hex byte using "sed"

    I want to change byte "0x0d" into "0x0d0a" in a txt
    file. Can I implememnt this with "sed"?

    Thank you!
  6. Replies
    4
    Views
    1,143

    Re: ListBox dbl click event handler

    Brilliiiiiiiiiiant!!

    That's what I want. Thanks a million.
  7. Replies
    4
    Views
    1,143

    ListBox dbl click event handler

    I used

    <CODE
    Private Sub ChatList_DblClick()
    End Sub
    </CODE>
    But how can I find out which item is dbl-clicked? Is there any other form of
    event handling that could transfer back dbk-clicked...
  8. Replies
    2
    Views
    1,102

    Re: Compiling with ANT: newbie Q

    So happy to know this! Thank you a million!
  9. Replies
    2
    Views
    1,102

    Compiling with ANT: newbie Q

    I'm trying to find out how classpath in ANT works. In a simple build.xml,
    I intentionally species the classpath as "." only. I thought this could let ANT
    believe not to reference system classpath...
  10. Re: How can I maintain 2 Java develoment env on the same machine?

    Thank you frog :D

    BTW, I wonder if you installed 2 JRE, how do you determine which Java
    Plug-ins you use for your browser? The lastest installed one?
  11. How can I maintain 2 Java develoment env on the same machine?

    Hmm... I don't know how many developers have run into this issue.
    The reality is that I have to maintain an app developed under JDK1.1.8
    while at the same time I'm using JDK1.5 to develop my own...
  12. case tools: how to declare you have skill of using case tools

    Hi Gurus,
    I have this practical question. When I browsed job posts, I saw this
    requirement often, "case tools". Just wonder what they want you to know
    when they ask for skillset about "case...
  13. Replies
    3
    Views
    1,099

    Re: Execute JSP in Tomcat

    I dont think it a good idea. You're breaking the rule of Tomcat, and introducing security issue by doing this.
  14. Replies
    1
    Views
    677

    Any Suggestion about Eclipse?

    Hi Gurus,
    I'm using Eclipse to develop Java. Just wonder if there's a good manual/book for Eclipse beginners, especially UML design, GUI design? Thank you!
  15. Replies
    2
    Views
    999

    Re: Help:Java & Design Patterns

    Are you kidding us? I bet most people on this board don't read Spanish!
  16. Replies
    1
    Views
    877

    Re: Newbie question about ArgoUML

    I tried parsing a java file into diagram with ArgoUML. But it seems like that
    it doesn't support has-A realtion. am I wrong?
    Thank you.
  17. Replies
    5
    Views
    28,654

    Re: How to break long line?

    That's waht I want. thank you anyway!
  18. Replies
    5
    Views
    28,654

    Re: How to break long line?

    Thank you. But I'm looking for a concatenating character!
  19. Replies
    5
    Views
    28,654

    How to break long line?

    Hi Gurus,


    import java.io.*;
    class Link{
    public static void main(String[] arg){
    System.out.println("This is a
    long line break test!");
    }
    }
  20. Replies
    1
    Views
    877

    Newbie question about ArgoUML

    Hi Gurus,
    I'm looking for a UML java source file analysis tool. It should be able to import java source file, and export graphic uml diagram. Can ArogoUML do this? If not, is there a easy-to-use...
  21. Newbie question: What we need to compile?

    Just wonder what's the necessary set of files we need to compile?
    Besides "javac.exe" and referenced .jar files, do we need more? Thank you.
  22. What's the difference between LinkedList and ArrayList?

    ArrayList implements interface RandomAccess, while
    LinkedList not. I've thought LinkedList doesn't support random
    success. However, cgecking its methods, I found out that it DOES!


    set(int...
  23. Replies
    1
    Views
    1,140

    Re: InternetExplorer instance cannot get focus?

    I heard about that we could retrieve the handle of the browser, and apply some API with this handle. Is this plausible? Thank you.
  24. Replies
    1
    Views
    1,140

    InternetExplorer instance cannot get focus?

    I have this code snippet


    Private Sub SearchButton_Click()
    Set IEObj = New InternetExplorer
    IEObj.Visible = True
    IEObj.Navigate2 "www.yahoo.com"
    End Sub
  25. collection interfaces vs. collection abstract classes

    Hi Gurus,
    I'm studying java 1.4 collection classes. Just notice some confusing interfaces and abstract classes.

    java.util contains such interfaces as:

    Collection
    List
    Map
    Set
    Also, it...
Results 1 to 25 of 169
Page 1 of 7 1 2 3 4





Click Here to Expand Forum to Full Width

Featured