Tagged Questions

3
votes
6answers
208 views

Cutting down repeating code in c# Class

This is a wrapper for an API I'm working on, am I doing it sort of right? I'm not particularly fond of all the repeating code in the constructor, if someone can show me if I can reduce that it would ...
2
votes
5answers
69 views

Print repeated numbers only one time in c#

I have an array with "n" numbers and I need to print all repeated numbers only one time i made this code, but something is wrong for (int i = 0; i < numbers.Length; i++) { ...
2
votes
2answers
102 views

Better way of coding this if statment?

I have another question for you very helpful people. I use a lot of if statements many of which are just repeated and im sure could be shortened. This is my current bit of code if ...
2
votes
2answers
3k views

Loop Through Listbox in VB.net or C# and Set Values to Label Text?

I have items in a listbox control that I would like to repeatedly (when it gets to the last one, repeat) loop through and set the text to a label. I'm stuck, please help!
1
vote
2answers
155 views

FormClosing delegate event problem

I have two forms named 'mainForm' and 'addRslt'. The idea is when users click on a button in mainForm, the addRslt form will Show() and then user will populate a TreeView. Now when user WANT to CLOSE ...
1
vote
5answers
644 views

How to find a repeated string and the value between them using regexes?

How would you find the value of string that is repeated and the data between it using regexes? For example, take this piece of XML: <tagName>Data between the tag</tagName> What would be ...
0
votes
2answers
36 views

Panel Background Image Repetition C#

I want to place an image in a panel, but I do not want it repeated according to the size of the panel. What I did is this: panel3.BackgroundImage = picture1; However, picture1 is repeated several ...
0
votes
4answers
227 views

Using a Thread Multiple Times

I'm trying to use a thread multiple times and have the thread stop processing if the user doesn't react fast enough. Thread ask = new Thread (new ThreadStart (MathQuiz.prompt)); ask.Start(); ...
0
votes
9answers
837 views

C# Best way to replace x repeated tokens by one token

If I have: Some text More text Even more text What is the more elegant way to obtain: Some text More text Even more text All with knowing the number of repeated tokens