Loading Access Database Values into a Form
Hi guys. I have successfully connected to an Access database and have now started a new project which aims to load these Access database attributes into Text box fields. Unfortunately I'm having a bit of trouble.
I have a class called FormClass, of which the public FormClass constructor calls the getAttributesToForm function.
privatevoid getAttributesToForm(){
txtGroup.setText(oClass1Reference.getGroup());
txtManage.setText(oClass1Reference.getManage());
txtSurname.setText(oClass1Reference.getSurname());
}
The oClass1Reference refers to another class, which contains the getGroup etc setters and getters. I've declared a "private Class1 oClass1Reference as an instance. Is this the right way to load values?

