Posts by Amanda • 159 points
4 posts
-
1
votes1
answer58
viewsQ: How can I use a Hyperlink inside a Listbox?
I want to make a HyperLink for each result that will appear within the ListBox. private void listBox_SelectionMode(object sender, EventArgs e) { LogisticaServiceContractClient Logistica = new…
-
0
votes1
answer66
viewsQ: I can’t see which argument I should use to do this job
public class RetornoBO { List<RetornoRomaneioPostagem> OK = new List<RetornoRomaneioPostagem>(); Dictionary<string, int> retorno = new Dictionary<string, int>();…
-
2
votes2
answers230
viewsQ: How to verify if a file name has 16 digits?
namespace _06_Teste { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void cmdValidar_Click(object sender, EventArgs e) { foreach (String file in…
-
12
votes2
answers1480
viewsQ: How to edit a list in C#?
I want to edit a record of a client in which I can already register, consult and remove. But I have no idea how to edit just a few items without others being lost. class Program { static…