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
J

Jerry Wang

@Jerry Wang
About
Posts
18
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Catch database Exceptions globally
    J Jerry Wang

    U may use the wrapper classes. http://www.codeproject.com/KB/database/caaadoclass1.aspx[^] The wrapper class will catch the _com_error exceptions for u.

    C / C++ / MFC database question

  • How to Delete a used file in C++?
    J Jerry Wang

    When u create/open the file, try to specify the FILE_SHARE_DELETE parameter.

    C / C++ / MFC c++ tutorial question

  • How to Delete a used file in C++?
    J Jerry Wang

    How about MoveFileEx with MOVEFILE_DELAY_UNTIL_REBOOT?

    C / C++ / MFC c++ tutorial question

  • pdf manipulation module
    J Jerry Wang

    http://alivepdf.bytearray.org/[^] ActionScript 3 Open-Source PDF Library - 100% client side PDF generation

    ASP.NET com

  • Converting win32 console app. to service ?
    J Jerry Wang

    The simplest way is: Download the Windows Server 2003 Resource Kit Tools, http://www.microsoft.com/downloads/details.aspx?familyid=9d467a69-57ff-4ae7-96ee-b18c4790cffd&displaylang=en[^] Use the Srvany.exe, Applications as Services Utility

    C / C++ / MFC question c++

  • How to create window with Transparency level starts from 0 to 100%?
    J Jerry Wang

    The sample uses the GDI+ to load PNG / TIFF image. U can modify the code to use CXimage http://www.codeproject.com/KB/graphics/cximage.aspx[^] and normal GDI The Refresh() method in CImgBaseDialog works as the following: Paint the background first. Enumerate all child controls, and for each of them, send WM_PRINT to get the captured bitmap, paint at the same place of the fake window. Finally, caculate the position of caret, draw the caret. ---------------------------------------------------------------- English is not my native language

    C / C++ / MFC json tutorial question

  • error while inserting table with autonumber using MsAccess
    J Jerry Wang

    What is the schema of the Table1 ? It seems that you can insert into the table, but missing the field value for some additional required field. insert into Table1 values('field1', 'field2', 'field3', ..., 'fieldn') n = Table1's field's count

    C# database csharp graphics help

  • How to replace/change the container menu item and menu item behaviour from an activex control
    J Jerry Wang

    The Acrobat activex response the "Print" menu in this way: get the IHTMLWindow2 interface Advise DIID_HTMLWindowEvents2 When Invoke is called, check the DISPID = DISPID_HTMLWINDOWEVENTS2_ONBEFOREPRINT

    C / C++ / MFC tutorial c++ com adobe docker

  • g++ compiling paramter -static on Solaris sparc
    J Jerry Wang

    Why not remove -static ?

    C / C++ / MFC help c++ mysql question

  • g++ compiling paramter -static on Solaris sparc
    J Jerry Wang

    It seems that u r missing some static libraries

    C / C++ / MFC help c++ mysql question

  • How to create window with Transparency level starts from 0 to 100%?
    J Jerry Wang

    read this article, it helps http://www.codeproject.com/KB/dialog/SemiTranDlgWithCtrls.aspx[^] You can give a background, Left side transparency level = 0% Right side transparency level = 100%

    C / C++ / MFC json tutorial question

  • Execute a C# App without installing .Net Framework !
    J Jerry Wang

    Try Xenocode Postbuild Run your application on any Windows PC - Native x86 executable generation allows your .NET application to run anywhere, with or without the Framework. Embed application-specific .NET and DirectX dependencies. (Windows 9x and NT4 targets not supported.)

    C# csharp dotnet question

  • How to know the type of application?
    J Jerry Wang

    Try to create each one of the 3 types project, look at what is difference, the main difference is CMainFrame

    C / C++ / MFC tutorial question

  • Net hook
    J Jerry Wang

    1, The best way is sniffer, download the WinPcap http://www.winpcap.org/[^], and look at the samples. 2. Hoot the network api, such as send sendto etc. download M$ detours , look into the sample which hooks the network api.

    C / C++ / MFC question

  • Best way to get up to speed on web programming?
    J Jerry Wang

    PHP should be easy for u.

    C / C++ / MFC c++ graphics docker performance tutorial

  • how to prevent right click in a browser.
    J Jerry Wang

    <HTML>
    <script language="javascript">
    function preventEvt(evt)
    {
    evt.returnValue = false;
    if( evt.preventDefault ) evt.preventDefault();
    return false;
    }
    </script>
    <BODY oncontextmenu="return preventEvt(event)" onmousedown="return preventEvt(event)">

    </BODY>
    </HTML>

    This code can works in IE and Firefox, but no way in Opera

    ASP.NET csharp javascript asp-net tutorial

  • HTML Table Issue in ASP.Net Web app
    J Jerry Wang

    Add the CSS style to your table. style="table-layout:fixed; width:XXXpx"

    ASP.NET csharp html asp-net design help

  • How to close a pop-up window which was opened by java script.
    J Jerry Wang

    1. You can try to use window.showModalDialog instead of window.open. Though this is not a W3C standard, Firefox supports it now. 2. You can try Observer design pattern, each popup windows opens, add itself handle to the close event.

    ASP.NET help question csharp java javascript
  • Login

  • Don't have an account? Register

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