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 IamaSherpa 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. TomArrow

    jsp session

    thank you for you help, but this problem still isn't solved...let me show you a bit of test code that demonstrates the problem Vector a = new Vector(); Vector b = new Vector(); Vector c = new Vector(); //grab my object from session and isolate personGroup DBObject dbo =...
  2. TomArrow

    URGENT help me java dates

    use java.util.Calendar play around with the DAY_OF_WEEK and DAY_OF_MONTH fields...must be a solution in there somewhere
  3. TomArrow

    vector cloning

    i have a vector holding objects. i want to clone it. if the vector is called v can i say: Vector newVector = (Vector)v.clone(); ? will this be a complete new copy without any reference to the old one? if i make changes to v do i see those changes in newVector? thankyou
  4. TomArrow

    jsp session

    okay...think i understand why that does work, but here's what i've done to "fix" it...which ofcourse still doesn't work the object i want to copy to the session is a vector. i tried using the vector.clone() method, but without any luck...never really used it, so must be doin it...
  5. TomArrow

    jsp session

    i'm trying to build an undo method for an html form submission. the form is submitted and prior to the new data being added to an object, i copy that object to the session. then, i make the changes. when i call the undo method and retrieve that unchanged object from the session, it comes out...

Part and Inventory Search

Back
Top