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

Search:

Type: Posts; User: revg75

Page 1 of 4 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    0
    Views
    638

    Alpha Blend Masking problem, need help.

    Edit: Nevermind...
  2. Replies
    3
    Views
    1,004

    How to move two windows simultaneously...

    Hi,

    I have two toplevel windows, one is placed directly over the other one and they are both the same width and hight and position. When the top window is moved I need to move the bottom window...
  3. Re: Fast keyword search through CSortedArray??? Anyone know how?

    Alrighty! Perfect thanks alot guys.

    I will just have them click a search button when they are done.

    Just incase you are interested I was trying to mimic the Winamp jump search box. If you start...
  4. Re: Fast keyword search through CSortedArray??? Anyone know how?

    Ya my search requirements are a bit weird, but not that weird.

    If an item in the list was

    iamadonkey

    The user could type 'don', or 'donk', or 'key' and it would return a match. However if...
  5. Re: Fast keyword search through CSortedArray??? Anyone know how?

    HAHAHA ok! Maybe I have to change my seach engine then... I might have to give the option to search within a word or from the begingin and just let my users know that when they want to search within...
  6. Re: Fast keyword search through CSortedArray??? Anyone know how?

    Yes I would want frog to show up :)
  7. Re: Fast keyword search through CSortedArray??? Anyone know how?

    The thing is though.... That I have to check each single item no matter what anyway to see if that items name contains any of the letters typed into the text box, so would it really matter in this...
  8. Re: Fast keyword search through CSortedArray??? Anyone know how?

    Well it's pretty fast... doesn't take it long, but when it searches as you type keys it pauses in between keystrokes because it is taking so much cpu I think...

    Is this right?
  9. Fast keyword search through CSortedArray??? Anyone know how?

    Hi There,

    I have a virtual listview that I load up anywhere from 20,000 to 200,000 records into. The virtual listview handles this no problem at all. I am using the CSortedArray by PJ Naughter...
  10. Replies
    5
    Views
    1,245

    Re: Which is faster Database or Serialization?

    There will only ever be 1 user on the system maximum ever. It is a single user application.

    Cheers,
    greg
  11. Replies
    5
    Views
    1,245

    Re: Which is faster Database or Serialization?

    Ok, well it sounds like I should stick with the access 2000 database since I already have all the code written. it would be a rather large undertaking to switch it over to serialization.

    I guess...
  12. Replies
    5
    Views
    1,245

    Which is faster Database or Serialization?

    Hi,

    I am writing an application that will be storing 10's of thousands of records. I am wondering what would be faster in terms of searching for records, using serialization or using an Access...
  13. Replies
    21
    Views
    8,261

    Re: StretchBlt slow, can I use directx somehow?

    Try scaling a 300x216 bitmap up to 1024x768 using stretchblt. That is what I am doing and it is very slow if you want to get a decent framerate.

    I have been trying a few things, but it looks like...
  14. Replies
    21
    Views
    8,261

    Re: StretchBlt slow, can I use directx somehow?

    Hi,

    thanks for the thoughts. I am actually using a multimedia timer to update the screen. My settings are this

    timeSetEvent(100,250, (LPTIMERCALLBACK)&TimerProc, (DWORD)this, TIME_PERIODIC)
    ...
  15. Replies
    21
    Views
    8,261

    StretchBlt slow, can I use directx somehow?

    Hi,

    I have a constantly changing 300x216 byte array which contains a bitmap essentially. It is actually a CDG (karaoke) file streaming in. So each time I get the bitmap data it is changing. I...
  16. Replies
    5
    Views
    2,487

    Re: How to populate CTreeCtrl from list of paths?

    Thanks for the reply, but there is one problem.

    The example you gave me is much easier to do such a thing because it is given one single path and then it just starts adding children (everything is...
  17. Replies
    5
    Views
    2,487

    How to populate CTreeCtrl from list of paths?

    Hi,

    I have been going crazy trying to come up with a recursive function for populating a CTreeCtrl from a list of paths in the database like shown below:

    c:\documents and...
  18. Replies
    5
    Views
    1,055

    Re: help with stetchblt performance

    K I changed the code here to stretchblt to the compatible dc and it does go faster, but the pDC is not the correct size!!

    the pDC show up at 300x216 even though memdcX is 600x432?? why wouldn't...
  19. Replies
    5
    Views
    1,055

    Re: help with stetchblt performance

    yes pDC is the device context I want to draw to.
  20. Replies
    5
    Views
    1,055

    Re: help with stetchblt performance

    I thought that's what I was doing? Could you post sample code of what you mean?

    Thanks,
    Greg
  21. Replies
    5
    Views
    1,055

    help with stetchblt performance

    Hey guys. I am reading in a cdg file (karaoke) for mp3+g playback. I have it all working, but I have one little problem. The cd+g is meant to be played at the size 300 x 216, but I want to go 2x, 3x,...
  22. Replies
    1
    Views
    3,503

    Re: timeSetEvent problems...

    Anyone have a clue?

    Thanks,
    Greg
  23. Replies
    1
    Views
    3,503

    timeSetEvent problems...

    Hi,

    I am using multimedia timers throughout my application and have never had any problems with them until today.

    I created a dll file that has a multimedia timer that runs inside it from...
  24. Replies
    1
    Views
    919

    direct3d createdevice question

    I have a direct3d question I hope someone here can help. When I use CreateDevice to initialize a LPDIRECT3D object I know I can use D3DADAPTER_DEFAULT to specify the primary adapter or use the device...
  25. open window from UI Thread interupts main thread???

    Hi Guys,


    I have a window that is going to do visualization display just like winamp. I notice when winamps visualization plays the audio is never interupted by the visualization display.

    I...
Results 1 to 25 of 92
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured