Advertisement
7_2009-2012 Windows API Call/ Explanation #219909

A_SinusScrollerX_DEMO

It Scrolls any font+Size over a free background-picture from right to left with or without any Sinus-Effects.And all totally smooth without any flackering or something.User can add own graphicroutines in it.

AI

AI Summary: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Source Code
original-source
Upload
'--------Begin Function----
Function fnSort(aSort, intAsc)
 Dim intTempStore
 Dim i, j 
 For i = 0 To UBound(aSort) - 1
 For j = i To UBound(aSort)
 'Sort Ascending
 If intAsc = 1 Then
 If aSort(i) > aSort(j) Then
  intTempStore = aSort(i)
  aSort(i) = aSort(j)
  aSort(j) = intTempStore
 End If 'i > j
 'Sort Descending
 Else
 If aSort(i) < aSort(j) Then
  intTempStore = aSort(i)
  aSort(i) = aSort(j)
  aSort(j) = intTempStore
 End If 'i < j
 End If 'intAsc = 1
 Next 'j
 Next 'i
 fnSort = aSort
End Function 'fnSort
'-------------------------
Dim aUnSort(3), aSorted
aUnSort(0) = 4
aUnSort(1) = 2
aUnSort(2) = 6
aUnSort(3) = 20
'call the function
'second argument:
' * ascending sorted = 1
' * descending sorting = any other character
aSorted = fnSort(aUnSort, 1)
Erase aUnSort

Upload
Original Comments (3)
Recovered from Wayback Machine