History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: COR-1107
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Major Major
Assignee: Unassigned
Reporter: Tetyana Loskutova
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
db4o Core

Transparent Persistence (manual implementation) does not work in VB.NET

Created: 18/Jan/08 01:04 PM   Updated: 18/Jan/08 01:17 PM
Component/s: None
Affects Version/s: None
Fix Version/s: 7.1.26

Time Tracking:
Not Specified

File Attachments: 1. Zip Archive TPExample.zip (2 kb)


Resolution Date: 18/Jan/08 01:17 PM
First Response Date: 18/Jan/08 01:17 PM
Labels:
Participants: Rodrigo B. de Oliveira and Tetyana Loskutova
Number of Attachments: 1
Number of Comments: 1


 Description  « Hide
See attached code. Changes in the list are not getting saved. The code was converted from c# and c# version worked fine

 All   Comments   Work Log   Change History      Sort Order: Ascending order - Click to sort in descending order
Rodrigo B. de Oliveira - 18/Jan/08 01:17 PM
SensorPanel.Activate implementation is always passing ActivationPurpose.Read. It should forward the argument to _activator instead:

       Public Sub Activate(ByVal purpose As ActivationPurpose) Implements IActivatable.Activate
            If _activator Is Nothing Then
                Return
            End If
            _activator.Activate(purpose)
        End Sub