Dear I stuck in small issue.
I dont want to make my issue so confusing, so if below is solved then this solution can lead to major change in my program.
I have a subform and with some fields
and one of the Textbox field name is Intranet_No
a command button in main form just to show popmessage of the text entered in Intranet_No
Example Initially My Intranet_no has ABCDEF so when i click button PopupMessage will be ABCDEF
Now I will edit my Intranet_No as DECDGL so now if i click button i want 2 popupmessgaes with before and after
like Before ABCDEF
After DECDGL
what should be my code to get this
how to store ABCDEF previous value
currently i have below
Code:
private sub Commandbutton_click()
Dim A1,B1 as string
Set A1 = Me.Details.Form!Intranet_No
msgbox A1
End sub