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

Search:

Type: Posts; User: BlackDragon777

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    1,146

    Hide a Scrollbar

    Given an active x object's window handle, is there a winapi specific method of hiding its scroll bar? Maybe using SetWindowLongPtr? Thanks in advance!
  2. Replies
    2
    Views
    3,810

    WINAPI to get cpu speed?

    Besides grabbing the information from the registry, is there a simple winapi method I can invoke to get the cpu speed.
  3. Force windows controls to render offscreen

    Hi. I would like to render a flash active x control offscreen, take its texture and then render it to a quad. My screen size is 800x600.

    Obviously I don't want the flash control to be on the...
  4. Replies
    6
    Views
    1,588

    Re: Windows Control to an HBITMAP

    egawtry, thanks for your quick response.

    I am now releasing the dc for both the flash player dc and the destDC. However I am still getting a null pointer for my hbitmap's pointer to the rgb bits....
  5. Replies
    6
    Views
    1,588

    Windows Control to an HBITMAP

    Hi. I am trying to render a flash to a directx texture. This is more of a winapi question than a directx question.

    I am currently trying to use bitblt to copy the device context of my flash...
  6. Replies
    1
    Views
    3,132

    WM_MOUSE move question

    I want to send a synthetic mouse move event to a windows control. I don't want the actually cursor to move but I want the windows control to think the mouse is moving. The following is what I am...
  7. Re: Flash Control doesn't respond to WM_KEYDOWN??

    olivthil, thanks for your reply. So I updated my code to the following,



    for(int i=0; i<1000; i++)
    {
    ::SetFocus((HWND)flashPlayer->Handle.ToInt32());
    ...
  8. Flash Control doesn't respond to WM_KEYDOWN??

    I have a flash movie that i would like to control by sending WM_KEYDOWN events to. In a timer, I am constantly sending the key "LEFT" however the flash movie doesn't repsond to it. I wrote the...
  9. Re: Extract a function pointer from a delegate

    Thank you so much! That did the trick! I am a little unfamiliar with the CLR api so i was trying to tackle this problem using win api. Your solution does exactly what i need. Thanks again!
  10. Extract a function pointer from a delegate

    Hi guys. I am using a win api function called "SetWindowLongPtr" because I need to redirect a window procedure of an active x control I am using. However using CLR makes this task a bit more...
  11. Disable windows messages for all child controls

    Hi. I am using the Windows API sdk and C++ to write an application.
    I am also using an Active X control on my form. I would like to disable the right click message that is sent to that control. I...
  12. Re: Better way to load images in Applets?

    Thanks dlorde!
  13. Better way to load images in Applets?

    Hi. I want to know if there is a better more OOP way of loading images in an applet. So far the only way I know how to load images in an applet is to do the following

    In the Applet class,

    URL...
  14. Replies
    3
    Views
    1,992

    Re: keyDown delay

    Hey dlorde. Thanks for your response. You know when you play Super Mario brothers, if you press the right arrow key, mario doesn't go forward then stop for a second and then start going right...
  15. Replies
    3
    Views
    1,992

    keyDown delay

    Hi. I am making an applet side scroller game. I am using the keyDown event to detect key presses. However there is always a slight delay before the player moves because the applet is not reading...
  16. Replies
    14
    Views
    1,343

    Re: Java Bug?

    Thanks for the tip dlorde.
  17. Replies
    8
    Views
    9,975

    Re: Ajax vs Flash

    Sorry, let me better explain myself.

    I agree with you that AJAX is an implementation of passing data via xml.
    However, generally the reason people use ajax is so that their website will resemble...
  18. Replies
    14
    Views
    1,343

    Re: Java Bug?

    Yes dlorde, please teach me what you are doing there.
  19. Replies
    8
    Views
    9,975

    Ajax vs Flash

    I am not trying to start a debate or anything. However I am very curious as to why anyone should write ajax vs flash. Having used both, it has been my observation that Flash can do everything that...
  20. Replies
    3
    Views
    827

    Swing Widgets

    Hey guys. I have another question. Does anyone know if the swing control widgets are buggy? The reason I ask is because sometimes the controls or widgets will render fine but other times maybe...
  21. Replies
    14
    Views
    1,343

    Re: Java Bug?

    Thanks pete dlorde, and keang. I followed pete's advice. here is my final code.



    public static ArrayList<Content> copy(ArrayList<Content> a)
    {
    ArrayList<Content> b = new...
  22. Replies
    14
    Views
    1,343

    Re: Java Bug?

    keang, thatnks for you post. I think you provided the most useful information and I am researching it now.

    As for petes and dlorde, I am sorry because I don't think I did a good job explaining...
  23. Replies
    14
    Views
    1,343

    Java Bug?

    Hi. I need to copy an entire object and not just the reference. Obviously the clone method first comes to mind. However in my case, it is not an option because my object is composed of multiple...
  24. Replies
    0
    Views
    839

    Perspective Matrix Question

    Hi everyone. I have used OpenGL for sometime now but I wanted to get my hands dirty and write the Hello World perspective based wireframe cube example from scratch. I know that my code is VERY...
  25. Replies
    6
    Views
    1,114

    Re: Dynmaic GUI with Swing

    Again I figured it out. I got tired of trying to deal with the constraints so I just wen with a more manual approach of setting the x and y valued constraints. Don't worry. I didn't commit the...
Results 1 to 25 of 58
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured