Can U plz help me InstallShield Problem
-
hai , I am creating a set up dialog using InstallShield12.I wrote InstallScript for this.But some Issues/I want to add some text into it.But when i add a piece of text using these methods hItem2=GetDlgItem(hDlg, STATIC_TEXT_ID); SetWindowText(hItem2, "First"); SetWindowLong(hItem2, GWL_STYLE, nStyle1); SetWindowPos(hItem2, NULL, 60,60,20,25, SWP_DRAWFRAME | SWP_SHOWWINDOW |SWP_NOSIZE|SWP_NOZORDER ); But only one line text is created , I want to add two sets of data.So I repatedly specifying the above code, But either the first one or second one is displaying, That is in the hItem having value at a single time only. can anybody help me plz..................... Jeeva
-
hai , I am creating a set up dialog using InstallShield12.I wrote InstallScript for this.But some Issues/I want to add some text into it.But when i add a piece of text using these methods hItem2=GetDlgItem(hDlg, STATIC_TEXT_ID); SetWindowText(hItem2, "First"); SetWindowLong(hItem2, GWL_STYLE, nStyle1); SetWindowPos(hItem2, NULL, 60,60,20,25, SWP_DRAWFRAME | SWP_SHOWWINDOW |SWP_NOSIZE|SWP_NOZORDER ); But only one line text is created , I want to add two sets of data.So I repatedly specifying the above code, But either the first one or second one is displaying, That is in the hItem having value at a single time only. can anybody help me plz..................... Jeeva
Jeeva Mary Varghese wrote:
But only one line text is created
Be sure the
ES_MULTILINE
style is set when creating the edit control. Besides that, your sample code obviouly only displays "First", which is indeed one line of text.~RaGE();
I think words like 'destiny' are a way of trying to find order where none exists. - Christian Graus