Hi
I am developing my first MS Light Switch application and I need help configuring a GUID! When assigning an employee to a PAF I want a unique PAF ID to automatically generate when creating tje paf for user... please help.
Thanks
Kevin
Namespace LightSwitchApplication
Public Class PAF
Dim rowguid As Object
Private Sub PafNo_Compute(ByRef result As Integer)
' Set result to the desired field value
End Sub
Private Sub PafNo_Validate(results As EntityValidationResultsBuilder)
' results.AddPropertyError("<Error-Message>")
End Sub
Public Shared Function NewGuid() As Guid
'Usage
Dim returnValue As Guid
returnValue = Guid.NewGuid()
End Function
End Class
End Namespace