I am trying to load a .tee file from a URL, if I put the URL in a string like this:
TChart1.Import.LoadFromURL("http://www.steema.com/demo.tee")
It works fine but if I put in variable like this:
TChart1.Import.LoadFromURL("http://www.steema.com/" & TeeFileName & ".tee")
It wont load. Cant I load a tee file this?
Geff
LoadfromURL
Which TeeChart Pro version are you using ?
I've just test it here using the TeeChart Pro v5.06 and avobe and works fine using the following code :
Josep Lluis Jorge
http://support.steema.com
I've just test it here using the TeeChart Pro v5.06 and avobe and works fine using the following code :
Code: Select all
Private Sub Command1_Click()
TeeFileName = "demo"
TChart1.Import.LoadFromURL ("http://www.steema.com/" & TeeFileName & ".tee")
End Sub
http://support.steema.com
I've test it here and the same code works as expected here using the latest TeeChart Pro v6.04
Josep Lluis Jorge
http://support.steema.com
Josep Lluis Jorge
http://support.steema.com