For hyperlink field to work, string has to be in proper format:
Code:
Descriptive text#Link#
So in your case:
Code:
C:\Users\NAME\Desktop\Place\1.pdf#C:\Users\NAME\Desktop\Place\1.pdf#
Change your button code to:
Code:
Private Sub Command2_Click()
Dim sSql As String
Dim X As String
Dim B As String
Dim C As String
B = "C:\Users\NAME\Desktop\Place\"
C = ".pdf"
X = B & Me.Text0.Value & C
X = X & "#" & X & "#"
sSql = "INSERT INTO HLinkTable ([AddressF]) VALUES ('" & X & "')"
Debug.Print sSql
CurrentDb.Execute sSql, dbFailOnError
'FollowHyperlink X
Me.Text0.Value = ""
End Sub