Emoji in Business Central ? ??
Yes, emojis can be used in Business Central from AL Code as well as from the page.
Windows + ;
Short cut key for Windows
Command + Control + Space
Short Cut key for Mac
Recommending to use as only Represanation, I am not recommending using it as data, as it might affect various cases.
Expecting answers from Dynamics Community, Not sure
I created a table to check what size is required to store the emoji.
You can use text/Code variables if you want
Initially, i created two fields Code[1] and Text[1]
领英推荐
case Rec.Blocked of
Rec.Blocked::All, Rec.Blocked::Invoice:
begin
Rec.Emoji_Text := '?';
Rec.Emoji_Code := '??';
end;
Rec.Blocked::" ":
begin
Rec.Emoji_Text := '??';
Rec.Emoji_Code := '??';
end;
end;
But Ended up with the error below
Even if there is only one emoji, we have to use a length of 2, After Changing Text[2] and Code[2] I am able to see the change.
Thanks! Been using Emoji in BC for years now but I ran into an issue today which your post helped me resolve. I had set my field to Test[1]. The emoji was being display in black and white instead of color. Cheers