(btw Sorry for making new thread, couldnt find any material which was specific enough)

scenrio

Ive made a questionaire in vb6 and once complleted the results get sent to a access database located in a network drive

example (from scenrio)

dim db as database

db = opendatabase("n:\........\database.mdb")

What i want to achieve instead

well instead of it being in a drive on the network , is it possible to store it on the internet and just specify its url to open it. Something like

db = opendatabase("http//:....../database.mdb")


id imagine this wouldnt be the way to go about it but how could i do it?

ty