Search found 63 matches

Search found 63 matches Page 3 of 7
by SumCode
Sat Nov 15, 2014 6:01 pm
Forum: Coding Help & Support
Topic: Deselect the selected value in combobox
Replies: 5
Views: 1850

I think you could just remove the event Handler for both items and then add the back after deselecting: It might look something like this: If ComboBox2.SelectedIndex = ComboBox3.SelectedIndex Then RemoveHandler ComboBox2.SelectedIndexChanged, AddressOf ComboBox2_SelectedIndexChanged_1 ComboBox2.Sele...
by SumCode
Sat Nov 15, 2014 5:55 am
Forum: Full Software
Topic: Test Maker
Replies: 2
Views: 2598

Intro: Hey guys! So I have just finished a major portion of a project I started last weekend. It basically takes user input to create a test that you can later take. I originally just made it for myself so I can make sure I pass my permit test, but I thought maybe someone on here might find it inte...
by SumCode
Fri Nov 14, 2014 5:21 am
Forum: Coding Help & Support
Topic: Input/Text Parser solutions
Replies: 1
Views: 1176

You could use regex to find values that you need. C# class Foo { public static Tuple<int, int> GetAction(string sentence) { var strSent = sentence.ToLower(); var verbs = new List<String>() { "look", "open", "close" }; var nouns = new List<String>() { "table", ...
by SumCode
Sun Nov 09, 2014 1:12 am
Forum: Competitions
Topic: Wacky Weekend Clearout
Replies: 7
Views: 4296

Here's my entry.
Image
Image
Nothing much. Just a program that renames all your files from a TV show to something that is visually (and for sorting) pleasing to whatever format you want.
Show Renamer.7z
by SumCode
Thu Nov 06, 2014 4:10 am
Forum: General coding help
Topic: [C#] Parameter is not valid is designer?
Replies: 0
Views: 1959

So I have this program that will get movies and add them to this list, however when I use my search/sort features the program will throw a An exception of type 'System.ArgumentException' occurred in System.Drawing.dll but was not handled in user code Additional information: Parameter is not valid. O...
by SumCode
Sun Nov 02, 2014 6:25 pm
Forum: Work in Progress
Topic: Happy Code (stop being sad)
Replies: 8
Views: 4941

I actually really like the new update. It reminds me a little of Stories for Your Screen Although I would suggest when you click the down button that it scrolls down instead of abruptly moving down
by SumCode
Sun Oct 19, 2014 4:49 pm
Forum: Coding Help & Support
Topic: How to get values ​​from a web page
Replies: 12
Views: 3793

Great, you're the best, you are able to figure out what I wanted and the code is really very simple and powerful so I could understand it. clapper; There's only one small problem, the combobox, it seems that teams are added several times. How can fix this? I then saw that the championships are uplo...
by SumCode
Sat Oct 18, 2014 7:05 pm
Forum: Coding Help & Support
Topic: How to get values ​​from a web page
Replies: 12
Views: 3793

Hi, When I enter this function in the code tells me an error that I listed above, please take a look. Update: i have integrate the code in a button, so it not display me the previous error but the code doesn't work, infact i obtain the previous index error ... Another problem you will encounter is ...
by SumCode
Sat Oct 18, 2014 4:16 pm
Forum: Coding Help & Support
Topic: How to get values ​​from a web page
Replies: 12
Views: 3793

hey, thanks for the answer. What's this: Private Sub btnLoad_Click(sender As System.Object, e As System.EventArgs) Handles btnLoad.Click WebBrowser1.Url = New Uri("http://www.diretta.it/classifiche/A1AAw29q/p4jMxzfU/#table;overall") End Sub in the list errors I get: "the handles clau...
by SumCode
Wed Oct 15, 2014 11:49 pm
Forum: General coding help
Topic: Using Regex to find elements?
Replies: 3
Views: 2317

The problem is that you can't know whether the user meant Pb15 or Pb1 + 5H2O... as these are two input possibilities. Edit: Also, I may be wrong, but don't coefficients exist only when typing out a chemical equation? In the case of a chemical formula, I don't think you'll encounter coefficients, ju...
Search found 63 matches Page 3 of 7
Go to advanced search