Updated: November 2018 |
PLEASE READ CAREFULLY
BEFORE CLICKING ON YOUR SELECTION!!!!
PLEASE ensure that you enter your
email address and postal address correctly when making your purchase !
It should be noted that AOL routinely
delete emails which contain download links so contact us if you have
not
received your key within a few hours. If we are awake it will normally be sent
immediately. Also Hotmail
will put us in your spam filter!
Full VC10 package including Standard
VC10 with 18 liveries including RAF C1K and Super VC10 with 5 liveries
including
the K3.
The Download and CD versions are identical as
is the retail boxed product available in the shops - except buying from us will
get you the latest version.
Download size is 52 Mb.
DOWNLOAD VERSION
Vickers VC10 and Super VC10 simulation add-on for Microsoft Flight Simulator 2002, 2004 and FSX |
£19.95 UK Sterling |
I'm sorry that we no longer sell the CD version of this product. Please contact us by email if you require further assistance.
Thanks for your interest.
David Chester
© 2003-2018 David Chester <% ' Graphical Hit Counter Example By www.PowerASP.com ' Declare variables Dim ObjCounterFile, ReadCounterFile, WriteCounterFile Dim CounterFile Dim CounterHits Dim FixedDigitCount Dim DigitCount Dim DigitCountLength Dim DigitZerosToAdd Dim DigitZeroCount Dim ShowDigits Dim DigitPath ' (FixedDigitCount) will add zeros to the front of your count ' if the count is less then the (FixedDigitCount) ' just like "frontpage" counters let you do FixedDigitCount = 6 DigitPath = "http://www.vc10.com/pub/digits/smooth" On Error Resume Next Set ObjCounterFile = Server.CreateObject("Scripting.FileSystemObject") CounterFile = "d:\web\vc10.com\www\pub\buyvc10.txt" Set ReadCounterFile= ObjCounterFile.OpenTextFile (CounterFile, 1, True) If Not ReadCounterFile.AtEndOfStream Then CounterHits = Trim(ReadCounterFile.ReadLine) If CounterHits = "" Then CounterHits = 0 Else CounterHits = 0 End If ReadCounterFile.Close Set ReadCounterFile = Nothing CounterHits = CounterHits + 1 Set WriteCounterFile= ObjCounterFile.CreateTextFile (CounterFile, True) WriteCounterFile.WriteLine(CounterHits) WriteCounterFile.Close Set WriteCounterFile = Nothing Set ObjCounterFile = Nothing DigitCountLength = Len(CounterHits) If DigitCountLength < FixedDigitCount Then DigitZerosToAdd= FixedDigitCount - DigitCountLength DigitZeroCount = 1 For DigitZeroCount = DigitZeroCount to DigitZerosToAdd ShowDigits = ShowDigits & "" Next End If DigitCount = 1 For DigitCount = DigitCount to DigitCountLength ShowDigits = ShowDigits & "" Next %>