Error In BO Designer Code


Author
Message
Larry Caylor
Larry Caylor
StrataFrame VIP (1.2K reputation)StrataFrame VIP (1.2K reputation)StrataFrame VIP (1.2K reputation)StrataFrame VIP (1.2K reputation)StrataFrame VIP (1.2K reputation)StrataFrame VIP (1.2K reputation)StrataFrame VIP (1.2K reputation)StrataFrame VIP (1.2K reputation)StrataFrame VIP (1.2K reputation)
Group: Awaiting Activation
Posts: 592, Visits: 3.7K

When customizing a field in BO mapper to use “Return Alternate on Null / Set Null on Alternate” either by val or ref, the closing ‘EndIF’ is missing in the designer code generated for the Set portion of the public property.

 

Example:

 

BusinessFieldDisplayInEditor(), _

     Description("Default action taken by user"), _

     DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)> _

    Public Property [ap_DefaultAddedTask]() As System.Int32

        Get

            Dim loValue As Object

            loValue = Me.CurrentRow.Item("ap_DefaultAddedTask")

            If loValue Is DBNull.Value Then

                Return 0

            Else

                Return CType(loValue, System.Int32)

            End If

        End Get

        Set(ByVal value As System.Int32)

            If value <> 0 Then

                Me.CurrentRow.Item("ap_DefaultAddedTask") = value

            Else

  à            Me.CurrentRow.Item("ap_DefaultAddedTask") = DBNull.Value

        End Set

    End Property

 

-Larry

Randy Jean
Randy Jean
StrataFrame User (167 reputation)StrataFrame User (167 reputation)StrataFrame User (167 reputation)StrataFrame User (167 reputation)StrataFrame User (167 reputation)StrataFrame User (167 reputation)StrataFrame User (167 reputation)StrataFrame User (167 reputation)StrataFrame User (167 reputation)
Group: StrataFrame Users
Posts: 105, Visits: 641
Bump, FYI this bug still exists in latest version I have (1.6.1)
GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Similar Topics

Reading This Topic

Login

Explore
Messages
Mentions
Search