<% ' FP_ASP ASP Automatically generated by a Frontpage Component. Do not Edit. On Error Resume Next Session("FP_OldCodePage") = Session.CodePage Session("FP_OldLCID") = Session.LCID Session.CodePage = 1252 Session.LCID = 1033 Err.Clear strErrorUrl = "" If Request.ServerVariables("REQUEST_METHOD") = "POST" Then If Request.Form("VTI-GROUP") = "0" Then Err.Clear Set fp_conn = Server.CreateObject("ADODB.Connection") FP_DumpError strErrorUrl, "Cannot create connection" Set fp_rs = Server.CreateObject("ADODB.Recordset") FP_DumpError strErrorUrl, "Cannot create record set" fp_conn.Open Application("_ConnectionString") FP_DumpError strErrorUrl, "Cannot open database" fp_rs.Open "", fp_conn, 1, 3, 2 ' adOpenKeySet, adLockOptimistic, adCmdTable FP_DumpError strErrorUrl, "Cannot open record set" fp_rs.AddNew FP_DumpError strErrorUrl, "Cannot add new record set to the database" Dim arFormFields0(0) Dim arFormDBFields0(0) Dim arFormValues0(0) FP_SaveFormFields fp_rs, arFormFields0, arFormDBFields0 fp_rs.Update FP_DumpError strErrorUrl, "Cannot update the database" fp_rs.Close fp_conn.Close FP_FormConfirmation "text/html; charset=windows-1252",_ "Form Confirmation",_ "Thank you for submitting the following information:",_ "bandhistory.htm",_ "Return to the form." End If End If Session.CodePage = Session("FP_OldCodePage") Session.LCID = Session("FP_OldLCID") %> Animation - Band History

Home Up Feedback Contents Search Disclaimer

Band History
Band History Band Members Compositions Music Samples

 

Animation History

The Formative Years

Animation was founded in 1980 by Eric J. Charles, Stephen S. Liller, Gregory D. Barninger and Allen Swope. The objective of the project was to create an original sound inspired by the members' diverse backgrounds in various musical styles and influences.

The quartet started out by writing and performing instrumental compositions motivated by their rock, jazz and classical roots. This resulted in a dynamic, fusion oriented progressive sound consisting of pulsating rhythms, melodic bass lines, outstanding guitar solos and skillful keyboard work. The virtuoso solos exchanged between keyboards and guitar where anchored by the solid yet varying rhythms of the bass and drums. This philosophy is evident in some of the early arrangements such as Ala Mode, Pulsar, Time Echoes, Mars Dance and Halfway There. The members' love of Science Fiction and Fantasy literature provided the imaginary scenery for these inventive and experimental arrangements. This direction was pursued by the band for the first three years of it's existence.

In 1983 the band expanded their musical possibilities with the addition of vocalist David Wilson. Many of the existing songs were re-written and re-arranged to include lyrics composed by Charles, Liller and Wilson. The introduction of a vocalist into the project also sparked a desire to compose new songs. The next year was spent adding more songs to the bands repertoire. The song list expanded to include approximately thirty-five to forty compositions. Some of the new arrangements featured lyrics reflecting the experiences and hopes of the composers. Kings and Thieves, Dream For Tomorrow and Atlantis are excellent examples of this era in the band's history. However, the element of Science Fiction and Fantasy remained intact.

The introduction of a vocalist into the project also gave the band the advantage of being more acceptable to local venues. Up until this point the band found it difficult to find places to perform. Most clubs in the area where against the idea of hiring an act that did not conform to the standard corporate cookie-cutter image.

Animation was able to find gigs at local clubs whose owners had a more visionary outlook and were willing to promote original artists. The band also received air time and was interviewed on local college radio stations.

Trouble In Paradise

A difference of opinions and political forces within the band were responsible for the exodus of drummer Gregory Barninger in 1985. The other four members attempted to continue the project with a new drummer.

Bassist Allen Swope left shortly thereafter. Vocalist David Wilson relocated to another state and the band eventually dissolved as the remaining members pursued other projects. During the next few years Barninger and Swope continued to work together with other musicians, Liller formed a band that played the local club circuit and Charles embarked on a solo venture.

Re-Inventing The Wheel

In 1986 Barninger, Charles and Swope reunited to rebuild Animation with a new vocalist. Swope left the band again due to outside circumstances and was replaced with a new bassist. After much consideration Charles and Barninger decided to rename the band Dragon Fire and play a more commercialized style of music along with some of the Animation "classics". Dragon Fire competed in a local Battle-Of-The-Bands competition where they advanced to the regional finals. Dragon Fire disbanded in 1986 when Charles moved to New York City to resume his solo career.

The Spirit Lives On

While working on his solo career in New York, Charles was joined by drummer Barninger for some studio sessions in the "Big Apple". Inevitably, the conversations between the former band mates returned to the subject of Animation. In the fall of 1987 Charles returned to the Lancaster area with the intention of revitalizing Animation with the assistance of the original drummer.

While searching the local music scene for a bassist, they discovered and recruited Lawrence Flowers. The trio soon discovered that they shared the same artistic and philosophical point of view. The relationship between the three musicians soon re-kindled and enhanced the original spirit of Animation.

A keyboardist was added to the lineup. Eric, Greg and Lawrence soon realized that the vision of Animation could be better presented as a trio. Working as a trio, the band was able to redefine and improve upon the original Animation arrangements. New ideas and songs took shape and number of new compositions, written by Charles during his hiatus as a solo performer, were added to the collected works of Animation.

