Home > Software design >  Visio DataRecordset Object
Visio DataRecordset Object

Time:09-13

I am messing around with some Visio VBA in 2010 standard.

Any method or property I try with a recordset object gives an error.

Public Sub LinkAllRecordsets()
Dim drs As Visio.DataRecordset
Dim dcn As DataConnection
Dim doc As Document
Dim intCount As Integer
    intCount = ThisDocument.DataRecordsets.Count
End Sub

The debug halts at the intCount = line, giving a generic "this operation is not supported in Microsoft Visio Standard 2010".

Is there a way I can get around this?

Thanks.

CodePudding user response:

No way! DataRecordsets are supported only in Visio 20xx (2007 ) Professional or Visio Plan 2 editions!
DataRecordset object

CodePudding user response:

Nuts!

Thanks for the information.

  • Related