Search results for query: *

  1. K

    Creating Windows Applications in VB Net

    Hullo, Re-installed Visual Basic Net. Tried to create a VB Windows Forms application using the default Net 3.1. It required a Main() Sub, contrary to what the Microsoft documentation says. I have never had to do this, so I tried to create a new application using Net 5.0. The Form1 displayed...
  2. K

    Question Argument Exception is unhandled

    Thanks hipturtle and SLPx for your comments. I am using Visual Basic Express Edition 2008. I have myself taken this segment of code and used it to make a new application and it runs fine, hence my query. So, I can only deduce that the problem is elsewhere. Is it possible that I am clobering...
  3. K

    Question Argument Exception is unhandled

    I have the following code in my program;- Do astring = "Interpolated at Level " & CStr(level) & ". Continue (C), Save and Continue (S) or Stop (X)?" bstring = "Refine the interpolation or not?" cstring = "C" cstring =...
  4. K

    Trapping Events in Visual Basic Express Edition 2008

    Dear John, Thanks for the help, both here and on your Blogg. It has been greatly appreciated. Now I have got them working in a simple example and think that I understand the process. Keih
  5. K

    Trapping Events in Visual Basic Express Edition 2008

    Hi!, This is really good advice, but it has not helped me solve my problem. Having a problem in an application that I am building, I made a very simple application to look at the problem; and maybe I have been too quick and dirty in this simple application; but I just want to understand why I...
  6. K

    Trapping Events in Visual Basic Express Edition 2008

    My reference for this is Francesco Balena's Visual Basic.NET from 2002, so it may be out of date. I have created a simple class (MyNameClass) of two strings (first and last names) and an Event, FullName(ByVal fullName As String) that just contains a Constructor (New(astring, bstring)) and a...
Back
Top