safirlaila
Programmer
Hi,
is there any way to import picures from jpg-files and into a Paradox table?
With Regards
Laila
is there any way to import picures from jpg-files and into a Paradox table?
With Regards
Laila
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var
tc tcursor
gr graphic
endvar
if not tc.open(":alias:tablename.db") then
errorshow()
return
endif
tc.edit()
if gr.readfromfile("drive:\\fullpath\\image.jpg") then
tc.insertrecord()
tc."graphic_fieldname"=gr
try
tc.unlockrecord()
onfail
errorshow()
tc.canceledit()
endtry
endif
tc.endedit()
tc.close()