compiler error

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • CJ

    #1

    compiler error

    Can someone tell me what this error means and how to get rid of it.

    ADODB.Stream adodbstream = new ADODB.Stream();
    adodbstream.Typ e = ADODB.StreamTyp eEnum.adTypeTex t;
    adodbstream.Cha rset = "US-ASCII";
    adodbstream.Ope n();
    Error 1 No overload for method 'Open' takes '0' arguments
    C:\Projects\For m1.cs 36 13 FormNew


    Thanks


  • Michael A. Covington

    #2
    Re: compiler error

    adodbstream.Ope n();
    Error 1 No overload for method 'Open' takes '0' arguments
    It means you cannot call Open(...) without anything in place of the '...'.


    Comment

    Working...