Results 1 to 9 of 9

Thread: With keyword [can't be resolved]

Threaded View

  1. #1

    Thread Starter
    Member filburt1's Avatar
    Join Date
    Aug 1999
    Posts
    6,935

    With keyword [can't be resolved]

    VB got at least one thing right with the With keyword. You could use it like this:
    VB Code:
    1. ' Before
    2. Combo1.AddItem "stuff"
    3. Combo1.AddItem "things"
    4. Combo1.AddItem "fun thingies"
    5.  
    6. ' After
    7. With Combo1
    8.     .AddItem "stuff"
    9.     .AddItem "things"
    10.     .AddItem "fun thingies"
    11. End With
    Is there a similar keyword in Java? I'm adding stuff to a vector repeatedly but seeing "slogans.addElement" millions of times looks better like ".addElement."
    Last edited by filburt1; Dec 26th, 2001 at 07:56 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width