K
KLEBESTIFT
I currently have a database that loads pictures from a network location;
sub Form_current
image1.picture = "\\server\share\picture.png"
end sub
as this enables me (or any user) to open the database from any computer on
the network.
Is it possible to load pictures from a local intranet http address instead?
The pictures I want are accessed in a browser by typing the following:
http://address/directory/file.pl?display=chart;number=12345
This would make updating the database easier as I would not have to open and
resave every picture to the network share.
sub Form_current
image1.picture = "\\server\share\picture.png"
end sub
as this enables me (or any user) to open the database from any computer on
the network.
Is it possible to load pictures from a local intranet http address instead?
The pictures I want are accessed in a browser by typing the following:
http://address/directory/file.pl?display=chart;number=12345
This would make updating the database easier as I would not have to open and
resave every picture to the network share.