Posts by Gabriel Rodrigues • 20 points
4 posts
-
0
votes2
answers734
viewsA: How to hide and re-view taskbar in C#?
As they said, it’s very complicated to do, but not impossible. Add a new class with the following code: using System; using System.Runtime.Interopservices; public class Taskbar {…
-
0
votes1
answer2398
viewsQ: Synchronize two Mysql databases
I am developing a web application and would like to get the system working both online, how much offline. The idea is to keep a local database that responds when the user is offline, but I don’t…
mysqlasked Gabriel Rodrigues 20 -
0
votes0
answers16
viewsQ: Visual Studio 2010 Express does not recognize Bootstrap properly
Hello, I’m having a problem, I usually make websites in html/php and I’m migrating to ASP. NET, and I would like to work with Bootstrap, however, it works when debugging the page, but in preview no,…
-
0
votes1
answer257
viewsQ: Two selects in a while with PDO
Hello, I’m migrating from Mysql to PDO and I’m having difficulty putting in a table two selects. try{ $CON = new PDO("mysql:host=localhost;dbname=tcc", 'root', '1234'); } catch (PDOException $e) {…