I needed this to play a bit with the values to check the postive percent rating of my ebay profile. its nothing special but maybe it may be usefull for someone. so i post it here... have fun ^^
Code: Select all
; -----------------------------------------------------------------------
;
; PB v4.0+ - Caclulating your ebay evalations profile v0.001
;
; Code by va!n aka Thorsten Will / 14-June-2006
;
; -----------------------------------------------------------------------
PositiveComments = 103 ; Enter here the number of pos. comments
NegativeComments = 2 ; Enter here the number of negative comments
ResultPoints.l = PositiveComments - NegativeComments
ResultPercent.f = PositiveComments / (PositiveComments + NegativeComments)
MessageRequester("Your ebay Evaluations:" , "Evaluation Profile: " + Str(ResultPoints.l) + Chr(10)+Chr(13) + "Positive Evaluations: " + StrF(ResultPercent.f*100,1) + "%", 0)
End
; -----------------------------------------------------------------------