Search:

Type: Posts; User: ydandurkar

Search: Search took 0.24 seconds.

  1. Re: how to use value of a String variable "Cel1" as a variable name like Cel1.SetText("abc")

    in visual fox pro this is a pass.
    x = 8
    a = "x"
    ? a ans x
    ? x ans 8
    ? &a ans 8

    becomes a very convenient programing device. anything in java which can help similar...
  2. Re: how to use value of a String variable "Cel1" as a variable name like Cel1.SetText("abc")

    Thanks copeg for your suggestion and very quick reply while I was still struggling.
    I created an array of text fields TextField CellArr[] = new TextField[6];
    I initialized them CellArr[1] = cell1;...
  3. how to use value of a String variable "Cel1" as a variable name like Cel1.SetText("abc")

    hello. This must be pretty elementary. I have a JFrame jf and JPanel jp on it. jp has five TextFields named cel1, cel2.. cel5. I wish to construct a String Cel + for loop index and run a for loop to...
Results 1 to 3 of 3