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

Search:

Type: Posts; User: lorba

Page 1 of 3 1 2 3

Search: Search took 0.04 seconds.

  1. Replies
    0
    Views
    596

    Sending EN_UPDATE from my derived CEdit

    I've derive my own edit class from a CEdit, but it does not send a EN_UPDATE as normal CEdit does. How do I make it send?

    tks
  2. Replies
    0
    Views
    811

    Arcball control like 3dstudio for opengl

    Anyone has done an arcball control alike 3d studio max before? please let me know if u have any code segment or examples.

    I am using vterrain libraries.
    I have also seen the example on glenabled...
  3. draw a compass which allows points to north in a OPENGL view

    Anyone has done similiar thing before? The compass can be 3d model such as 3ds.
  4. Anyone has CMap equivalent code which is portable?

    I need a class which is equivalent to MFC's CMap class but is portable across unix, win etc urgently. Does anyone out there has ready code for it?

    thanks
  5. Profile saving/retreiving from server using a program level login

    I am developing a program which allows operators at workstation to (1) retrieve their MMI profiles from the server after a program level login. Operators may use any workstation within the domain....
  6. Replies
    0
    Views
    489

    forum on image processing

    anyone know of any online forum or interest group which function similiarly to codeguru?
  7. Replies
    2
    Views
    549

    Insert texts into a multi-row CEdit

    Anyone has a snippet on inserting lines of texts into a multi-row CEdit?
    The CEdit only provides API for extracting, but seems to forget about inserting.
  8. Replies
    5
    Views
    7,369

    Re: How to convert RGB to CMYK color?

    Cyan = 255 - Red
    Magenta = 255 - Green
    Yellow = 255 - Blue
    Black = Min (Red, Green, Blue)

    Converting back to displayable colour (unlike Photoshop which after conversion,
    still looks very much...
  9. Replies
    5
    Views
    689

    Re: GRAY LEVEL IMAGE AS AN ARRAY

    You should look at some of the DIB classes found in the Bitmap section. Using one,
    you can directly access the pixels before drawing to your document. And it is
    so much faster compared to using...
  10. Replies
    0
    Views
    403

    edit box on dialog bar

    I had some edit box on a floating dialog bar control. But it seems that when
    the edit box has the focus, i must do an Alt-tab to use the menu Eg pressing
    Alt-F to call up the file menu.

    any...
  11. Replies
    0
    Views
    413

    document template question

    anyone has a working example on adding more than 1 doc template using totally
    different doc/view and child frame class?

    It will be good if it also allow user to select document type just like
    VC...
  12. Replies
    7
    Views
    4,116

    Re: SetPixel too slow!!

    if you just want to access the bytes of the image, say change the red channels of certain
    pixels at certain location (watever), why dont you try DIB.
    You should be able to find the example DIBLOOK...
  13. Replies
    1
    Views
    773

    Owner drawn cedit

    Hi all, i wish to draw a round shaded rectangle frame around a cedit control, how do I override
    the cedit class so that i can draw the frame myself and offset the actual text output rect to some...
  14. Replies
    0
    Views
    586

    CMultiDocTemplate question. Help!

    Hi all,

    1) Anyone can show me an example of how to create and use additional doc template?

    2) Say i have Template A for "*.mpg *.avi" and Template B for "*.bmp *.gif",
    how does the app knows...
  15. Replies
    3
    Views
    506

    Re: New File Format??

    what do you mean by this? Then what is the point of saving the file?
    Do you intend to close your program after saving a file in that manner, and expect to read in the bitmap you 'saved' again the...
  16. createprocess and pass data between it and the parent process

    How do i use CreateProcess (or any other suitable function) such that my MDI parent program can call another MDI(or dialog based) executable and pass some data (such as a string) to and fro?
    ...
  17. Replies
    4
    Views
    843

    Re: getting animation using doc redraw

    hi there, is it possible to let me have a look at that program you are writing? A sample
    will do too!
    thanks
  18. Thread: Clip art picker

    by lorba
    Replies
    0
    Views
    555

    Clip art picker

    Anyone know of any active x control which allows me to use the Clipart picker in the
    power point?
  19. Re: Can the Intel JPEG Library help me to load and save JPEG files? Thanks!

    Again. the code attached is wholesale from my program... but it should work for just some minor chances... I assume u packed your image data into DIB... if u are not sure about that... there are...
  20. Re: Can the Intel JPEG Library help me to load and save JPEG files? Thanks!

    HI, think u missed out what i typed in the last mail. The code is wholesale from my own program and thus, most would make no sense if you just cut and paste and compile.

    There are a lot of error...
  21. Re: Can the Intel JPEG Library help me to load and save JPEG files? Thanks!

    Hi, the following is what i had for writing and saving JPG using IJL lib version 1.5 (i think).
    Some code does quite specific thing for me, so you will to alter to suit your needs.

    hope it helps....
  22. Replies
    1
    Views
    701

    highlighting window under the cursor

    Anyone knows how do i draw a border around any window below the mouse cursor?

    And also, how do i detect a mouse click and the flags when i clicked the mouse
    outside of my application?

    thanks
  23. Replies
    3
    Views
    754

    Re: how to code to change wallpaper?

    HI, this is what i did:

    #define CAPS_WALLPAPER_BESTFIT 0
    #define CAPS_WALLPAPER_STRETCH 1
    #define CAPS_WALLPAPER_TILE 2

    void CMainFrame::SetWallPaper ( int Style )
    {
    // Get window path...
  24. Replies
    9
    Views
    3,445

    Re: Flash (correct) help

    Hi, is there any way to grab a frame or save a .swf file using the active X control?
  25. Thread: Popup menu

    by lorba
    Replies
    1
    Views
    490

    Popup menu

    Hi all, my program currently has a set of tool buttons which when clicked, changes the
    toolbar to show the subset of that particular tool.
    I want some of functionality of the particular tool to be...
Results 1 to 25 of 57
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured