Question:
What’s wrong with this code :
if file1.filename=”*.bmp” then picture1.LoadPicture(file1.filename)
Answer:
I’m guessing you’re trying to check the selected filename to see if it ends in .BMP, right? The problem is that VB doesn’t do pattern matching like you are trying. What you should do instead is something like this:
If Right$(UCase$(file1.filename), 4) = “.BMP” Then Picture1.LoadPicture(file1.filename)
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.























