Bug | Stack Overflow Exception |
ID: 1423Status: Pending ReviewVersion: 1.14.6.2Report Date: July 20, 2019Product: DataView | |
Reporter | Grant Singleton |
Assignee | |
Description Dataview 1.14.6.2 having Stack Overflow Exception issue. Could be related to previous bug #1408. Please see window grab for info. Dataview currently unusable with this error in my app. |
1 thought on “Stack Overflow Exception”
Leave a Comment
You must be logged in to post a comment.
Extra info:
Windows 7 x64 SP1, Xojo for Windows 2019r1.1
Called from piDogGeometry.DoubleRect.Union:
Function Union(other As piDogGeometry.doubleRect) As piDogGeometry.doubleRect
///returns a new rect encompassing this rect and other rect
#If Not debugbuild
#Pragma disablebackgroundTasks
#Pragma disableBoundsChecking
‘#pragma stackOverflowChecking false
#Pragma nilObjectChecking False
#EndIf
Dim x,y,w,h As Double
x=minD(Me.dataStruct.Left,other.dataStruct.Left) <—- Stack Overflow Exception
y=minD(Me.dataStruct.top,other.dataStruct.top)
w=maxD(Me.dataStruct.Right,other.dataStruct.Right)-x
h=maxD(Me.dataStruct.bottom,other.dataStruct.bottom)-y
Return new piDogGeometry.DoubleRect(x,y,w,h,0)
End Function