Is there any way to load an image file directly off of a file share or must it be copied local first?
Below are the various things I tried to "Cheat" the system and the err reported. I had high hopes for the third one ("//MyServer/MyDir/Images/740-20426-00.jpg") as this is the spec passed to copy the file local, but no matter how many '////' I put on the front of it it stripped it down to one.
Thanks for your input.
Below are the various things I tried to "Cheat" the system and the err reported. I had high hopes for the third one ("//MyServer/MyDir/Images/740-20426-00.jpg") as this is the spec passed to copy the file local, but no matter how many '////' I put on the front of it it stripped it down to one.
B4X:
B = LoadBitmap("\\MyServer\MyDir\Images", "740-20426-00.jpg")
java.io.FileNotFoundException: \\MyServer\MyDir\Images\/740-20426-00.jpg (No such file or directory)
B = LoadBitmap("", "\\MyServer\MyDir\SK_Images\740-20426-00.jpg")
java.io.FileNotFoundException: \\MyServer\MyDir\Images\740-20426-00.jpg (No such file or directory)
B = LoadBitmap("", "//MyServer/MyDir/Images/740-20426-00.jpg")
java.io.FileNotFoundException: /MyServer/MyDir/Images/740-20426-00.jpg (No such file or directory)
Thanks for your input.
Last edited: