I have a folder on every users local pc with 190 small bmp. They are very small flags representing each country. I have a database with the name of each flag. When I load a client, I want the flag in that country to load. It currently works fine. I have an an image control on the form and the path stored. Then I concatinate the name from the database and make it visible.
path = "C:\Flags\" & FindFlag(var)
Me!flag.Visible = True
Me!flag.Picture = path
The only problem is that it is slow. Is there any way to speed it up? Would gif or jpg be faster?
Thanks
path = "C:\Flags\" & FindFlag(var)
Me!flag.Visible = True
Me!flag.Picture = path
The only problem is that it is slow. Is there any way to speed it up? Would gif or jpg be faster?
Thanks