indicates whether the current record position is before the first record in a recordset. see also: eof property.
bound control: a control, usually on a form, you can link to a data source, such as a data control or recordset, and use to display that data. textboxes, checkboxes, image controls, labels, and picture boxes are all bound controls.
ccur function: converts any valid expression to the currency data type.
cdbl function: converts any valid expression to the double data type.
change event: indicates the contents of a control have changed. depending on the type of control, this event occurs in response to various actions. for example, when the text in a textbox changes, its change event fires.
choose function: selects and returns a value from a list of arguments based on the index you provide to the function.
chr function: returns a one-character ascii code for an ansi character code. for example, chr(65) returns "a".
cint event: converts any valid expression to the integer data type.
class module: a template used in visual basic to create your own objects. class modules can include code for methods, properties, and events. class modules have no visible user interface.
class: the basic unit that defines an object. a class contains properties and methods that expose its characteristics and functionality to other classes.
click event: occurs when the user presses and releases a mouse button over an object. might also occur when the value of a control changes.
client: a workstation or personal computer that accesses information on remote servers, then presents and manages the information retrieved from the server. see also: client/server, fat client, server, thin client.
client/server: a two-tier computing model in which the client (a workstation or pc) requests information from the server, and the server supplies the information needed. in this type of architecture, the client typically contains all the programming logic. a local area network (lan) or wide area network (wan) connects both client and server.
clng event: converts any valid expression to the long data type.
combo box: a visual basic control that combines the features of a textbox and a listbox. users can type in the textbox portion or select an item from the list portion of the control.
collection: an object that stores an ordered set of items as a single unit. the items in a collection can be of varying data types (even other objects), and are related only by the fact that they are stored in the collection.
command function: returns the argument portion of the command line that launches vb.
common object request broker architecture (corba): an object management group standard for communicating between distributed objects. with corba, programs written in any language can execute from anywhere on a network and from any platform.
compiler: translates code into an executable file.
component object model (com): microsoft's infrastructure for code modules that are independent of programming languages and computer platforms. the com specification allows objects to expose interfaces that can be used by any programming language that supports the creation of com objects. activex technologies are based on com. see also: distributed component object model.
component: a routine or module that is ready to use with other components or programs within a larger system. see also: component object model.
concurrency: a term used when referring to data access and two users are updating the same record at the same time. this is an issue that must be handled by the programmer.
constant: a variable that stores a value that remains constant throughout the program.
control: a tool for creating objects on a vb form. most controls are used to create user interface elements, such as command buttons, image boxes, and listboxes. also: a module that enhances a program's functionality, such as an activex control.
cos function: returns the cosine of the angle n. the angle n is expressed in radians.
createobject function: creates an ole automation (activex) object of whatever type you specify.
csng function: converts any valid expression to the single data type.
cstr function: converts any valid expression to the string data type.
curdir function: returns the current path for the specified drive.
custom control: a reusable component that provides a discrete piece of functionality you do not have to code from scratch.
cvar function: converts any valid expression to the variant data type.
| def |