use inno setup for creating setup of ur project
ani_ikram
Posts
-
Creating a setup for installtion of MFC Application -
set monitor frequencyhow to set monitor frequency using vc++ code?
-
execution code during installation of setup...........is there some method to exeucte code(source file) during installation of software setup(using inno setup) like suppose if i want to generate Unique id in a file using some code during installation, i hv file containing code for key generation but no idea how to exeute it during installation .
-
status of printer on network...............thanks for da reply i will check it
-
status of printer on network...............is there some way to check status of printer(selected from CPrintdialog selection) means either its Ready, offline or unable to connect with server ?? like GetDeviceName() gives name of printer but how to check its status......... pls help
-
get printer status............before sending info for printing using CPrintDialog how to check whether selected printer(using printer dialog) is ready to print(attached to server) . i m using following code for printdialog call and getting selected printer name but unable to check status of selected print is there some method ??
bool bNewDlg = true;
// if no special printer-dialog is given, we take the standard printer-dialog
if (m_printDlg == NULL)
{
m_printDlg = new CPrintDialog(FALSE,PD_DISABLEPRINTTOFILE);
bNewDlg = false;
}ASSERT(m\_printDlg != NULL); if (PrinterName == NULL) { // which printer ist desired, and how much copies? if (m\_printDlg->DoModal() == IDCANCEL) return (-1); m\_hprinter = m\_printDlg->GetPrinterDC(); CString cs; cs= m\_printDlg->GetDeviceName(); // AfxMessageBox(cs); m\_hprinter=m\_printDlg->GetPrinterDC(); if(m\_hprinter==NULL) return; m\_numCopies = m\_printDlg->GetCopies ();
-
set button size dynamicallythanks for da reply but will u plz send me code using these methods as never used before
-
set button size dynamicallyhow can i set button size according to text size dynamically, means in run time text of button is changed using setwindowtext() method but size of button remain static either text is small or larger so how to fix it, pls help
-
prohbit shift key in edit box............thanks alot nave u really solved my problem
-
prohbit shift key in edit box............void EditEx::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags) { if( !isdigit(nChar) && !isalpha( nChar )) { return; } CEdit::OnChar(nChar, nRepCnt, nFlags);} i hv used this method but its also restricting to enter float value while i want to enable float numbers as well plz tell me how to do it
-
prohbit shift key in edit box............can u plz send me code so that i can get idea
-
prohbit shift key in edit box............i want to make user to only input numbers (1 to so on) but not spectial charters using shift like (%,#,@,!,^,&,*,()) etc
-
prohbit shift key in edit box............how can i restrict user from pressing shift key in editbox .. plz help me
-
call OnKillFoucus event of Edit box..............is there some way to call OnKillFocus Method of editboz against button clicking.
-
set fontsize of static text.....how to set font size of static text...?
-
load bitmap..............using HBITMAP hbitmap = (HBITMAP)LoadImage(NULL,"D:\\a.bmp",IMAGE_BITMAP,0,0,LR_LOADFROMFILE); but how can make resource ID of this image.
-
load bitmap..............i need resource id in some method is there anyway to create resource id while loading image .
-
load bitmap..............how can i load image from c: directory and then making a resouce ID for that image using coding as bmp.loadbitmap require resource ID of bitmap. plz help..
-
pass query string.............how can i pass query string when giving hyperlink to text and in its properties(hyperlink) giving URl of next page (detail.aspx) and then in detail page usging that query string value access data dynamically from database (using control ,datalist) means what would be query like select * from p_table where dvd_id="querystring" //how to do this..?
-
get system date in (mm/dd/yy) formathow can i get system date in (mm/dd/yy) format.........?