Look for Example Spread 6.0 from FarPoint

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Christina Feichter

    Look for Example Spread 6.0 from FarPoint

    Hi

    I work in VB6 with Spread 6.0 from FarPoint

    can anybody show me an Example or any Exaples (C#) like this.

    VB6

    Dim x, y as Integer

    GetText(1, 1, x)

    y = x * 2

    thanks Chr.
  • Frane Roje

    #2
    Re: Look for Example Spread 6.0 from FarPoint

    [color=blue]
    > Dim x, y as Integer[/color]
    int x,y;
    [color=blue]
    > y = x * 2[/color]
    y=x*2;


    HTH
    --

    ---------------------------
    Time to get it done!

    Remove (d*elete*) to reply


    Comment

    • Christina Feichter

      #3
      Re: Look for Example Spread 6.0 from FarPoint

      Frane Roje wrote:[color=blue][color=green]
      >>Dim x, y as Integer[/color]
      >
      > int x,y;
      >
      >[color=green]
      >>y = x * 2[/color]
      >
      > y=x*2;
      >
      >
      > HTH[/color]


      Sorry,

      GetText(1, 1, x) is the Cell "A1" in the Spred and the Digit is stored
      in int x.
      I can't get the Digit in "A1" !!
      Chr.

      Comment

      Working...