Would it be possible to have image from url added ?
equivalent to java
public static Image ImageFromURL(String url){
return new Image(url);
}
I have coded it in the #if java block, but it's a pain to have to use runmethod(...) etc to access it.
So it could become
Dim img As Image
img = ImageFromURL(theURL)
As I am currently trying
img.Initialize("https://...","")
but this changes the slashes and you get a file not found error when the address is in a string variable.