Search:

Type: Posts; User: MaximilianMayrhofer

Page 1 of 13 1 2 3 4

Search: Search took 0.43 seconds.

  1. Re: Why do I need to override both = and ???

    You leave star trek out of this! :mad:
  2. VS 2005 Re: Changing Button Color based on query results

    If that is indeed the case, then I would have to advise returning to my original suggestion. If you do ever want to offer to another business, what if they have more rooms? Or less? It's generally...
  3. VS 2005 Re: Changing Button Color based on query results

    Only problem would be if there weren't 107 rows I suppose, but as you said, that shouldn't ever be the case. Perhaps just code a little defensively by using the comparison:


    If...
  4. VS 2005 Re: Changing Button Color based on query results

    Even so, it will make your code lighter and easier to read :), not to mention easier to style. And you can always use LayoutPanels to ensure that the arrangement remains independent of the size of...
  5. VS 2005 Re: Changing Button Color based on query results

    Not to nitpick or anything, but hardcoding 107 buttons is hardly elegant, and is going to make your life difficult as soon as rooms are added or removed. I don't see why you don't create the buttons...
  6. Re: Why do I need to override both = and ???

    So write a better compiler. Make millions. The end.
  7. Replies
    4
    Views
    828

    VS 2008 Re: USB Drive Partitioning

    I will assume you are referring to something like this:

    http://www.shengton.co.cc/2009/11/make-windows-vista-see-your-flash-drive-as-local-disk/

    It will be difficult however to accomplish steps...
  8. Replies
    2
    Views
    742

    VS 2005 Re: Intercept Code Physics

    http://www.codeproject.com/KB/recipes/Missile_Guidance_System.aspx
  9. Re: Why do I need to override both = and ???

    http://images.tribe.net/tribe/upload/photo/f60/6ad/f606ad58-47f5-4488-8254-722341a4b726

    This argument has gone on long enough. Seriously people. Let it go. At this point it's all just...
  10. Re: Why do I need to override both = and ???

    I think we can all agree that stugol has made some excellent points about mathematically complete expressions and the glaring, or at least mildly reflective, deficiencies of the framework compiler. ...
  11. Replies
    8
    Views
    1,031

    Re: Validating/Exit issue

    You don't need to set e.Cancel OR Me.Close, just remove those lines.
  12. Re: Why do I need to override both = and ???

    Nothing is wrong with it. But like you, that wasn't the point he was making. The point was that he can refuse to use that functionality of the language without any real impact on his ability to...
  13. Replies
    4
    Views
    828

    VS 2008 Re: USB Drive Partitioning

    No, it is not possible to directly partition a device that has been flagged as removable media. To do so requires making the USB bootable with something like LiveCD, booting from it, and then...
  14. Re: Storting/Splitting String in ArrayList

    Nor am I aware of why that would strictly be necessary. Even if you want to treat every column as a string, then you can simply do the conversion as and when needed, instead of trying to force all...
  15. Re: Why do I need to override both = and ???

    Yes, I know. Everyone knows. Mathematically, in the problem domain containing all possible values, the set of elements that satisfy Not A has no intersection with the set of elements that satisfy A,...
  16. Re: Why do I need to override both = and ???

    :) but the point remains. And I have to say, VB grammar and syntax really makes me think the developers have an extremely low opinion of their users.
  17. Re: Why do I need to override both = and ???

    Assuming that you manage to only overload the '=', without the compiler being given any other instructions regarding the '<>', and your = overload is this:


    Class SingleOverload
    Private i As...
  18. Replies
    35
    Views
    2,830

    Re: Nasa

    We already have methods of destroying toxic waste. Solar Furnaces.
  19. Replies
    35
    Views
    2,830

    Re: Nasa

    What makes you think that roadworks don't go on in large cities all the time? Because they do. A system like this would be installed in stages to prevent inconvenience. And as for the secondary...
  20. Replies
    35
    Views
    2,830

    Re: Nasa

    Warehouse 13 is t3h fun.

    It has already been demonstrated that it is possible to deliver electrical power wirelessly using non-radiative resonant EM fields (Go Tesla!). You could embed a network...
  21. Re: i just finished the avatar: the last airbender series

    I refused to even consider watching it. I'm not going to let it tarnish the series for me.
  22. Replies
    13
    Views
    1,124

    Re: Samba jarates me off

    Users expecting automagic results are almost always anticipointed.
  23. Replies
    35
    Views
    2,830

    Re: Nasa

    Actually FireXtol, theories that postulate the concept of bending space-time to achieve propulsion stand on relatively firm ground. It has been shown that space-time can be warped, has been warped,...
  24. Replies
    13
    Views
    1,124

    Re: Samba jarates me off

    :lol:

    These words should be added to the standard business developer's lexicon.
  25. Replies
    35
    Views
    2,830

    Re: Nasa

    hybrid
  26. Re: i just finished the avatar: the last airbender series

    The series was FANTASTIC. Absolutely FANTASTIC.
  27. Replies
    35
    Views
    2,830

    Re: Nasa

    Unfortunately capsule, your idea exactly reflects a core problem in space travel. Propulsion, either jet fuel or your own plasma idea, is functionally equivalent to throwing a rock in one direction...
  28. Replies
    13
    Views
    1,124

    Re: Samba jarates me off

    A word that describes user expectations with breathtaking precision.
  29. Re: Both Facebook and Twitter are bad for your health

    79894
  30. Replies
    18
    Views
    1,769

    Re: Timer in a Thread

    One question, why are you polling when you can use the DataReceived event of the listener class?

    Other than that, if polling for some reason turns out to be absolutely necessary, then you would...
  31. Re: Threading and leaking memory - a demonstration

    It's not closing because you're still orphaning threads when you just close the form after starting your creation loop. Again, in the form closing event, cycle through all of your open process...
  32. VS 2005 Re: How to read a huge text file?

    that's not strictly true nbrege. The 'tab' character in files is commonly used to columnify text.
  33. Re: Help! vb.net Pong Game collision problem, extra advice welcome

    One thing, not really related to your first question, is that you shouldn't be hiding the main menu form, but actually closing it. Otherwise when you close the game window the application doesn't...
  34. Replies
    8
    Views
    1,070

    Re: [RESOLVED] My.Settings help

    Lol yea I think you posted just as I was writing. What this forum needs is a more dynamic page that tells you if something has changed while you were looking at it.
  35. Replies
    28
    Views
    1,866

    Re: Hi, My name's Shaggy and I hike

    Squirrels.
    They are nuts.
  36. Re: Threading and leaking memory - a demonstration

    The problem is a flaw in your code. I was able to reduce memory leakage drastically, essentially remove it, by simply adding the following line to your code:


    For u As Integer = 1 To 10000
    ...
  37. Re: Access Dynamic Controls

    Well the error is because a CheckBox is not a RadioButton. 'sender' refers to the object that raised the event, namely the CheckBox that you clicked. If you want to enable a specific radio button,...
  38. VS 2005 Re: How to read a huge text file?

    Not unless he's using a Commodore 64 :lol:

    zhshqzyc, what are you trying to accomplish here? Data mining, displaying the rows and columns in a datagridview?
  39. Replies
    16
    Views
    1,593

    VS 2008 Re: Creating 'custom code'

    Essentially, you want to be able to store larger amounts of data in such a form that they can be represented by a simple (preferably short) piece of code. How narrowly is this data defined? As in,...
  40. Replies
    8
    Views
    1,070

    Re: My.Settings help

    Actually you would just call the setting by name:


    For i As Integer = 1 To 5
    MessageBox.Show(DirectCast(My.Settings.Item("SiteDesc" & i.ToString()), String))
    Next
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width