Search results for query: *

  1. Eric_Mutta

    How to cancel lunching application from the beginning?

    You mean you want users to start your app then if Internet Explorer is running you want them to choose whether or not to continue running your app? Is this correct?
  2. Eric_Mutta

    System.ArithematicException

    Does this happen regardless of what code you have? do the other things in the IDE like the form designer work?
  3. Eric_Mutta

    problems with class files

    That was a very long sentence! :-)...what problem are you having exactly? what do you want to achieve?
  4. Eric_Mutta

    How to calculate a formula in an array(index)

    What exactly are you storing in Formula(index)? If these are mathematical formulas of some kind, you'll need to build a mini parser and evaluator (which is hard work!). If the formulas are known at compile-time, then there is another solution...
  5. Eric_Mutta

    how does one find mouse location in screen coordinate

    You'll first need to capture the mouse so your window can receive mouse messages even when the mouse is over another window. Declare the following in a module somewhere: Public Declare Function SetCapture Lib "user32" Alias "SetCapture" (ByVal hwnd As IntPtr) As IntPtr Then call it as...
Back
Top