I have dragged a text file into the TextCopyFiles space. How do I get the contents of that resource directly into an IOS Textarea?
I seem to know everything about ‘f’ except its contents
Dim f As FolderItem
f = SpecialFolder.GetResource(“AboutSC.txt”)
if f <> nil then
TextArea1.Text = ???
else
TextArea1.Text = “File Missing”
end if