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
D

dfz

@dfz
About
Posts
7
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to use messagebox in ATL
    D dfz

    Another WinApi wrapper function AtlMessageBox

    ATL / WTL / STL c++ tutorial question

  • Good and Free PHP Editor/IDE
    D dfz

    I prefer SciTe. It is a very nice and light tool (not only for PHP). http://www.scintilla.org/SciTE.html[^]

    Web Development php visual-studio question

  • Confirming When Exiting Without Saving
    D dfz

    Hi, See the modified example below. I would suggest to use temporary functions to avoid javascript memory leaks. I hope this makes sense. var isDirty = false; // this is the message we will show to confirm var default_message = "You have made changes to the data since last saving. If you continue, you will lose these changes."; var checkForChange = function(msg) { if (isDirty) return confirm( !msg ? default_message : msg ); } window.onbeforeunload = function() { return default_message; }

    Web Development csharp javascript asp-net help question

  • Confirming When Exiting Without Saving
    D dfz

    i have used onbeforeunload event to confirm leave, i.e. window.onbeforeunload = function() { if (modified) return "Unsaved changes. Are you sure you want to leave?" }

    Web Development csharp javascript asp-net help question

  • Not able to get value of fiels by using $_POST in PHP
    D dfz

    It is important to make sure PHP is working on your webserver. What output are you getting? Here is an example which should work: 1. first.php <form method="post" action="second.php"> <input type="text" name="field1" /> <input type="submit" value="Send data" /> </form> 2. second.php <?PHP // print variables from POST scope. print_r($_POST); ?> Good luck :)

    Web Development php apache database mysql help

  • Files Drag operation
    D dfz

    Have you tried implementing IDropTarget in your tree control? http://www.catch22.net/tuts/dragdrop.asp

    C / C++ / MFC data-structures

  • How to use exported classes from DLL without using header.
    D dfz

    Just a thought (may not work), but if your DLL is simple enough and doesn't require any specific definitions (i.e. structures, macros) maybe this code snippet can help: typedef int (FAR * Func1_Substract)(int, int); HMODULE hMod = LoadLibrary(_T("test.dll")); Func1_Substract substract = reinterpret_cast<Func1_Substract>( ::GetProcAddress(hMod, "dll_substract_function")); int result = substract(10,10);

    C / C++ / MFC tutorial
  • Login

  • Don't have an account? Register

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