Y
ym
Hello,
In the Page Footer, I have a textbox "txtPage" and its properties sheet
control source = "Page " & [Page] & " of " & [Pages]
But now, I have to add in language manipulation, if its the French language,
the " of" will be displayed as " de" . So, my control source will be
something like "Page " & [Page] & " " & iif(gsLanguage = "E", " of ", " de")
& [Pages] but of course this syntax don't work and I get an error #Name on
the report at runtime.
Does anybody know how can I control this ???
In the Page Footer, I have a textbox "txtPage" and its properties sheet
control source = "Page " & [Page] & " of " & [Pages]
But now, I have to add in language manipulation, if its the French language,
the " of" will be displayed as " de" . So, my control source will be
something like "Page " & [Page] & " " & iif(gsLanguage = "E", " of ", " de")
& [Pages] but of course this syntax don't work and I get an error #Name on
the report at runtime.
Does anybody know how can I control this ???