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
Need Help Urgently
Collapse
X
-
Tags: None
-
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 -
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
VeenaComment
Comment