Need Help Urgently

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • priyanka1915
    New Member
    • Nov 2007
    • 32

    Need Help Urgently

    Situation is : i got output like open=4324= volumn=435.456, change=56, etc... now i want to enter this value in table and this value updates after 3 sec and it should also update in dat table
  • priyanka1915
    New Member
    • Nov 2007
    • 32

    #2
    Suppose

    Last price=500042 volume=908 change=25134 perc change=25347
    Last price=500043 volume=908 change=2435 perc change=2547
    Last price=500044 volume=908 change=256 perc change=25347
    Last price=500045 volume=908 change=251 perc change=2257
    Last price=500046 volume=908 change=251 perc change=23257

    n So on.......

    now i want values like 500042 908 25134 n so on
    n it in table format n this values are change after 3 sec so now i want to create the application like this value strore in table and update automatically

    Comment

    • QVeen72
      Recognized Expert Top Contributor
      • Oct 2006
      • 1445

      #3
      Hi,

      use "Split" Function To Get the Datas:

      Dim TArr
      Dim TempStr As String
      TempStr ="Last price=500042 volume=908 change=25134 perc change=25347"

      TArr = Split(TempStr, "=")

      After Split Loop through the Array Items and Get the Value..

      Or Else Pase the Whole String, if words like "Last Price" "change" are Fixed..


      Regards
      Veena

      Comment

      Working...