Abolishing Macro

D

Diogo

Hi,
I'm trying to abolish all macros from my aplication, but I'm new to VB so I
need some help.
I have a macro that "setvalue" to the following form:
item:[Forms]![frmUser]![Text8]
expression:[Forms]![frmLogon]![cboEmployee].[SelText]

how do i transform this into VB code?

thanks.
 
A

Allen Browne

Just assign the value:
[Forms]![frmUser]![Text8] = [Forms]![frmLogon]![cboEmployee].[SelText]
 
Top