Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Binding Controls to Access database

Status
Not open for further replies.

gulky2002

IS-IT--Management
Nov 21, 2002
13
AT
Can please anybody help me with my last few code lines? Have a look to the code. PLEASE HELP !
MANY Thanks

'DETAILDATEN AUTHOR … OK
txtTextbox(0).DataMember = "HAUPTTABELLE"
Set txtTextbox(0).DataSource = eventhandler
txtTextbox(0).DataField = "attribut_haupttabelle"

'DETAILDATEN - CHECKBOXEN … CODE???
'abfragen, ob der wert in der Datenbank 'wahr' oder 'falsch' ist
chkCheckBox


'DETAILDATEN - OPTIONBUTTONS … CODE???
'abfragen, ob der wert in der Datenbank 'wahr' oder 'falsch' ist
optOptionButton


'DETAILDATEN - OLE-CONTROL … CODE???
'anzeigen eines in der Datenbank gespeicherten *.bmp, *.jpg oder *.gif
oleOleControl


'DETAILDATEN - DATACOMBO … OK
'Synchronisation durch spezielle Eigenschaften
With dbcDataCombo
'Masterdaten: Datenquelle: Hier das Klassenmodul
Set .DataSource = eventhandler
'Tabelle der Masterdaten ... DataMember = definierte Recordsets
.DataMember = "HAUPTTABELLE"
'Der Bezug zum Primärschlüssel
.DataField = "haupttabelle_id"
'Detaildaten: Tabelle in der das darzustellende Attribut vorhanden ist
.RowMember = "UNTERTABELLE1"
'Datenquelle: Hier das Klassenmodul
Set .RowSource = eventhandler
'Primärschlüssel der Tabelle mit dem anzuzeigenden Attribut
.BoundColumn = "untertabelle_id"
'Das anzuzeigende Attributfeld
.ListField = "attribut_untertabelle1"
End With
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top