`neue UpdatePriceTag Funktion
Funktion UpdatePriceTag (cControlName, cPartID, cAsterisk)
cPrefix = cAsterisk + Chr (13) + „$“
Anruf RemovePriceTag (cControlName)
Wenn recht (Kontrollen (cControlName). Untertitel, 10) = „(eingeschlossen)“ dann
Kontrollen (cControlName). Untertitel = verlassen (Kontrollen (cControlName). Untertitel, Len (Kontrollen (cControlName). Untertitel) - Len (Chr (13) + „(eingeschlossen) "))
Beenden wenn
rsPrice = CreateObject („ADODB.Recordset“) einstellen
rsPrice.Open „* von PartUnitSalePrices in dem imhpartid =“ u. App.AddQuotes (cPartID) u. „und imhpartrevisionid = „A“ Auftrag durch imhstartdate desc“, der Anschluss vorwählen, adOpenStatic, adLockBatchOptimistic, adCmdText
Wenn nicht rsPrice.EOF dann
Wenn cPartID = „ATRALINTAS“ dann
CPrice = CStr (rund (rsPrice.Fields („imhUnitSalePrice“). Wert, 2))
Cprice = CDbl (CPrice) *cLintPots
Cprice = CStr (CPrice)
CPrice = cPrefix + AddCents (CPrice, zutreffend)
Kontrollen (cControlName). Untertitel = Kontrollen (cControlName). Untertitel + CPrice
Sonst
CPrice = CStr (rund (rsPrice.Fields („imhUnitSalePrice“). Wert, 2))
CPrice = cPrefix + AddCents (CPrice, zutreffend)
Kontrollen (cControlName). Untertitel = Kontrollen (cControlName). Untertitel + CPrice
Beenden wenn
Beenden wenn
Funktion beenden
|