Tip Bank

DevX - Software Development Resource

Atn2 – Arc tangent of Y/X

‘ arc tangent of Y/X – returns values in all four quadrantsFunction Atn2(x As Double, y As Double) As Double If x = 0 Then Atn2 = Sgn(y) * 1.5707963267949

DevX - Software Development Resource

Cot, Sec, Csc – Missing trig functions

‘ Cotangent of an angleFunction Cot(radians As Double) As Double Cot = 1 / Tan(radians)End Function’ Secant of an angleFunction Sec(radians As Double) As Double Sec = 1 / Cos(radians)End

DevX - Software Development Resource

Cycle Through Your Visual InterDev Windows

When you have multiple windows open in your Visual InterDev developer’s environment, it is easy to lose track of where they all are. Rather than trying to park the windows

DevX - Software Development Resource

Replacement for the “Finally” Keyword

Question: I’m wondering whether there is any good replacement for Java’s “finally” keyword (that executes regardless of whether an exception is thrown a keyword) in C++. I’m trying to switch

DevX - Software Development Resource

About Box and Splash Screen Missing from App

Question: I recently modified the following under my application’s class libraries… app_aboutboxapp_splash I rebuilt the project and executable, but when I run my application, text and images from both the

DevX - Software Development Resource

Giving Users a Save As Dialog Box

Question: I am creating a CSV file from a table via the export command and would like to give the user the option to name the CSV file at execution