Posts by Paulo Ricardo • 895 points
54 posts
-
0
votes4
answers2882
viewsA: How to extract data from an SQL query in C#
//Aqui usamos a palavra chave 'using' como uma diretiva, para importar os tipos definidos nas namespaces abaixo. using System.Data; //-->namespace q fornece a classe DataTable. using…
-
0
votes1
answer405
viewsA: How to create an image with Hover effect in C#
If you are using C# Windowsforms, with an image being displayed in a Picturebox, you can manipulate the Mousehover event and the Mouseleave event. private void PictureBox1_MouseHover(object objeto,…
-
0
votes2
answers170
viewsA: How to center panel within groupbox?
It is also possible to align to properties .Top and .Left depending on your needs. Alignment within a control or component is a fairly easy thing. Come on! Knowing that the center of the container…
-
1
votes1
answer47
viewsA: How can I dynamically set an avatar photo in windows Forms?
Have you tried creating a standard (default) image and storing it in your project or database? Once created and stored, just feed your Picturebox or your objCli.Clifoto with the default image, if…
c#answered Paulo Ricardo 895