Uwe Nohl: Eigenschaftsabfrage von Tabellenfeldern in VBScript

Beitrag lesen

Hallo Leute

Vielleicht könnt Ihr mir weiterhelfen. Es geht um den unten stehenden Code.
Ich hätte aber gern den Text des entsprechenden Tabellen Feldes farbig gemacht in Abhängigkeit vom Tabellen Feld(ob es ein Pflichtfeld ist oder nicht: Dieser Wert muss eingetragen werden). Kann mir jemand weiterhelfen. Mir fehlen die entsprechenden Befehle.Ich nehme an gObjRS.Fields.Properties.???
Ich weiss echt nicht weiter.

Vielen Dank schon im vorraus!!!

Gruß Thomas

Hallo Thomas

nehme an, dass Dein Code ein ASP-Skript ist. Dafuer habe ich in
adovbs.inc folgendes gefunden:

Const adFldMayBeNull = &H00000040

vielleicht ist es die gesuchte property bzw. ihr enum.

gruss

Uwe

Nochmal Hallo,

habe nachgeschaut in der ADO-Dokumentation des PWS:

For a Field object, the _Attributes_ property is read-only, and its _value_ can be the _sum_ of any one or more of these

FieldAttributeEnum values:

Constant -Description

adFldMayDefer -Indicates that the field is deferred, that is, the field values are not retrieved from the data source with the whole record, but only when you explicitly access them.

adFldUpdatable -Indicates that you can write to the field.

adFldUnknownUpdatable -Indicates that the provider cannot determine if you can write to the field.

adFldFixed -Indicates that the field contains fixed-length data.

-> adFldIsNullable -Indicates that the field accepts Null values.<-

adFldMayBeNull -Indicates that you can read Null values from the field.

Gruss

Uwe