Search:

Type: Posts; User: dday9

Page 1 of 13 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    110
    Views
    1,216

    Re: Place Your Rants Here

    I saw a signature in this forums once that said, "They're 10 kinds of people. Those who know binary, and those who don't."
  2. Replies
    110
    Views
    1,216

    Re: Place Your Rants Here

    I'm kind of lost on that statement too Shaggy.
  3. Re: After for/each display messagebox

    Call a messagebox to show after the next and before the clean up.

    Edit -
    Alternatively you could use:

    If item Is list.Last Then
    'Last iteration in list
    End If if you're able to use LINQ.
  4. Replies
    4
    Views
    63

    Re: Inspection Sticker Exemption

    See and I hated the '79-'04 mustangs. I love the '64 1/2 - '78 & '04 - Current mustangs. Just out of curiosity, why don't you like them?
  5. VS 2010 Re: Visual Basic 2010: System.OutOfMemory error? How do I resolve this?

    Another important question is how are you playing the audio? Are you using My.Computer.Audio.Play, XNA, DirectX, etc.? I would also suggest reading an article by TechGnome, here.
  6. Thread: Post Race!

    by dday9
    Replies
    46,884
    Views
    816,695

    Re: Post Race!

    I'm glad to see they're not Linux, you would've never found the documentation on how to install them into the frame.
  7. Replies
    4
    Views
    63

    Inspection Sticker Exemption

    For those of y'all that don't know, I was donated a '78 Mustang II a while back. Well when I brought it to a mechanic for him to do some repairs, he noticed that I had an up-to-date inspection...
  8. Replies
    110
    Views
    1,216

    Re: Place Your Rants Here

    I'd rather be dead than red!
  9. Replies
    110
    Views
    1,216

    Re: Place Your Rants Here

    What is the correct direction, Anarchy?
  10. Re: how to change color of label when mouse hover?

    Or you could create something, that just added the bb code around the keyword when you're typing in vbforums or any other site that would fit the context. Even if it's not in context, I think I'd...
  11. Re: Converting textfile to datatable and back

    Well, I did an update to the code. I've added how to convert the data back from a datatable to a textfile. Still, I'd advise against storing data in a textfile, but if you must, these are some useful...
  12. VS 2010 Re: Randomly selected item from list which have a %

    It's all the same, just a different spin on it. I personally prefer the rolling a die method, somebody else may prefer the method you presented.
  13. VS 2010 Re: Randomly selected item from list which have a %

    What is done in role playing board/computer games is a dice is rolled to determine an outcome. JMcIlhinney has a code bank post here that is a Die(singular of dice) class. I would be tempted to use...
  14. Replies
    2
    Views
    321

    Re: Syntax Highlighter

    Well I updated the code a little bit. What I did was, instead of parsing the whole richtextbox.text, I parse just the line. This reduces a lot of the flickering the control had. The reason I didn't...
  15. Thread: Match Two Game

    by dday9
    Replies
    3
    Views
    109

    Re: Match Two Game

    Ahh, ok. You set the viewtime's interval to one second and then just stop it after one tick, then calling the ProcessSelection. I like how simple that is, it actually helps me out to improve some of...
  16. Thread: Match Two Game

    by dday9
    Replies
    3
    Views
    109

    Re: Match Two Game

    Should this be in the game demo's section? Nice job by the way. I like the delay after selecting two cards, where did you do that at? Also, a quick suggestion: after you display "Congratulations! You...
  17. Replies
    5
    Views
    89

    Re: Question Using String Replace

    Well regex is certainly one way, here is another:

    'Some email
    Dim email_string As String = "some.one.@here.com"

    'Get first instance of @
    Dim at_sign As Integer...
  18. Replies
    9
    Views
    155

    Re: Random PictureBox

    You know what, I think that it's a little discourteous for you to say 'it doesn't work' and 'NO idea where to start'. Have you tried tinkering with the code I provided? Does the code give any errors?...
  19. Re: how to change color of label when mouse hover?

    Niya, quick question... do you have something installed that automatically turns any keywords to a different font color(Form, Label, etc.) or do you do that manually?
  20. Replies
    9
    Views
    155

    Re: Random PictureBox

    Well in my code, at the form level I declared a new instance of a general list(of <t>) in this particular case it was a list(of picturebox). In the form_load event, I add all the controls that are...
  21. Replies
    9
    Views
    155

    Re: Random PictureBox

    Well, store you picturebox's in a list(of <t>). Then use the random class to generate a random integer from 0 to that list's count in a timer's tick event with the interval set to 1000. Finally...
  22. Thread: Global Warming

    by dday9
    Replies
    56
    Views
    818

    Re: Global Warming

    Then after warming it again, do we then start cooling again? I'm sure that it would affect the evolution of many organism, including us.
  23. Replies
    3
    Views
    80

    Re: PrintPreviewDialog Control Menu

    Yeah, take a look here on the forums. There are two post in the code bank:
    1) Merrion - Post Number 10
    2) .Paul.
  24. Re: how to change color of label when mouse hover?

    You have the wrong argument. To fix it, click on the lightning bolt in your properties window, then double click on the MouseHover event. This will automatically generate the correct event handler...
  25. Replies
    3
    Views
    80

    Re: PrintPreviewDialog Control Menu

    Why not call PrintPreviewDialog1.ShowDialog() in the form where the contents you want to print are located? Creating a whole new form just for the PrintPreviewDialog seems unnecessary.
  26. Thread: Post Race!

    by dday9
    Replies
    46,884
    Views
    816,695

    Re: Post Race!

    And what's the deal with ash treys on an airplane? Do people still use them?
  27. Replies
    47
    Views
    977

    Re: Time to move my money? I wonder.

    Or at the strip joint down the street! FD want's to keep the money...
  28. Replies
    4
    Views
    150

    Re: I need Help in Visual Basic

    Breaking down my code:

    For Each card As PictureBox In Me.Controls.OfType(Of PictureBox)()
    AddHandler card.Click, AddressOf card_Click
    Next
    Will add a click event for every...
  29. Replies
    2
    Views
    88

    Re: [RESOLVED] Listbox Odd behavior

    Filter isn't the same thing as sorting. When you use BindingSource.Filter, you return a group of rows that match a certain criteria. In this case you where returning rows where your column 'Location'...
  30. Thread: Scheduling Tasks

    by dday9
    Replies
    6
    Views
    138

    VS 2012 Re: Scheduling Tasks

    Take a look at JMcIlhinney's thread on adding a pause to your code, if used properly you can do exactly what you're wanting to do:


    Run task 1
    Pause -x- time
    Run task 2
    Pause -y- time
    Run...
  31. Replies
    1
    Views
    89

    VS 2010 Re: What part of the toolbox used?

    By rectangle, I assume that you mean a panel. A panel is a container, and is used primarily to hold a collection of controls. It's found under Toolbox -> Containers -> Panel. As for the 15 smaller...
  32. Replies
    14
    Views
    260

    Re: Visual Basic 6.0 vs Visual Basic .NET

    This discussion has been going on since vb.net came out. Plain and simple, you'll have die hard vb6 fans and then those who've embraced the newer technology and have took on vb.net. In vb.net you can...
  33. Thread: Programming jobs

    by dday9
    Replies
    15
    Views
    257

    Re: Programming jobs

    I swear I wanted to punch the guy that kept talking about how much of a genius he is and how he can speak Korean. I don't care! I just wanted to know what's up about WPF! But thank you, the very very...
  34. Replies
    110
    Views
    1,216

    Re: Place Your Rants Here

    like black lights, what the heck are those for?! Except to do trippy stuff when you're stoned out your mind! Ah highschool
  35. Thread: Programming jobs

    by dday9
    Replies
    15
    Views
    257

    Re: Programming jobs

    Well see, I don't really want this as a full time career. I just want to have some side work so that I can pay some of the bills. Besides, I don't have any cash to go back to school, nor can I afford...
  36. Replies
    4
    Views
    150

    Re: I need Help in Visual Basic

    What you do is store to variables, card1 and card2. In the card's click events, set it to visible and set either card1 or card2. Once card2 has been set, then check if it matches card1. Assuming...
  37. Thread: Programming jobs

    by dday9
    Replies
    15
    Views
    257

    Re: Programming jobs

    Really? I didn't know about that. I gotta say documentation for WPF is much easier to come by than XNA.
  38. Re: Application fails to install on other computers

    Every google result said just about the same thing:
    1) did you include the .dll
    2) is the correct version of Microsoft Office installed
  39. Thread: Programming jobs

    by dday9
    Replies
    15
    Views
    257

    Re: Programming jobs

    I haven't really messed around with WPF, I suppose I should since it seems as though XNA's going to be phased out(and that's what I was working on). That's actually why I was trying to work with XNA,...
  40. Re: Hiding/showing a label when a listbox is hidden/shown

    Just set the visibility based on the listbox's visibility:

    <label>.Visibility = <listbox>.Visibility

    no need for loops.

    Edit - I just realized you're using the .Enabled property:
    ...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4