Simple App does nothing on Ubuntu 16.04 xenial xerus

I made a simple program, just a Window, a press button, and a message box when I press the button I compile it for Linux.
But when I click it doesn’t run.

I’m testing on Ubuntu Xenial Xerus 16.04.

So I google for a solution and I’ve found that I need to install the Needed Libraries first, ignorer to run Xojo Programs.

sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 libglib2.0-0:i386 libsoup2.4-1:i386 libicu52:i386 libgtk2.0-0:i386

Doing This I can run apps made with xojo without problem.

Only I have a question, it says it can’t find “libicu52:i386”
What this library does exactly? and how it could affect me?

Thanks

The forum search is your friend : https://forum.xojo.com/conversations/all?search=libicu

Ok I reading it, I installed libicu-dev:1386

[quote=272230:@Gerardo García]sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 libglib2.0-0:i386 libsoup2.4-1:i386 libicu52:i386 libgtk2.0-0:i386[/quote]

I install all this Dependencies:

[quote]sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 libglib2.0-0:i386 libsoup2.4-1:i386 libgtk2.0-0:i386
sudo apt-get install libicu-dev:i386
apt-get install gtk2-engines-murrine
sudo apt-get install libcanberra-gtk-module:i386
sudo apt-get install gtk2-engines-murrine:i386[/quote]

It run the program without problem, For test if no error messages happen I ran it into a Terminal:

./NAMEOFTHEPROGRAM

IT runs, but it says me:
Gtk-Message: Failed to load module “overlay-scrollbar”
Gtk-Message: Failed to load module “gail”
Gtk-Message: Failed to load module “atk-bridge”
Gtk-Message: Failed to load module “unity-gtk-module”

I tried doing: apt-get install overlay-scrollbar-gtk2 unity-gtk2-module

But I can’t get rid of these messages.

[quote=272247:@Gerardo García]It run the program without problem, For test if no error messages happen I ran it into a Terminal:

./NAMEOFTHEPROGRAM

IT runs, but it says me:
Gtk-Message: Failed to load module “overlay-scrollbar”
Gtk-Message: Failed to load module “gail”
Gtk-Message: Failed to load module “atk-bridge”
Gtk-Message: Failed to load module “unity-gtk-module”

I tried doing: apt-get install overlay-scrollbar-gtk2 unity-gtk2-module

But I can’t get rid of these messages.[/quote]
I Solved it!!!, Instilling these additional dependencies:

sudo apt-get install gtk2-engines
sudo apt-get install gtk2-engines-*

Et Voila!!!