Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
M

MS_TJ

@MS_TJ
About
Posts
6
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • geting error message "Attempted to read or write protected memory. This is often an indication that other memory is corrupt." for code given below its aaper after end of function
    M MS_TJ

    I found the error i was creating the object with diff class and trying to delete it with different class destructor the problem was in DLL only.

    C# performance help

  • geting error message "Attempted to read or write protected memory. This is often an indication that other memory is corrupt." for code given below its aaper after end of function
    M MS_TJ

    protected virtual void Dispose(bool bDisposing) { if (bDisposing) { // No need to call the finalizer since we've now cleaned // up the unmanaged memory GC.SuppressFinalize(this); } if(this.m_pNativeObject != IntPtr.Zero) { // Call the DLL Export to dispose this class DisposeNetworkImp(this.m_pNativeObject); } }

    C# performance help

  • new vs free and malloc vs delete
    M MS_TJ

    If you try to write a code, using this option it will compile but at run time the 1) Combination of malloc and delete get crashed 2) If you allocated memory for object using new and try free for deallocating memory there will be memory leakage problem because destructor never call by free

    C / C++ / MFC visual-studio performance

  • How to Convert CString to char array?
    M MS_TJ

    TCHAR path[ MAX_PATH ]; Cstring str; _tcscpy(path, str);

    C / C++ / MFC question data-structures performance tutorial

  • Keypad mapping
    M MS_TJ

    thankes its really good solution i already tried this but how can i handle KEYDOWN event on dialog box.

    Mobile csharp help learning

  • Keypad mapping
    M MS_TJ

    I am developing Application using Wince.Net. I want to remap the Keys.means we use the rotary switch for navigational purpose so i want to do that when i rotate the switch it act like left arrow key when press it it act like enter key pls help me #include "stdafx.h" #include "resource.h" #include "Types.h" //Include All Global Variable And Function. #include "tchar.h" #define TIMER_DISPLAY 1 #include "CMonApp.h" // Global Variables for Application CMonApp oCMonApp; void tempwave(HWND); // Global Variables: HINSTANCE ghInst; // current instance HWND ghWnd; // Main Application Window, parent to all other windows. wchar_t szTitle[STRTAB_STRINGSIZE]; // The title bar text wchar_t szAppName[STRTAB_STRINGSIZE]; // The title bar text // Forward declarations of functions included in this code module: ATOM MyRegisterClass(HINSTANCE hInstance); BOOL InitInstance(HINSTANCE, int); LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); BOOL CALLBACK MenuDlgProc(HWND,UINT,WPARAM,LPARAM); int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow) { SignalStarted(_wtol(lpCmdLine)); // TODO: Place code here. MSG msg; HACCEL hAccelTable; // Initialize global strings LoadString(hInstance, IDS_Wnd_Class_Name, (LPTSTR)szAppName, STRTAB_STRINGSIZE); // Load the Application Name String from String Table. LoadString(hInstance, IDS_TITLE, (LPTSTR)szTitle, STRTAB_STRINGSIZE); // Load the Application Title String from String Table. MyRegisterClass(hInstance); //Call function MyRegisterClass to Create Class of Main Application // Perform application initialization: if (!InitInstance (hInstance, nCmdShow)) { return FALSE; } hAccelTable = LoadAccelerators(hInstance, (LPCTSTR)IDS_TITLE); // Main message loop: while (GetMessage(&msg, NULL, 0, 0)) { if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg)) { TranslateMessage(&msg); DispatchMessage(&msg); } } return msg.wParam; } // // FUNCTION: MyRegisterClass() // // PURPOSE: Registers the window class. // // COMMENTS: // // This function and its usage is only necessary if you want this code // to be compatible with Win32 systems prior to the 'RegisterClassEx' // function that was added to Windows 95. It is import

    Mobile csharp help learning
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups