Click here to Skip to main content
15,902,634 members

Comments by TimGallin (Top 9 by date)

TimGallin 22-Feb-17 22:57pm View    
there is no error message,I'm just wonder why i build curl and openssl static but still need openssl related dll in my own project.
TimGallin 27-Nov-16 22:07pm View    
It doesn't work,I have to call doConfigure() function again in main(),in Getinstance() function,I return a static object vLogCp,its lifetime should be the whole process,and the static member variable of vLogCp has be initialed in the constructor func,which include the doConfigure() already,so why I still have to call the doConfigure agian in main()?
Following is my config text:
log4cplus.appender.R=log4cplus::RollingFileAppender
log4cplus.appender.R.File=output_${ENV_VAR}.log
log4cplus.appender.R.MaxFileSize=500KB
log4cplus.appender.R.MaxBackupIndex=5
log4cplus.appender.R.layout=log4cplus::TTCCLayout

log4cplus.rootLogger=INFO, R
log4cplus.logger.test.a.b.c=WARN
log4cplus.logger.filelogger=WARN, R
log4cplus.additivity.filelogger=FALSE
TimGallin 5-Sep-16 2:34am View    
Thanks for you comments,I'm used to tag c++,maybe I should have tagged as pascal or innosetup.I remember that codeproject not support custom tags... Now I found the installation can be stopped in InitializeSetup before anything is installed,maybe there is a way to send close message to the process instead of click the cancelbtn to stop the installation,I haven't tried this method so far...
TimGallin 29-Aug-16 4:34am View    
Yup,thanks,now i know the reason.If I use ShellExecute on XP,the lpParameters's limitation is around 2048,the CreateProcess's limitation is around 32767,the CMD.EXE is around 8192.Is there a solution to resolve this problem when I use ShellExecute ?
TimGallin 20-Apr-16 22:27pm View    
Does this tool have the function? Writing a function that will excute an installation of a exe format package.