久久―日本道色综合久久,亚洲欧美精品在线,狼狼色丁香久久婷婷综合五月,香蕉人人超,日本网站黄,国产在线观看不卡免费高清,无遮挡的毛片免费

2023信創(chuàng)獨(dú)角獸企業(yè)100強(qiáng)
全世界各行各業(yè)聯(lián)合起來,internet一定要實(shí)現(xiàn)!

PropertyBag對象實(shí)現(xiàn)數(shù)據(jù)連續(xù)操作

2004-02-23 eNet&Ciweek

  為了將數(shù)據(jù)保存到PropertyBag對象,可以先建立一個對象新的實(shí)例。使用WriteProperty方法來保存數(shù)據(jù),這一方法包含有三個參數(shù):識別屬性的字符串,屬性的數(shù)值,一個缺省數(shù)值。如果屬性的數(shù)值與缺省數(shù)值相同時,屬性的數(shù)值將不會被保存。其范例如下:

Dim objPB As PropertyBag
Dim strValueToPersist As String

strValueToPersist = "TestingPersist"
Set objPB = New PropertyBag

Call objPB.WriteProperty("PersistValue", strValueToPersist, _
vbNullstring)

  為了能夠?qū)崿F(xiàn)從PropertyBag讀取數(shù)據(jù),可以使用ReadProperty方法。這一方法的參數(shù)包含有一個屬性名稱和一個缺省的數(shù)值,返回值是屬性的數(shù)值:

strValueToPersist = objPB.ReadProperty("PersistValue", vbNullString)

  為了保存PropertyBag對象的內(nèi)容,可以將內(nèi)容屬性保存到一個二進(jìn)制字節(jié)的數(shù)組或一個變量。

Dim vntContents As Variant
vntContents = objPB.Contents
  注釋:Save to desired location

  為了能夠從PropertyBag對象中重新獲取信息,將保存數(shù)值讀入一個二進(jìn)制的數(shù)組。然后將內(nèi)容屬性設(shè)置為二進(jìn)制數(shù)組,這樣所有的屬性數(shù)值將可以重新獲得。

Dim b() As Byte
Dim vntContents As Variant

  注釋:Read saved contents into vntContents from saved location

Set objPB = New PropertyBag
b = vntContents
objPB.Contents = b

相關(guān)頻道: eNews

您對本文或本站有任何意見,請?jiān)谙路教峤唬x謝!

投稿信箱:tougao@enet16.com