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

Search:

Type: Posts; User: AlanCCC

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    4,712

    Re: Corrupted DBF file

    Hi,tatumbooth,

    In the past, I have encountered a similar problem and DataNumen DBF Repair at

    https://www.datanumen.com/dbf-repair/

    helps to recover all the data in my archive. So I recommend...
  2. Replies
    1
    Views
    793

    How to avoid memory fragments?

    I am developing a Visual C++ application. There is an object called CMyObject, as follows:

    typedef CMap<UINT, UINT, void *, void*> CMyMap;

    class CMyObject
    {
    public:
    CMyMap...
  3. How new/delete stores the internal info about the allocated buffer?

    I am using C++ new/delete operators to allocate/deallocate the buffers. I think for each allocated buffer, there should be an additional info block stores the size and other info about the buffer....
  4. Replies
    6
    Views
    5,609

    How to determine size of an allocated buffer

    I use new to allocate a buffer, as follows:

    BYTE *p;

    p = new BYTE[20];


    If I do NOT store the size of the allocated buffer, how to determine the buffer size via p only?

    Thanks
  5. Replies
    4
    Views
    4,588

    How to determine if a buffer is freed or not

    I use new to allocate a buffer, as follows:

    BYTE *p;

    p = new BYTE[20];


    ...

    delete p;
  6. Replies
    6
    Views
    5,226

    Code Style Checking Tool

    Hi,

    Are there any good free or commercial software that can check the C++ code style and find any codelines that violate a given code style specification? For example, whether the codeline is...
  7. Can two functions in same DLL be called by two threads?

    I write a DLL MyDLL.dll with Visual C++ 2008, as follows:

    (1) MFC static linked
    (2) Using multi-thread runtime library.

    In the DLL, this is a global data m_Data shared by two export functions,...
  8. Replies
    12
    Views
    11,241

    Best way to allocate large memory

    In my Visual C++ app, I know the total objects(CMyObject) to be allocated is 16728064 and each object is 64 byte, so the total memory to be allocated is 1GB. The memory will be allocated in the...
  9. Invoke AfxThrowMemoryException cause "Access Violation"

    I want to override the operator new in a class, as follows:

    class CMyclass
    {
    public:
    void* operator new(size_t);
    void operator delete(void*);
    };
  10. Pass more parameter in overriding new operator

    I want to override new operator in C++, by following the instructions at http://www.cprogramming.com/tutorial/operator_new.html

    class CMyclass
    {
    public:
    CMyClass(BOOL...
  11. Replies
    3
    Views
    3,926

    How to clone an object in C++?

    I define two classes in C++, as follows:

    class CBaseClass
    {

    }

    class CDerivedClass : public CBaseClass
    {
  12. Replies
    7
    Views
    1,792

    Check if a given 8 byte is a valid double

    Hi,

    Is there a function in C/C++ that can check if a given 8-byte data block is a valid double value in the valid range?

    Thanks

    Alan
  13. Replies
    2
    Views
    4,941

    How to reduce the size of an object

    I am using Visual C++ to write an app. I write CMyObject class and may allocate a lot of instances of CMyObject object, so I want to reduce the size of CMyObject class.

    What I can figure out to do...
  14. Replies
    3
    Views
    4,149

    Store some variables in disk

    Hi,

    I am using Visual C++ to write an app. One problem is that the application will allocate a lot of object instances of a specific class CMyObject, maybe 400, 000. This will cause “Out of...
  15. Replies
    2
    Views
    11,656

    How to use ATL 7.0 string conversion macros?

    I have a problem in using ATL 7.0 string conversion macros.

    My codes looks like this, which uses ATL 3.0 string conversion macros in the past:

    Void Myfunc()
    {
    USES_CONVERSION;

    LPSTR lpszA;...
  16. SEH hanlder cause compiler warnings and errors

    I use a SEH handler in my code, like this:
    __try
    {
    .. Some codes ...
    }
    __except(
    EXCEPTION_EXECUTE_HANDLER
    )
    {
    TRACE(_T("Exception"));
  17. Replies
    1
    Views
    1,775

    Whether 0xFFFF is a valid Unicode character?

    Hi,

    I just wonder whether 0xFFFF is a valid Unicode character.

    When I using the following code:

    CStringW strTempW;
    CString strTemp1;
    INT_PTR nLen;
  18. Replies
    5
    Views
    1,878

    Re: Preallocate memory for CByteArray

    If I using the following codes:

    CByteArray Buf;

    Buf.SetSize(65536); // preallocate buffer

    ...

    ...
  19. Replies
    5
    Views
    1,878

    Preallocate memory for CByteArray

    Hi,

    I am using CByteArray as a buffer in Visual C++. I want to preallocate nSize memory for for CByteArray, so that later when I try to change the buffer, by calling SetSize, Add, Remove, etc., as...
  20. How to know if a VS2008 project supports multithread or not?

    Hi,

    I get a VC2008 project with full source. How to know whether it supports multithread or not? I think as long as the “Runtime Library” under “C/C++” - “Code generation” category is...
  21. Replies
    6
    Views
    11,019

    Determine the type in the function template

    Hi,

    I want to detect the type in a function template, like this:

    template <class myType> myType Function (myType a, myType b) {

    // Detect the myType
    If (myType is int)
    {
  22. How to convert UTF-8 string to Unicode string

    I am using Visual Studio 2008. I just wonder if there are any library function in Windows SDK or MFC, or from third-parties, that can convert a UTF-8 string into Windows Unicode string(used in...
  23. Simple Web-based Teamwork Publishing System

    Hi,

    I am looking for a simple web-based teamwork publishing system, to trace the bugs of my software project.

    The system should:

    1. Be hosted on our webserver
    2. All the members of a...
  24. Replies
    2
    Views
    1,253

    Debug-only AfxMessageBox

    Hi, I am looking for a function like AfxMessageBox, but will only available in Debug Version, to display some error messages. I have thought of TRACE, but it will only dump the error message in the...
  25. Replies
    5
    Views
    2,377

    Re: Compatibility of MFC-based Automation?

    Then how to make it work with Word 2007, 2010 and 2013? Does these Word provides type libraries and I can import them with Class Wizard as well?
Results 1 to 25 of 54
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured