I have written some code there are 27 different functions that execute like this..
ElseIf websiteID = 15 Then
parserTravelPost(hotelURL, hotelID, websiteID)
nextPageLink = ""
ElseIf websiteID = 16 Then
parserTripAdviosr(hotelURL, hotelID, websiteID)
nextPageLink = ""
ElseIf websiteID = 17 Then
parserTripTake(hotelURL, hotelID, websiteID)
nextPageLink = ""
ElseIf websiteID = 18 Then ........
After every function i want a literal or any other way to tell the function is finished... example after the first function finish , the literal should shows example finished now starting function 2 ...
Any help/tips/code?
Thank you