I have tought myself VB.NET over the last several years. I'd say I'm pretty decent at it, not super advanced but pretty good for someone who has never had a lesson.
Now here's the thing, I'm going to be wanting to create a variable that is an array. This variable needs to have the same number of indexes (not sure if that's the right word or not) as the number of videos imported into my app. Now, the user needs to be able to delete and add videos in real time, so the number of indexes needs to change dynamically without changing the contents.
Now, for the next part. I'm almost sure this is possible, but if it's not I could probably work around it somehow.
The same variable I mentioned above needs to somehow have sub-variables (again not sure what to call it) so that I can assign different properties to each video. It would be something like:
video(index).profile = "iPhone"
video(index).width = 640
video(index).height = 360
video(index).fps = 23.976
etc
how would I do something like this?
Thanks in advance.
Tags: