Search found 11 matches

by westconn
Tuesday 26th June 2018 10:11am
Forum: General
Topic: Graph details
Replies: 9
Views: 12972

Re: Graph details

Two of us have worked on the colour problem
thank you both, it works for me too, though why did your sample work correctly without?

also thanks to stevedee

is there any way to have vertical text?
by westconn
Friday 22nd June 2018 12:10pm
Forum: General
Topic: Graph details
Replies: 9
Views: 12972

Re: Graph details

I don't quite understand what the problem is here as it seems to work OK for me. i am not sure why mine do not match, as i see yours are perfect, i will post a screen shot Screenshot from 2018-06-22 21-58-25.png also i note that the screenshot above, the uploads legend looks similar to the data col...
by westconn
Friday 22nd June 2018 11:48am
Forum: General
Topic: Graph details
Replies: 9
Views: 12972

Re: Graph details

First you need to note that the Chart command has a comment of "This component is not stable yet" that was about 5 years ago, it looks like the programmer has lost interest in this here is my code, obviously some stuff is nothing to do with the graph, i will probably move the graphing int...
by westconn
Wednesday 20th June 2018 11:00am
Forum: General
Topic: Graph details
Replies: 9
Views: 12972

Graph details

here is my new problem, i have created a graph for my data, i am reasonably happy with the result for the data, but i would like to fix some labels and the legend, here is the code i have to date hChart = New Chart hChart.YAxe.ShowIntervalLines = False hchart.ShowLabels = True hChart.Legend.Position...
by westconn
Thursday 14th June 2018 12:13pm
Forum: General
Topic: download data from internet
Replies: 11
Views: 15388

Re: download data from internet

i have at last got this working in gambas................ hooray

now to start on the next unknowns
parsing the data
graphing the data
creating a trayicon

such a lot for a slow learner...........

thank you all for replies and assistance
by westconn
Wednesday 23rd May 2018 9:30pm
Forum: General
Topic: download data from internet
Replies: 11
Views: 15388

Re: download data from internet

if this is your website? not my web site, i am trying to get the usage data from my isp, so i can display as graph, afaik they have no api or other to get the data there is an option on the url xml=yes, but that only returns a summary of the data, not the detail and still requires to login first i ...
by westconn
Wednesday 23rd May 2018 9:54am
Forum: General
Topic: download data from internet
Replies: 11
Views: 15388

Re: download data from internet

client.URL = myurl client.async = False data = "login_username=myusername&login_password=mypass&submit=Login" z[1] = "content - length: " & Str(Len(data)) ' client.get ' this works client.post("application/x-www-form-urlencoded", data, z) If client.Status <...
by westconn
Wednesday 23rd May 2018 8:39am
Forum: General
Topic: download data from internet
Replies: 11
Views: 15388

Re: download data from internet

@cogier, so easy with pictures lol, i did not think of the farm being built into gambas pogram

@jornmo, yes a login form on the webpage, any examples anywhere on using httpform, the manual did not seem to help me much
by westconn
Sunday 20th May 2018 12:19pm
Forum: General
Topic: download data from internet
Replies: 11
Views: 15388

Re: download data from internet

(I need to get the downloads up!
so far i have been unable to find any link to the farm, the search on gambas one does not seem to be working, the gambasfarm.org does not seem to have the samples
do you have a direct link to it?

also thanks for your reply and samples
by westconn
Sunday 20th May 2018 11:04am
Forum: General
Topic: download data from internet
Replies: 11
Views: 15388

Re: download data from internet

i have no problem using wget or curl from a terminal, so i could shell out to either my problem is that i need to login, then navigate to the correct url, unless there is some way to shortcut that, if i just try to go directly to the download i am redirected to the login page can i pass parameters t...