Abolishing Macro

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
Just assign the value:
[Forms]![frmUser]![Text8] = [Forms]![frmLogon]![cboEmployee].[SelText]
 
Back
Top