Brian, Yes, you simply type the keyword debugger on the first line of code in the js file, for example the function btnDivide_Clicked is put in the simple.js file, at runtime you want to debug this function:
function btnDivide_Clicked()
{
debugger
...
}
brian55 wrote: One more thing. The program I am writing makes use of an active X client that has a lot of objects and methods. Can I get access to these while in VS? Yes, you can. Basically, ActiveX control is an unmanaged code component, so you need to create a runtime-callable wrapper for it to make use of it in your .net application, and there are two ways to do that: you either use the tlbimp.exe tool or simply add reference to it in VS, then VS automatically generate the wrapper for you. At design time, you can use Object Browser to view all methods/properties of the ActiveX component. There are a couple of documents which may give you some good info: HOW TO: Use ActiveX Components in Visual Studio .NET with Visual Basic .NET[^] HOW TO: Host ActiveX Controls in a Web Form[^] Interoperating with Unmanaged Code[^]