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
A

alias0018

@alias0018
About
Posts
8
Topics
5
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Difference between .Net and VC dll delayload?
    A alias0018

    Hi all, Do you noticed a difference about dll delay-load for assembly? We know that assembly is delay-loaded by default, and it is configurable for VC. But there is a difference on when will it loaded... in VC, the dll will be loaded only when code reached exactly the line that need another dll. in .Net, it will load once it get into the method that calls another dll's code. ex: Dll1.dll class Class1 { void Fun() { int dummy = 0; Dll2.Class1.Fun(); } } Dll2.dll class Class1 { void Fun(){} } For VC, it load Dll2 when code reached "Dll2.Class1.Fun();" For .Net, it load Dll2 when code reached "int dummy = 0;" any one can tell me why there is such a difference? thanks in advance.

    do it.

    .NET (Core and Framework) csharp question

  • Questions on windows installer
    A alias0018

    I am using windows installer. I need to find where A product was installed and copy the packed dlls to the installed folder. So users are forbidden to change the install path. My questions are: 1. How to invalid the “browser” button so that users cannot change the install path? 2. How can I run some code(e.g. call a dll) at the very beginning of installation? By over writting "Install" and "BeforeInstall" methods, it can only run after the dlls were copied to installed path! thanks so much!

    do it.

    .NET (Core and Framework) question tutorial

  • How to play *.rm ?
    A alias0018

    Hi all, I wanna play *.rm file use MCI!! Can I do it? If can't ,What should I use ? Thank you so much. do it.

    C / C++ / MFC tutorial question

  • linking error!
    A alias0018

    :confused:Hi everyong! there are some errors when linking as: Linking... DSRecord.obj : error LNK2001: unresolved external symbol _DSDEVID_DefaultCapture DSRecord.obj : error LNK2001: unresolved external symbol _IID_IDirectSoundCaptureBuffer8 DSRecord.obj : error LNK2001: unresolved external symbol _IID_IDirectSoundNotify Debug/MyDS.exe : fatal error LNK1120: 3 unresolved externals I know that maybe some .lib file haven't been added to the project,but i do have linked "dsound.h" and "dsound.lib" How can I solve it? Thank you so much!

    C / C++ / MFC question debugging help

  • Help! CString convert to LPBYTE ?
    A alias0018

    Thank you so much everyone! but there is still problems! I used Mr S.Gopalakrishnan's method but there is Linking error: System.obj : error LNK2001: unresolved external symbol "public: unsigned char * __thiscall System::CString_To_LPBYTE(class CString)" (?CString_To_LPBYTE@System@@QAEPAEVCString@@@Z) Debug/ex_ShutdownWindows.exe : fatal error LNK1120: 1 unresolved externals Error executing link.exe. How can I resove it? Thank you!

    C / C++ / MFC question help

  • Help! CString convert to LPBYTE ?
    A alias0018

    :confused: //Hi all,Thank you for helping me! LPBYTE CString_To_LPBYTE(CString str) { LPBYTE lpb=new BYTE[str.GetLength()+1]; for(int i=0; ibr>lpb[str.GetLength()]=0; //???? //How can I code this line? return lpb; }

    C / C++ / MFC question help

  • problem in running an application
    A alias0018

    You may check the path! 学阿

    C / C++ / MFC help debugging announcement

  • How to get the Font width ???
    A alias0018

    //You can get it like this: double width; RECT Rect; width=Rect.right;//This is the width of your window.

    C / C++ / MFC tutorial question
  • Login

  • Don't have an account? Register

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