Search results for query: *

  1. G

    Testing and Debugging

    Hi there, No it wasn't homework, just a quiz going round the office, unfortunately I don't have visual studio installed so couldn't just run it. I have since figured it out though. Thanks for your reply anyway. Regards George
  2. G

    Testing and Debugging

    Hi there everbody, I was wondering if anyone could tell me what the answer to this question is......? I have been battling for ages and just can't work it out....a,b,c,d or e? Dim I1 As Integer Dim D1 As Double Dim dte As Date Try dte = #4/1/2002# I1 = dte.AddSeconds(-0.75).Day D1 = I1 / (I1...
  3. G

    How to bind a combox to a database??

    Thanks for the reply Francis that really helped. I wonder if I could impose further on you ? What I need to do now is to display the relevent deatils in my 5 textboxes. When i click on the combobox drop down list and select customerID1,the first name, last name, city, state and zip code need to...
  4. G

    How to bind a combox to a database??

    Hi there, I need to bind a dropdown comboBox to a database and can't for the life of me work out how to go about it. Could anyone please help me with some pointers? Many thanks George
  5. G

    Data access using ado.net/Data binding

    Hi all, I am really battling with an application and would be most grateful if anyone could give me some pointers. I need to create a program to view orders placed by customers. They have asked for 2 screens.The first will allow a selection of a customer ID from a drop down list box.The...
  6. G

    TextBox Validation

    Hi there, Could anybody help me with this code please ? I have 8 text boxes inside a group box. I need to write the validation so that when the corresponding radio button is checked that the textbox firstly is not empty otherwise error message must appear and secondly that only a numerical...
  7. G

    creating an Employee class

    Hi there Praszt, Ok, so this is what I have for my Base class.... Public Class myBaseEmployee Private strFirstName As String Private strLastName As String Public intAnnualSalary As Integer Public strEmployeeType As String Public Sub New(ByVal FirstName As String, ByVal LastName As...
  8. G

    creating an Employee class

    Creating a sub class Thanks again for all the help Praszt, you're a star....! I will give what you said a bash tonight and let you know how it went. George
  9. G

    creating an Employee class

    Further help..... Hi Praszt, Ok back again, first bit worked great, now what I'm not sure about is I'm asked to create 4 sub classes one being the boss class which require the following fields--Constructor--Takes first name and last name as annual salary arguments Properties--first name,last...
  10. G

    creating an Employee class

    Much appreciated Thank you so much Paszt, you have really helped me out...This will definitely get me started and I'll will get back in touch if I get stuck again if thats ok... Thanks again for taking the time out to help me. George
  11. G

    creating an Employee class

    Hi all... Could anyone help me with this code please ? I need to create a base class "shopkeeper" with the following fields... Constructor Takes first name and last name as arguments Properties First name and last name Method To String (this overrides the base class method and returns...
Back
Top