Kostas_Bar
Member
Hello Everyone!
I have a LogIn page with a LogIn button.
When the button is pressed, an http job gets initialized and after that I use a wait for statement until the job is completed, like so:
I want to show the app logo while waiting for the job to be completed. Is this possible?
I want to use a while loop like so:
Also if there is a standard way to make a .png lighter and darker, please let me know!
Thanks in advance.
I have a LogIn page with a LogIn button.
When the button is pressed, an http job gets initialized and after that I use a wait for statement until the job is completed, like so:
httpjob:
j.Initialize("", Me)
j.PostString(link, m.As(JSON).ToCompactString)
j.GetRequest.SetContentType("application/json")
Wait For (j) JobDone (j As HttpJob)
I want to show the app logo while waiting for the job to be completed. Is this possible?
I want to use a while loop like so:
1. while job not completed
2. show logo and make it darker and lighter
3. end while
Also if there is a standard way to make a .png lighter and darker, please let me know!
Thanks in advance.