CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: CrashPilot

Page 1 of 2 1 2

Search: Search took 0.08 seconds.

  1. Replies
    7
    Views
    1,186

    Re: Combobox isn;t returning a value

    Can you please post a working sample, whatever I try to do with that, it throws some form of exception:

    using the .item(0): Fails, public datamember does not exist
    Casting to datarow : Cannot...
  2. Replies
    7
    Views
    1,186

    Re: Combobox isn;t returning a value

    I am secretly laughing my balls off a.t.m. *huh? HUUUUUUUUUUUUUUUUH? WT....*

    Weirdest thing I ever saw dmleone!, I succesfully replicated your problem and it baffles me completely. I.... I .......
  3. Re: [2008] How to texture a triangle (2D)

    Unfortunatly almost directly after I posted this message and went back to VS I accedently found the texturebrush and after a quick test I found that that was also the answer to the question. For...
  4. [RESOLVED] [2008] How to texture a triangle (2D)

    Hello,

    Currently working on a 2D engine, not for gaming but for design software / visualisation for machines. So far it is comming along quite fine. I started to wonder if it were possible to...
  5. Re: Reading the barcode through usb barcode scanner using C++

    Unfortunatly I am quite busy atm, a lot of projects running paralell to each other. I'll have a look at it this evening.
  6. Replies
    8
    Views
    1,301

    Re: How to create a delay in hour

    assumtion was entirely based on nickname, it just ... sound girly :P

    (And yes, it's not a myth, there are female programmers)
  7. Replies
    8
    Views
    1,301

    Re: How to create a delay in hour

    I am not sure what dgliena is trying to say, but she might be right. At this moment I see no reason why any button shouldn't show becouse the timer is a threaded item. EVEN with a cycle of 1 ms that...
  8. Re: [2008] List all possible sums of a combination

    I totally agree, if that were the case. I dont see him stating that each number must be unique just one of the 36 possibilities. I am not saying that I am right or wrong for that matter we'll have to...
  9. Re: [2008] List all possible sums of a combination

    Looking wrong doesn't make it wrong untill you can deliver a reason why you believe it is wrong. For up to now this is a useless comment unless you are trying to farm posts then it would be usefull...
  10. Re: [2008] Custum control transparency

    If I may believe the otherforums that I found where they have the exact same issue it is impossible to achieve this and therefor I am going for a different solution. I'll mark this as resolved.
  11. [RESOLVED] [2008] Custum control transparency

    Hi there,

    This is my first attemt to create a new custom controll that I'll be spawning in runtime. I have written rendering onto a control before but this is the first time I made a real user...
  12. Re: [2008] List all possible sums of a combination

    This should work (tested it and it did for me)



    Dim myList As New List(Of Integer) 'Contains the list of all numbers
    Dim A As UInteger = 1 'Some counter...
  13. Replies
    8
    Views
    1,301

    Re: How to create a delay in hour

    This should do what you want:



    Dim WithEvents myTimer as new Timer()
    Dim myCounter As Integer = 0

    Public Sub New()
    myTimer.Interval = 1000 * 3600 '1000 ms = 1 sec, there are...
  14. Re: Reading the barcode through usb barcode scanner using C++

    Ok, thats a start, so you have the drivers / libraries and you dodged the shitstorm.



    Good now we got some context, however it's not enough. We would like to know what you want to do with the...
  15. Re: [RESOLVED] Another Logic Question: Button Control Only To Fire Once.

    Except that it wasn't intended as a solution but as a possible explanation on the behaviour he / she was looking for.

    ^^

    --edit:



    No. Turning it false simply means that YOU will handle...
  16. Re: [RESOLVED] Determining the size of an variable array of pointers

    Meh thought so. I'll look into the vector idea, never used them yet.

    Ty Paul ^^
  17. Replies
    3
    Views
    782

    Re: Passing an event as a parameter

    Hmmm isn't it easier to incorperate a global flag that indicates if a handler is already existant and test that in your event? Or any event for that matter where you add a handler?, if the flag =...
  18. Replies
    26
    Views
    87,574

    Re: disable windows, ctrl, alt, del key

    How about just using windows steady state, create a new user for windows and lock it up (including ctrl alt del)? It's free and too easy to use!
  19. [RESOLVED] Determining the size of an variable array of pointers

    Hello,

    I've searched a while now for an answer to this problem. At the moment the tendancy is that this is not possible.

    Ritght now I have a class that gets a pointer to an array of pointers....
  20. Replies
    3
    Views
    688

    Re: how to read a file's bytes?

    Theres realy TONS of tutorials on filestreams, here's one:

    http://courses.cs.vt.edu/~cs2604/fall02/binio.html

    Good Luck :)
  21. Re: Another Logic Question: Button Control Only To Fire Once.

    HRRRRrrmmmmmmmmmhhhhhhhhhhhhhh??? Whatever that code is supposed to do, rightnow it just returns TRUE and nothing else! Maybe you meant:



    //Reset Button
    case IDC_BTN_RSTR:
    {
    static BOOL...
  22. Re: Reading the barcode through usb barcode scanner using C++

    Wow that was confusing,

    Assuming you do not actually need to write the drivers to control the USB communication
    And assuming that you can receive bytes or chars via some .dll delivered by the...
  23. Re: Start thread within a object, and have acces to it aswell

    I must stand corrected, I forgot how dubious doubles are in C++ and how they never make sense :P, The performance drop wasn't 3 ms (or 1700% in my case) but more in the lines of 0.04 uSecs which is...
  24. Re: Start thread within a object, and have acces to it aswell

    In fact it's not even in there at all! hahaha :P
  25. Replies
    8
    Views
    4,211

    Re: Delete Row From DataGridView by Checkbox

    Datagrid views are a bit tricky to refresh. The onlyway to let them redraw the table is by re-linking the dataset and call refresh(). This is a very commonly asked problem on the extreme vb forums :)...
Results 1 to 25 of 30
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured