Posts

Showing posts from February 5, 2019

Angular 6 ngx-bootstrap Datepicker global locale

Image
0 I'm using the ngx-bootstrap datepicker for my Angular 6 project and I need to use the italian locale; with the official guide ( https://valor-software.com/ngx-bootstrap/#/datepicker#locales ) i figured out this problem and now my datepickers look in italian, but I have another problem. To have datepicker in italian, I had to import in every component the BsLocaleService and use in the onInit function the _localeService.use('it') method; my question is, can I se globally the italian locale in my app, without call the function to set locale in every component? I tried to use the set locale function in the AppComponent, but it doesn't work. Thanks guys angular datepicker ngx-bootstrap share | improve this question asked Nov 13 '18 at 9:06 silversoul silversoul 23 6 add a comment  |  0 I'm using the ngx-bootstrap datepicker for my Angular 6 project and I need to use the italian locale; with the off

Amara Essy

Image
Amara Essy Amara Essy (* 20. Dezember 1944 in Bouaké) ist ein Politiker der Elfenbeinküste und war Präsident der UN-Generalversammlung in der 49. Sitzungsperiode. Von Januar 1977 bis Januar 1978 war Essy Vorsitzender der Gruppe der 77, einem Zusammenschluss und eine Organisation von Entwicklungsländern mit Sitz in Genf/Schweiz. In seiner diplomatischen Karriere vertrat er als ständiger Repräsentant bei der UNO sein Land vom 7. November 1981 bis November 1990. Außerdem war er als Botschafter (mit Sitz in New York) und Gesandter für Argentinien und Kuba zuständig. Im Januar 1990 wurde er ivorischer Außenminister und leitete als Vorsitzender des Sicherheitsrats der Vereinten Nationen für einen Monat. Im September 1994 wählte die Generalversammlung der Vereinten Nationen Essy für ein Jahr zu ihrem Präsidenten. Im Anschluss an sein Amt als Außenminister wurde er 1998 Minister für internationale Zusammenarbeit; dieses Amt hatte er bis 2000 inne. Im Juli 2001 wurde er letzter Generalsekretär

MySqlConnection.Open() Error in xamarin.android

Image
0 I am following this tutorial https://www.youtube.com/watch?v=FOZ8HNJMXXg to try to access database. My Code is exactly the same I have add the needed references( System.Data; , MySql.Data.MySqlClient; ), but I get a System.TypeInitializationException when I call the Open() function. Here is my code just in case: MySqlConnection conn = new MySqlConnection("Server = db4free.net; Port = 3306; Database = XXX; User Id = XXX; Password=XXX; charset=utf8"); if(conn.State == ConnectionState.Closed) conn.Open(); msg.Text = "Opened successfully"; //just a textview conn.Close(); mysql database xamarin.android share | improve this question asked Nov 13 '18 at 9:06 Georgi Yakov Georgi Yakov 18 8 add a comment  |  0 I am following this tutorial https://www.youtube.com/watch?v=FOZ8HNJMXXg to try to access database. My Code is exactly the same I have add the needed references( System.Data; , MySql.Data