Windows 10更新最新的ADO连接到Excel文件

时间:2017-10-28 03:42:26

标签: excel windows ado dao

以下代码适用于Windows多年,直到Windows最新更新 Windows版本1607,OS Build 14393.1770或更高版本。

<div  *ngIf="question.optionType === 'Radio'">
  <div *ngFor="let option of question.options">
    <input
        type='radio'
        [formControlName]='i'
        [value]="option"
        [name]="i"
        />
    <label>{{option}}</label>
  </div>
</div>
<div *ngIf="question.optionType === 'Checkbox'">
  <div *ngFor="let control of surveyForm.controls[''+i].controls; let j=index">
    <input
          type='checkbox'
          [formControl]='control'
          [value]="question.options[j]"

    />{{question.options[j]}}
  </div>
</div>

生成此错误:

  

编号:-2147467259   描述:来自外部数据库驱动程序的错误(1).`

Dim adoSourceCN As ADODB.Connection Set adoSourceCN = New ADODB.Connection adoSourceCN.CursorLocation = adUseClient adoSourceCN.Provider = "Microsoft.Jet.OLEDB.4.0" adoSourceCN.ConnectionString = "C:\test.xls"; Extended Properties=""Excel 8.0;HDR=Yes;IMEX=1;""" adoSourceCN.open If (adoSourceCN.State = adStateOpen) Then ' Do something ... End If 发生了类似的错误。

有没有人遇到过这个问题,或类似问题,并且知道如何解决这个问题?

0 个答案:

没有答案