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

Search:

Type: Posts; User: miteshpandey

Page 1 of 71 1 2 3 4

Search: Search took 0.08 seconds.

  1. Re: The "last one to post on this thread wins" Thread

    I have been away for a while. How you guys are doing?

    Merry Christmas and a Happy New Year to all. :):):)
  2. Re: Conditional derivation from base class based on preprocessor ifdef and ifndef

    Thanks zerver :thumb: didn't know if that was allowed :)
  3. Conditional derivation from base class based on preprocessor ifdef and ifndef

    In our application we have the option of using color management or not. We are using a special library for color management.

    This is controlled by preprocessor definitions.



    #ifdef...
  4. Replies
    4
    Views
    1,591

    Re: Birthday Game.

    I murdered a fork because I was high.

    Wow! it seems we have the same month and day :)
  5. Replies
    4
    Views
    1,017

    Re: Stack corruption

    The documentation is not upto the mark.

    Here is what it says:



    And the most frustrating thing is that we don't have any of its usage example

    Thanks,
  6. Replies
    4
    Views
    1,017

    Stack corruption

    I have a following member function prototype.



    Dtk_Int32 ConvertToGeom(Geometric_set_select_entity **res = NULL) const;


    If NULL is passed to the above function it returns the size of the...
  7. Replies
    3
    Views
    1,509

    Re: Project Out of Date message

    Thanks a lot!

    I reopened every file and again saved it. It is working now.

    Regards,
    Mitesh
  8. Replies
    3
    Views
    1,509

    Re: Project Out of Date message

    Thanks SoulDog,

    Some of the files indeed have a future file modified date. i.e. 2 hours from now.

    Any ideas how I should correct the problem? How can I change the modified date.

    Mitesh
  9. Replies
    3
    Views
    1,509

    Project Out of Date message

    Hello all,

    I am using Visual Studio 2005. Every time I execute the project it says to me that the project is out of date, and would you like to build it. What is causing this? In the successive...
  10. Replies
    3
    Views
    2,564

    Re: $_SESSION not working PHP

    Yes I am starting the session on each page.

    I am using the following as the first line on each page


    session_start()


    I am not sure I understand what you mean by id or name in one and not...
  11. Replies
    3
    Views
    2,564

    $_SESSION not working PHP

    Hello all,

    The problem is that my session variable dies in another page ...when I link from one page to another. I can access session variable in a.php but a.php -> has a link that takes you to...
  12. Replies
    0
    Views
    1,447

    ICM 2.0 and color management

    Hello all,

    Where is ICM 2.0 located in the Platform SDK?

    MSDN states that there is sample application called ICMViewer. How can I build this application. It seems I cannot locate it. Neither...
  13. Replies
    2
    Views
    708

    Question regarding file pointers

    I have the following code:



    tif->tif_diroff = (TIFFSeekFile(tif, (toff_t) 0, SEEK_END)+1) &~ 1;


    What does the above code do? Especially the bit operators

    To give you a fair idea, the...
  14. Replies
    3
    Views
    1,296

    Re: Function signature error

    Thanks a lot Martin O :thumb: . Dear God how could I have missed that? :)
  15. Replies
    3
    Views
    1,296

    Function signature error

    Hello all,

    I have the following code:



    class TiffStream {

    public:
    // ctor/dtor
  16. Replies
    5
    Views
    13,875

    Re: Request for multipage tiff files

    Thanks dglienna,

    Our software lets users view multiple pages of a tiff file by using next, previous buttons. So I need some samples to test our software.

    One or two samples would be enough....
  17. Replies
    5
    Views
    13,875

    Request for multipage tiff files

    Hello,

    I searched the net for two hours but cannot find a single sample for multipage tiff file. It would be very kind of you if anyone can provide a sample or two or suggest such links.

    Thanks.
  18. Re: which design is better to wrap another class instance

    I think it actually depends on what is Foo and what is Goo and what you are trying to achieve.

    In your example the Goo object actually owns the Foo object. But if actually Foo doesn't belong to...
  19. Replies
    1
    Views
    756

    Re: std::map weird problem

    What was I thinking there is indeed the "find" function that I can use :D
  20. Replies
    1
    Views
    756

    std::map weird problem

    Hi all,

    Is there a way to know if a particular key exists or not?

    I use a pointer to a very very big object as the value for std::map.

    If I call std::map's insert function then I have to...
  21. Re: std::map containing a struct of four doubles as key

    Thanks a lot.

    Codeguru is faster than even instant messaging :D :D
  22. Re: std::map containing a struct of four doubles as key

    Thanks Philip,

    But I think I cannot use it

    Actually my struct is like this:



    #pragma pack( push, 1 )
    struct MatPropVals
  23. std::map containing a struct of four doubles as key

    Hello all,

    I have a struct of four doubles and I want to use it as a key to std::map




    struct MatPropVals
    {
    double ambient;
  24. Replies
    0
    Views
    974

    Inno Setup

    I am a newbie in using InnoSetup.

    What I have to do is only delete a specific folder if the user confirms "Yes" to a pop up message while uninstalling my application. How to incorporate this into...
  25. Replies
    1
    Views
    1,030

    COM and IDispatch

    I have the following code:



    // Get all of the children components from this m_Component object
    _variant_t componentChildren = pComponent->GetChildren();


    The returned variant contains a...
Results 1 to 25 of 1753
Page 1 of 71 1 2 3 4





Click Here to Expand Forum to Full Width

Featured