Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. huttemannw

    Java Abstract Class Constructors

    Thanks for the response, but I still don't follow (I'm thickheaded sometimes). The concrete classes that extend the abstract class have their own constructors. How can they implement the abstract class' constructor?
  2. huttemannw

    Java Abstract Class Constructors

    Hi, I'm still learning java and have a question about abstract classes: If an abstract class cannot be instantiated, why does it have a constructor(s)? Take, for example, the Writer class from the java.io package. It has two. Thanks for any help.
  3. huttemannw

    Interfaces And Casting Array Components

    Now I understand. I really appreciate your help. Thanks!
  4. huttemannw

    Interfaces And Casting Array Components

    So, you're saying that the statement: robots[index] returns only the reference and not the object itself, which would require a cast (because the reference is of type Robot which doesn't implement Locomotion)? And, that the statement: Locomotion loco = robotB returns the object itself...
  5. huttemannw

    Interfaces And Casting Array Components

    I am currently in the process of teaching myself Java, and have a question concerning assigning array components to an interface reference. The complete program listing is below, but here is the portion that I have a question about: for (int index = 0; index < 7; index++) { if (robots[index]...
  6. huttemannw

    Microsoft VBScript runtime error '800a005e'

    Hi, The strContent parameter in the code below receives its value from a Memo field in an Access database. If I open the recordset with an adOpenForwardOnly cursor, no matter what value I send to strContent (empty string, Null, or a valid string), I get the error - Microsoft VBScript runtime...
  7. huttemannw

    Imagecombo edit area not displaying selected item

    That did the trick. Thanks!
  8. huttemannw

    Imagecombo edit area not displaying selected item

    I have an imagecombo that I fill from a database, and then set the selecteditem property to the highest key (the keys are &quot;k&quot; & an ID number) in the comboitems collection. It is my understanding that when you set selecteditem to an item, it will appear in the edit area of the...
  9. huttemannw

    Adding a reference to winsock.dll

    Yes, I did get my program to work. I had to register the MSWINSCK.OCX file with regsvr32, and then, to overcome license problems, I ran a program called VB6CLI. It sets the proper license settings in the registry for certain OCX files. Fortunately, MSWINSCK.OCX is one of them. After completing...
  10. huttemannw

    Adding a reference to winsock.dll

    I am attempting to add a reference to winsock.dll to use the Winsock control to do some email programming in Access. However, Winsock is not listed in the Available References listbox on the References dialog (or is it? Am I looking for the wrong name?). I clicked Browse, and tried to manually...
  11. huttemannw

    Sending Outlook Mail from Access

    Thank you! I'll give it a shot.
  12. huttemannw

    Sending Outlook Mail from Access

    Does anyone know how to prevent the security messages that pop up when sending email from Access? The messages read: &quot;A program is trying to access e-mail addresses you have stored in outlook. Do you want to allow this?&quot; and &quot;A program is trying to automatically send e-mail on...

Part and Inventory Search

Back
Top