During the subsequent years, Animation took advantage of the advancements in music technology. The members of the band began multi-tasking. Barninger enhanced his role in the band by adding electronic percussion elements. Both Charles and Flowers incorporated keyboards and other electronic instrumentation into their performances.

Animation continues it's evolutionary process. Past band members have reappeared briefly and current members of the trio have taken sabbaticals to work with other musicians. At times it seemed that Animation would not survive the trials and tribulations of the era. But the Spirit of Animation and the forces that gave birth to that Spirit over twenty years ago lives on. 

  ANIMATION - EXPERIENCE FUTURE ROCK 

Return to Animation main page

<% Function FP_SaveFormFields(rs, rgFormFields, rgDBFields) On Error Resume Next Err.Clear Dim i For i = 0 To UBound(rgFormFields) FP_SaveFormField rs, rgFormFields(i), rgDBFields(i) Next Err.Clear End Function Function FP_SaveFormField(rs, strField, strDBField) On Error Resume Next Err.Clear If (Request.Form(strField)) = "" And rs(strDBField).Type <> adBoolean Then Exit Function End If FP_SaveFieldToDB rs, Request.Form(strField), strDBField Err.Clear End Function Function FP_SaveFieldToDB(rs, strField, strDBField) On Error Resume Next Err.Clear Select Case rs(strDBField).Type Case adInteger Or adBigInt Or adUnsignedTinyInt Or adUnsignedSmallInt Or adUnsignedInt Or adUnsignedBigInt rs(strDBField) = CInt(strField) Case adSingle Or adDecimal Or adNumeric rs(strDBField) = CSng(strField) Case adDouble rs(strDBField) = CDbl(strField) Case adCurrency rs(strDBField) = CCur(strField) Case adBoolean rs(strDBField) = CBool(strField) Case adDate Or adDBDate Or adDBTime or adDBTimeStamp rs(strDBField) = CDate(strField) Case Else rs(strDBField) = CStr(strField) End Select strError = "Cannot save value """ & strField & """ to database field """ & strDBField & """" FP_DumpError strErrorUrl, strError Err.Clear End Function Function FP_EncodeOutput(str) FP_EncodeOutput = str FP_EncodeOutput = Replace(FP_EncodeOutput,"&","^^@^^") FP_EncodeOutput = Server.HTMLEncode(FP_EncodeOutput) FP_EncodeOutput = Replace(FP_EncodeOutput,"^^@^^","&") End Function Function FP_FormConfirmation(szCharset, szTitle, szmsg1, szUrl, szMsg2) On Error Resume Next Response.Write "" & vbCrLf Response.Write "" & vbCrLf Response.Write "" & vbCrLf Response.Write "" & szTitle & "" & vbCrLf Response.Write "" & vbCrLf Response.Write "" & vbCrLf Response.Write "

" & szTitle & "

" & vbCrLf Response.Write "

" & szMsg1 &"

" & vbCrLf Response.Write "

" & vbCrLf For Each item in Request.Form If item <> "VTI-GROUP" Then Response.Write "" & item & "" & ": " & FP_EncodeOutput(Request.Form(item)) & "
" & vbCrLf End If Next Response.Write "

" & vbCrLf Response.Write "

" & szMsg2 & "

" & vbCrLf Response.Write "" & vbCrLf Response.Write "" & vbCrLf Session.CodePage = Session("FP_OldCodePage") Session.LCID = Session("FP_OldLCID") Response.End End Function Function FP_FormConfirmationFromArrays(szCharset, szTitle, szmsg1, szUrl, szMsg2, rgDBFields, rgDBValues) On Error Resume Next Response.Write "" & vbCrLf Response.Write "" & vbCrLf Response.Write "" & vbCrLf Response.Write "" & szTitle & "" & vbCrLf Response.Write "" & vbCrLf Response.Write "" & vbCrLf Response.Write "

" & szTitle & "

" & vbCrLf Response.Write "

" & szMsg1 &"

" & vbCrLf Response.Write "

" & vbCrLf For j = 0 To UBound(rgDBFields) - 1 Response.Write "" & rgDBFields(j) & "" & ": " & FP_EncodeOutput(rgDBValues(j)) & "
" & vbCrLf Next Response.Write "

" & vbCrLf Response.Write "

" & szMsg2 & "

" & vbCrLf Response.Write "" & vbCrLf Response.Write "" & vbCrLf Session.CodePage = Session("FP_OldCodePage") Session.LCID = Session("FP_OldLCID") Response.End End Function Function FP_DumpError(strErrorUrl, strMsg) On Error Resume Next If Err.Number <> 0 Then fp_conn.Close Session.CodePage = Session("FP_OldCodePage") Session.LCID = Session("FP_OldLCID") If strErrorUrl <> "" Then Response.Redirect strErrorUrl Else Response.Write " " & strMsg & "

" Response.Write "Error Description: " & Err.Description & "

" Response.Write "Error Number: " & Err.Number & "

" Response.Write "Error Source: " & Err.Source & "

" Response.End End If End if End Function %>

Information Request Form

Select the items that apply, and then let us know how to contact you.

Send band literature
Send company literature
Have a representative contact me

Name
Title
Company
Address
E-mail
Phone

Home ] Up ]

Send mail to pcpartners@supernet.com with questions or comments about this web site.
Copyright © 2002 Animation  -  Last modified: July 31, 2002  -  Website design by PC Partners