New topic: 

Unable to Break in Function

<http://forums.realsoftware.com/viewtopic.php?t=46608>

         Page 1 of 1
   [ 2 posts ]                 Previous topic | Next topic          Author  
Message        Jason_Adams          Post subject: Unable to Break in 
FunctionPosted: Fri Jan 18, 2013 3:02 pm                                 
Joined: Fri Nov 10, 2006 4:10 pm
Posts: 1733
Location: Michigan, USA                Greetings!

I have a function:
Function Slope(Sx As UInt64, Sxx As UInt64, Sy As Double, Sxy As Double, Count 
As UInt64) As Double
  Dim Numerator, Denominator, Quotient As Double
  
  Numerator = (Sxy * Count) - (Sx * Sy)
  Denominator = (Sxx * Count) - Pow(Sx, 2)
  Quotient = Numerator / Denominator
  
  Return Quotient
End Function


A pretty standard math function that I keep in a module. What's curious is that 
I can't break in the function. If I do, I'm brought to the place the function 
is used, and am made to step as my times as there are lines within the 
function. But at no point can I view the contents.

I'm curious if anyone else has experienced this behavior and perhaps tied it 
down to what causes it.

Thanks!     
_________________
Windows 7 Ultimate x64
Windows XP Pro SP3
Ubuntu 11.04 via Virtual Box
RS Enterprise 2012r1.1

Programming Tutorials & Free Projects: http://www.JasonTheAdams.com
"Christianity has not been tried and found wanting; it has been found difficult 
and not tried." - G.K. Chesterton  
                             Top                charonn0          Post subject: 
Re: Unable to Break in FunctionPosted: Fri Jan 18, 2013 5:46 pm                 
                
Joined: Mon Apr 02, 2007 2:08 am
Posts: 1076
Location: San Francisco, CA, USA                The only time I have 
encountered similar behavior is when calling into an encrypted 
module/class/etc. when I didn't have the password.      
_________________
Boredom Software  
                             Top             Display posts from previous: All 
posts1 day7 days2 weeks1 month3 months6 months1 year Sort by AuthorPost 
timeSubject AscendingDescending          Page 1 of 1
   [ 2 posts ]      
-- 
Over 1500 classes with 29000 functions in one REALbasic plug-in collection. 
The Monkeybread Software Realbasic Plugin v9.3. 
http://www.monkeybreadsoftware.de/realbasic/plugins.shtml

[email protected]

Reply via email to