Package com.jacob.com

Examples of com.jacob.com.Variant


  public void Open(Variant Source, Variant ActiveConnection) {
    Dispatch.call(this, "Open", Source, ActiveConnection);
  }

  public void Requery(int Options) {
    Dispatch.call(this, "Requery", new Variant(Options));
  }
View Full Code Here


  public int getAbsolutePage() {
    return Dispatch.get(this, "AbsolutePage").getInt();
  }

  public void setAbsolutePage(int pl) {
    Dispatch.put(this, "AbsolutePage", new Variant(pl));
  }
View Full Code Here

  public int getPageSize() {
    return Dispatch.get(this, "PageSize").getInt();
  }

  public void setPageSize(int pl) {
    Dispatch.put(this, "PageSize", new Variant(pl));
  }
View Full Code Here

  public int getState() {
    return Dispatch.get(this, "State").getInt();
  }

  public void UpdateBatch(int AffectRecords) {
    Dispatch.call(this, "UpdateBatch", new Variant(AffectRecords));
  }
View Full Code Here

  public void UpdateBatch(int AffectRecords) {
    Dispatch.call(this, "UpdateBatch", new Variant(AffectRecords));
  }

  public void CancelBatch(int AffectRecords) {
    Dispatch.call(this, "CancelBatch", new Variant(AffectRecords));
  }
View Full Code Here

  public int getCursorLocation() {
    return Dispatch.get(this, "CursorLocation").getInt();
  }

  public void setCursorLocation(int pl) {
    Dispatch.put(this, "CursorLocation", new Variant(pl));
  }
View Full Code Here

    return new Recordset(Dispatch.call(this, "NextRecordset",
        RecordsAffected).toDispatch());
  }

  public boolean Supports(int CursorOptions) {
    return Dispatch.call(this, "Supports", new Variant(CursorOptions))
        .getBoolean();
  }
View Full Code Here

  public int getMarshalOptions() {
    return Dispatch.get(this, "MarshalOptions").getInt();
  }

  public void setMarshalOptions(int pl) {
    Dispatch.put(this, "MarshalOptions", new Variant(pl));
  }
View Full Code Here

    Dispatch.put(this, "MarshalOptions", new Variant(pl));
  }

  public void Find(String Criteria, int SkipRecords, int SearchDirection,
      Variant Start) {
    Dispatch.call(this, "Find", Criteria, new Variant(SkipRecords),
        new Variant(SearchDirection), Start);
  }
View Full Code Here

  public void setDataSource(Variant ppunkDataSource) {
    Dispatch.put(this, "DataSource", ppunkDataSource);
  }

  public void Save(String FileName, int PersistFormat) {
    Dispatch.call(this, "Save", FileName, new Variant(PersistFormat));
  }
View Full Code Here

TOP

Related Classes of com.jacob.com.Variant

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.