Answer the question
In order to leave comments, you need to log in
Why did Chrome stop playing videos on pages after updating?
Chrome was updated yesterday and after that the videos on the pages stopped working.
At startup, chrome yells that Flash will "see a star" by the end of 2020 .. I
went to chrome settings >>> Advanced>>> Site settings. By default, it turns out that the flush was banned. Moved the toggle switch - now it's
"Always ask".
When I open YouTube, the video still doesn't play.
Answer the question
In order to leave comments, you need to log in
On the YouTube forum, also ask
https://support.google.com
This is all Google help, find YouTube.
• Check extensions : disable and see
• re-login.
• Check with another browser.
The results of the check, if there are problems again in Chrome - write to the forum, where the experts will be able to immediately write to the service specialists
All the same happened yesterday, although on 08/08/19 everything was fine. I looked in the installed programs, chrome was installed on 08/09/19. Disabled frigate - it worked...
If everything is correct in the messagebox, but not when comparing in the code, then compare character by character and find out where the error is, maybe you have added some space in the database, or a line feed, or a mixture of Russian-Latin characters. Now I tried your code - everything works.
var sqlConnection = new SqlConnection("Data Source=localhost;" +
"Initial Catalog=tosterTest;" +
"Integrated Security=SSPI;");
sqlConnection.Open();
var command = new SqlCommand("SELECT * FROM [Admin]", sqlConnection);
var sqlReader = await command.ExecuteReaderAsync();
await sqlReader.ReadAsync();
if ( textBox1.Text == sqlReader["login"].ToString()
&& textBox2.Text == sqlReader["pass"].ToString())
{
MessageBox.Show("Всё верно!");
}
else
MessageBox.Show("Неправильный логин или пароль");
Try to compare strings using the Equals() method, google it yourself, I hope how to use it
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question