Quote: "It's harshly slow down loading"
I'm assuming that you are mixing up your terminology here a bit and that you aren't downloading (off the net) anything but are 'loading' instead...
Quote: "Can be other way to download multiple .x faster using integer instead of its names???"
Yes but obviously you'll have to rename your .X files. Assuming that you've renamed them Mode1100.x, Model101.x, Model102.x ... Model150.x and placed them in a folder called 'Models' then you would use:
For f = 100 to 150
Load Object "Models\Model"+Str$(f)+".x",f
Next f
But, the loading speed using that way wouldn't be any faster than loading using any other filenames, though I guess you are referring to the time it takes to type all the Load Object lines, not the load speed itself.
TDK_Man