Public Sub AddStudentAddress()
Dim oStu As cEAStudent
Dim oAddr As IBBAddressHeader
Set oStu = New cEAStudent
oStu.Init FE_Application.SessionContext
oStu.Load 31, False ''Load student rec id 32 from sample and initialize record to allow edit, True = Read-Only mode
Debug.Print oStu.Fields(EASTUDENTS_fld_NAMEFORDISPLAY) ''Display the name to confirm
With oStu.Address.AddAddress(AddressType_SB_Primary).Address ''Make this new address the primary address
.Fields(ADDRESS_fld_ADDRESSBLOCK) = "123 ABC Lane"
.Fields(ADDRESS_fld_CITY) = "Somecity"
.Fields(ADDRESS_fld_STATE) = "SC"
.Fields(ADDRESS_fld_POSTCODE) = "11111"
End With
oStu.Save ''Save student record to keep update
oStu.CloseDown
Set oStu = Nothing
End Sub
Disclaimer: We provide programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes you are familiar with Microsoft Visual Basic and the tools used to create and debug procedures. Our Customer Support can help explain the functionality of a particular procedure, but we will not modify, or assist you with modifying, these examples to provide additional functionality. If you are interested in learning more about the VBA and API modules, contact your account manager.