Puede definir fórmulas o funciones según las reglas VB .NET: Para obtener más información, consulte http://msdn.microsoft.com/vbasic.
Use el control de Fórmula para sumar, restar, multiplicar o dividir valores.
Algunas fórmulas de ejemplo:
result="The FID is " & {FID}& "."
result = Me.ConnectionTools.LngValue("select count(*) from <table> where column=" & LngValue("parent_fid"))
if Me.GeometryAvailable then result="Geometry available" Me.ForeColor="" Me.BackColor="" else result="No Geometry available" Me.ForeColor="white" 'These are HTML colors ! Me.BackColor="red" end if
La variable temporal c se usa para evitar llamar dos veces a la función:
dim c as integer c = me.DocumentCount if c=0 then result="No Documents available" Me.BackColor="" else result=c & " Document(s) available" Me.BackColor="red" end if
Result = {HEIGHT} + 20 Result = {HEIGHT} * 20 Result = {HEIGHT} / 20 Result = {HEIGHT} – 20
Result = {HEIGHT_1} + {HEIGHT_2} *10 Result = {attribute name1} * {attribute name3} *10
result = {TEXT1} & {TEXT2}
Añadir un prefijo y un sufijo
result = "Approx. " & {AREA} & "m2"
result = "MH " & {FID}
Dim d As Date Dim t As System.TimeSpan d = Me.Value("maintenance_next_date") t = d.Subtract(now) result=t.Days