Forum Discussion
Trust125
Jul 26, 2022Copper Contributor
MS Access error
MS access file shows an error"The expression on mouse down you entered as the event property setting produced the following error:invalid character" while clicking any button in the forms.The ...
Trust125
Copper Contributor
Thankyou for your reply,
Compiled the access file and an error "invalid character" in a vb code of one of the forms .
VB code->
Private Sub 暵偠傞儃僞儞_Click()
On Error GoTo Err_暵偠傞儃僞儞_Click
If Me.Dirty Then Me.Dirty = False
DoCmd.Close
Exit_暵偠傞儃僞儞_Click:
Exit Sub
Err_暵偠傞儃僞儞_Click:
MsgBox Err.Description
Resume Exit_暵偠傞儃僞儞_Click
End Sub
>Actually the button name in the form is in japanese language .
How do i change the language to japanese ?(I have copy paste the japanese vb code but this pc displayes only chinese)
Thank you for your support
Compiled the access file and an error "invalid character" in a vb code of one of the forms .
VB code->
Private Sub 暵偠傞儃僞儞_Click()
On Error GoTo Err_暵偠傞儃僞儞_Click
If Me.Dirty Then Me.Dirty = False
DoCmd.Close
Exit_暵偠傞儃僞儞_Click:
Exit Sub
Err_暵偠傞儃僞儞_Click:
MsgBox Err.Description
Resume Exit_暵偠傞儃僞儞_Click
End Sub
>Actually the button name in the form is in japanese language .
How do i change the language to japanese ?(I have copy paste the japanese vb code but this pc displayes only chinese)
Thank you for your support
arnel_gp
Jul 28, 2022Steel Contributor
that is the problem when the "original" language where the db was created is in "other" language and want to run it in EN language.
you need to put your Form in Design View and replace all Jap Control name to EN.
also you need to re-create each Form event and use EN labels.
you need to put your Form in Design View and replace all Jap Control name to EN.
also you need to re-create each Form event and use EN labels.
- Trust125Jul 29, 2022Copper ContributorPc supports the languages english, japanese and chinese.
"Now the button in the form is in japanese (閉じるボタン) and in the vb code programmed to this button the name is in chinese."
I tryed to edit the code to change name to japanese and create button with the name in chinese.Both not working.