How to hide Enter Parameter Value when navigate to next page in crystal reports?2019 Community Moderator ElectionHow to set database login infos (connection info) for crystal report?Crystal Report “Logon failed…” Error when trying to navigation to next pageCrystal Reports Programatically sort using two passed in parameters“Missing Parameter Values” error on moving to next page of reportCrystal Report error Missing parameter values when move to next pageCrystal report Error when navigating to next page?passing parameter to the CRYSTAL REPORT through C# in asp.netHow to update parameter of a Crystal Report with Crystal Reports Server?On navigating to next page, crystal report asks for logon info againWhy crystal report required parameter again when print/export

Why did it take so long to abandon sail after steamships were demonstrated?

When to use a slotted vs. solid turner?

Why Choose Less Effective Armour Types?

Professor being mistaken for a grad student

How to get the n-th line after a grepped one?

Meme-controlled people

Happy pi day, everyone!

How to terminate ping <dest> &

Examples of transfinite towers

Is there a symmetric-key algorithm which we can use for creating a signature?

Why does overlay work only on the first tcolorbox?

A diagram about partial derivatives of f(x,y)

PTIJ: Who should I vote for? (21st Knesset Edition)

Have the tides ever turned twice on any open problem?

Is a party consisting of only a bard, a cleric, and a warlock functional long-term?

How are passwords stolen from companies if they only store hashes?

Do I need life insurance if I can cover my own funeral costs?

Adventure Game (text based) in C++

Do the common programs (for example: "ls", "cat") in Linux and BSD come from the same source code?

What is a ^ b and (a & b) << 1?

Custom alignment for GeoMarkers

What is the purpose or proof behind chain rule?

What did “the good wine” (τὸν καλὸν οἶνον) mean in John 2:10?

Is honey really a supersaturated solution? Does heating to un-crystalize redissolve it or melt it?



How to hide Enter Parameter Value when navigate to next page in crystal reports?



2019 Community Moderator ElectionHow to set database login infos (connection info) for crystal report?Crystal Report “Logon failed…” Error when trying to navigation to next pageCrystal Reports Programatically sort using two passed in parameters“Missing Parameter Values” error on moving to next page of reportCrystal Report error Missing parameter values when move to next pageCrystal report Error when navigating to next page?passing parameter to the CRYSTAL REPORT through C# in asp.netHow to update parameter of a Crystal Report with Crystal Reports Server?On navigating to next page, crystal report asks for logon info againWhy crystal report required parameter again when print/export










1















In my crystal reports when i navigate to next page its asking to enter parameters values again , I already passed parameters value when run crystal reports. Why its asking again when navigate to next page?



I tried some solutions but its still asking for parameters values when navigate to next page ?



i tried this code :



CrystalReportViewer1.ReuseParameterValuesOnRefresh = false;


I expect when click next page button to use same parameters values and not asking again to Enter values.



This is my code:



I have my data in another window in datagrid view and there is hyperlink print result when click on it i send the primary key by using query string to the crystal report window
this is the hyper link code



<asp:TemplateField>
<HeaderTemplate>Options</HeaderTemplate>
<ItemTemplate>
<asp:HyperLink ID="HyperLink1" NavigateUrl='<%#"/RPT/WebForm1.aspx?order_id=" +Eval("Request number")+"&DEPT ID=" +Eval("DEPT ID")+"&Test Id=" +Eval("Test Id")%>' runat="server">Print Result</asp:HyperLink>
</ItemTemplate>
</asp:TemplateField>


and this is page load code in the other window :



protected void Page_Load(object sender, EventArgs e)


if (!IsPostBack)


TXTORDERID.Text = Request.QueryString["order_id"].ToString();
TXTDEPTID.Text = Request.QueryString["DEPT ID"].ToString();
TXTTESTID.Text = Request.QueryString["Test Id"].ToString();
ReportDocument reportDocument = new ReportDocument();
ParameterFields paramFields = new ParameterFields();
ParameterField paramField = new ParameterField();
ParameterDiscreteValue paramDiscreteValue = new ParameterDiscreteValue();



paramField.Name = "@ORDER_ID";
paramDiscreteValue.Value = TXTORDERID.Text.ToString();
paramField.CurrentValues.Add(paramDiscreteValue);
paramFields.Add(paramField);

paramField = new ParameterField();
paramDiscreteValue = new ParameterDiscreteValue();
paramField.Name = "@deptid";
paramDiscreteValue.Value = TXTDEPTID.Text.ToString();
paramField.CurrentValues.Add(paramDiscreteValue);
paramFields.Add(paramField);

CrystalReportViewer1.ParameterFieldInfo = paramFields;
CrystalReportViewer1.ReuseParameterValuesOnRefresh = true;
CrystalReportViewer1.ToolPanelView = CrystalDecisions.Web.ToolPanelViewType.None;
reportDocument.Load(Server.MapPath("~/RPT/RPT_RESULT.rpt"));
CrystalReportViewer1.ReportSource = reportDocument;
reportDocument.SetDatabaseLogon("DBA", "2006");











share|improve this question
























  • Post code, and also check if it is because of Postback?

    – JulyOrdinary
    Mar 7 at 9:43











  • @JulyOrdinary , i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

    – ziadqasem
    Mar 7 at 15:32











  • Try following to check if code is missing something stackoverflow.com/questions/12002957/…

    – JulyOrdinary
    Mar 8 at 10:42












  • @JulyOrdinary yes its working thank you

    – ziadqasem
    Mar 8 at 21:36















1















In my crystal reports when i navigate to next page its asking to enter parameters values again , I already passed parameters value when run crystal reports. Why its asking again when navigate to next page?



I tried some solutions but its still asking for parameters values when navigate to next page ?



i tried this code :



CrystalReportViewer1.ReuseParameterValuesOnRefresh = false;


I expect when click next page button to use same parameters values and not asking again to Enter values.



This is my code:



I have my data in another window in datagrid view and there is hyperlink print result when click on it i send the primary key by using query string to the crystal report window
this is the hyper link code



<asp:TemplateField>
<HeaderTemplate>Options</HeaderTemplate>
<ItemTemplate>
<asp:HyperLink ID="HyperLink1" NavigateUrl='<%#"/RPT/WebForm1.aspx?order_id=" +Eval("Request number")+"&DEPT ID=" +Eval("DEPT ID")+"&Test Id=" +Eval("Test Id")%>' runat="server">Print Result</asp:HyperLink>
</ItemTemplate>
</asp:TemplateField>


and this is page load code in the other window :



protected void Page_Load(object sender, EventArgs e)


if (!IsPostBack)


TXTORDERID.Text = Request.QueryString["order_id"].ToString();
TXTDEPTID.Text = Request.QueryString["DEPT ID"].ToString();
TXTTESTID.Text = Request.QueryString["Test Id"].ToString();
ReportDocument reportDocument = new ReportDocument();
ParameterFields paramFields = new ParameterFields();
ParameterField paramField = new ParameterField();
ParameterDiscreteValue paramDiscreteValue = new ParameterDiscreteValue();



paramField.Name = "@ORDER_ID";
paramDiscreteValue.Value = TXTORDERID.Text.ToString();
paramField.CurrentValues.Add(paramDiscreteValue);
paramFields.Add(paramField);

paramField = new ParameterField();
paramDiscreteValue = new ParameterDiscreteValue();
paramField.Name = "@deptid";
paramDiscreteValue.Value = TXTDEPTID.Text.ToString();
paramField.CurrentValues.Add(paramDiscreteValue);
paramFields.Add(paramField);

CrystalReportViewer1.ParameterFieldInfo = paramFields;
CrystalReportViewer1.ReuseParameterValuesOnRefresh = true;
CrystalReportViewer1.ToolPanelView = CrystalDecisions.Web.ToolPanelViewType.None;
reportDocument.Load(Server.MapPath("~/RPT/RPT_RESULT.rpt"));
CrystalReportViewer1.ReportSource = reportDocument;
reportDocument.SetDatabaseLogon("DBA", "2006");











share|improve this question
























  • Post code, and also check if it is because of Postback?

    – JulyOrdinary
    Mar 7 at 9:43











  • @JulyOrdinary , i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

    – ziadqasem
    Mar 7 at 15:32











  • Try following to check if code is missing something stackoverflow.com/questions/12002957/…

    – JulyOrdinary
    Mar 8 at 10:42












  • @JulyOrdinary yes its working thank you

    – ziadqasem
    Mar 8 at 21:36













1












1








1








In my crystal reports when i navigate to next page its asking to enter parameters values again , I already passed parameters value when run crystal reports. Why its asking again when navigate to next page?



I tried some solutions but its still asking for parameters values when navigate to next page ?



i tried this code :



CrystalReportViewer1.ReuseParameterValuesOnRefresh = false;


I expect when click next page button to use same parameters values and not asking again to Enter values.



This is my code:



I have my data in another window in datagrid view and there is hyperlink print result when click on it i send the primary key by using query string to the crystal report window
this is the hyper link code



<asp:TemplateField>
<HeaderTemplate>Options</HeaderTemplate>
<ItemTemplate>
<asp:HyperLink ID="HyperLink1" NavigateUrl='<%#"/RPT/WebForm1.aspx?order_id=" +Eval("Request number")+"&DEPT ID=" +Eval("DEPT ID")+"&Test Id=" +Eval("Test Id")%>' runat="server">Print Result</asp:HyperLink>
</ItemTemplate>
</asp:TemplateField>


and this is page load code in the other window :



protected void Page_Load(object sender, EventArgs e)


if (!IsPostBack)


TXTORDERID.Text = Request.QueryString["order_id"].ToString();
TXTDEPTID.Text = Request.QueryString["DEPT ID"].ToString();
TXTTESTID.Text = Request.QueryString["Test Id"].ToString();
ReportDocument reportDocument = new ReportDocument();
ParameterFields paramFields = new ParameterFields();
ParameterField paramField = new ParameterField();
ParameterDiscreteValue paramDiscreteValue = new ParameterDiscreteValue();



paramField.Name = "@ORDER_ID";
paramDiscreteValue.Value = TXTORDERID.Text.ToString();
paramField.CurrentValues.Add(paramDiscreteValue);
paramFields.Add(paramField);

paramField = new ParameterField();
paramDiscreteValue = new ParameterDiscreteValue();
paramField.Name = "@deptid";
paramDiscreteValue.Value = TXTDEPTID.Text.ToString();
paramField.CurrentValues.Add(paramDiscreteValue);
paramFields.Add(paramField);

CrystalReportViewer1.ParameterFieldInfo = paramFields;
CrystalReportViewer1.ReuseParameterValuesOnRefresh = true;
CrystalReportViewer1.ToolPanelView = CrystalDecisions.Web.ToolPanelViewType.None;
reportDocument.Load(Server.MapPath("~/RPT/RPT_RESULT.rpt"));
CrystalReportViewer1.ReportSource = reportDocument;
reportDocument.SetDatabaseLogon("DBA", "2006");











share|improve this question
















In my crystal reports when i navigate to next page its asking to enter parameters values again , I already passed parameters value when run crystal reports. Why its asking again when navigate to next page?



I tried some solutions but its still asking for parameters values when navigate to next page ?



i tried this code :



CrystalReportViewer1.ReuseParameterValuesOnRefresh = false;


I expect when click next page button to use same parameters values and not asking again to Enter values.



This is my code:



I have my data in another window in datagrid view and there is hyperlink print result when click on it i send the primary key by using query string to the crystal report window
this is the hyper link code



<asp:TemplateField>
<HeaderTemplate>Options</HeaderTemplate>
<ItemTemplate>
<asp:HyperLink ID="HyperLink1" NavigateUrl='<%#"/RPT/WebForm1.aspx?order_id=" +Eval("Request number")+"&DEPT ID=" +Eval("DEPT ID")+"&Test Id=" +Eval("Test Id")%>' runat="server">Print Result</asp:HyperLink>
</ItemTemplate>
</asp:TemplateField>


and this is page load code in the other window :



protected void Page_Load(object sender, EventArgs e)


if (!IsPostBack)


TXTORDERID.Text = Request.QueryString["order_id"].ToString();
TXTDEPTID.Text = Request.QueryString["DEPT ID"].ToString();
TXTTESTID.Text = Request.QueryString["Test Id"].ToString();
ReportDocument reportDocument = new ReportDocument();
ParameterFields paramFields = new ParameterFields();
ParameterField paramField = new ParameterField();
ParameterDiscreteValue paramDiscreteValue = new ParameterDiscreteValue();



paramField.Name = "@ORDER_ID";
paramDiscreteValue.Value = TXTORDERID.Text.ToString();
paramField.CurrentValues.Add(paramDiscreteValue);
paramFields.Add(paramField);

paramField = new ParameterField();
paramDiscreteValue = new ParameterDiscreteValue();
paramField.Name = "@deptid";
paramDiscreteValue.Value = TXTDEPTID.Text.ToString();
paramField.CurrentValues.Add(paramDiscreteValue);
paramFields.Add(paramField);

CrystalReportViewer1.ParameterFieldInfo = paramFields;
CrystalReportViewer1.ReuseParameterValuesOnRefresh = true;
CrystalReportViewer1.ToolPanelView = CrystalDecisions.Web.ToolPanelViewType.None;
reportDocument.Load(Server.MapPath("~/RPT/RPT_RESULT.rpt"));
CrystalReportViewer1.ReportSource = reportDocument;
reportDocument.SetDatabaseLogon("DBA", "2006");








c# crystal-reports






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 7 at 15:36







ziadqasem

















asked Mar 6 at 9:08









ziadqasemziadqasem

488




488












  • Post code, and also check if it is because of Postback?

    – JulyOrdinary
    Mar 7 at 9:43











  • @JulyOrdinary , i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

    – ziadqasem
    Mar 7 at 15:32











  • Try following to check if code is missing something stackoverflow.com/questions/12002957/…

    – JulyOrdinary
    Mar 8 at 10:42












  • @JulyOrdinary yes its working thank you

    – ziadqasem
    Mar 8 at 21:36

















  • Post code, and also check if it is because of Postback?

    – JulyOrdinary
    Mar 7 at 9:43











  • @JulyOrdinary , i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

    – ziadqasem
    Mar 7 at 15:32











  • Try following to check if code is missing something stackoverflow.com/questions/12002957/…

    – JulyOrdinary
    Mar 8 at 10:42












  • @JulyOrdinary yes its working thank you

    – ziadqasem
    Mar 8 at 21:36
















Post code, and also check if it is because of Postback?

– JulyOrdinary
Mar 7 at 9:43





Post code, and also check if it is because of Postback?

– JulyOrdinary
Mar 7 at 9:43













@JulyOrdinary , i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

– ziadqasem
Mar 7 at 15:32





@JulyOrdinary , i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

– ziadqasem
Mar 7 at 15:32













Try following to check if code is missing something stackoverflow.com/questions/12002957/…

– JulyOrdinary
Mar 8 at 10:42






Try following to check if code is missing something stackoverflow.com/questions/12002957/…

– JulyOrdinary
Mar 8 at 10:42














@JulyOrdinary yes its working thank you

– ziadqasem
Mar 8 at 21:36





@JulyOrdinary yes its working thank you

– ziadqasem
Mar 8 at 21:36












1 Answer
1






active

oldest

votes


















1














You Can use the following code in your page load or in the button where you call crystal report code also for the message show when navigate to next page under your code add the following code it will hide the message "The report you requested requires further information "



if (!IsPostBack)

// your code inside


var connectionInfo = new ConnectionInfo();
connectionInfo.ServerName = "server_name";
connectionInfo.DatabaseName = "database_name";
connectionInfo.UserID = "database_user_name";
connectionInfo.Password = "database_password";
connectionInfo.Type = ConnectionInfoType.SQL;
connectionInfo.IntegratedSecurity = false;

for (int i = 0; i < CrystalReportViewer1.LogOnInfo.Count; i++)

CrystalReportViewer1.LogOnInfo[i].ConnectionInfo = connectionInfo;







share|improve this answer

























  • i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

    – ziadqasem
    Mar 7 at 15:32











  • I updated my answer with your issue

    – Abdullah
    Mar 8 at 18:44











  • yes working thank you

    – ziadqasem
    Mar 8 at 21:36










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55019275%2fhow-to-hide-enter-parameter-value-when-navigate-to-next-page-in-crystal-reports%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














You Can use the following code in your page load or in the button where you call crystal report code also for the message show when navigate to next page under your code add the following code it will hide the message "The report you requested requires further information "



if (!IsPostBack)

// your code inside


var connectionInfo = new ConnectionInfo();
connectionInfo.ServerName = "server_name";
connectionInfo.DatabaseName = "database_name";
connectionInfo.UserID = "database_user_name";
connectionInfo.Password = "database_password";
connectionInfo.Type = ConnectionInfoType.SQL;
connectionInfo.IntegratedSecurity = false;

for (int i = 0; i < CrystalReportViewer1.LogOnInfo.Count; i++)

CrystalReportViewer1.LogOnInfo[i].ConnectionInfo = connectionInfo;







share|improve this answer

























  • i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

    – ziadqasem
    Mar 7 at 15:32











  • I updated my answer with your issue

    – Abdullah
    Mar 8 at 18:44











  • yes working thank you

    – ziadqasem
    Mar 8 at 21:36















1














You Can use the following code in your page load or in the button where you call crystal report code also for the message show when navigate to next page under your code add the following code it will hide the message "The report you requested requires further information "



if (!IsPostBack)

// your code inside


var connectionInfo = new ConnectionInfo();
connectionInfo.ServerName = "server_name";
connectionInfo.DatabaseName = "database_name";
connectionInfo.UserID = "database_user_name";
connectionInfo.Password = "database_password";
connectionInfo.Type = ConnectionInfoType.SQL;
connectionInfo.IntegratedSecurity = false;

for (int i = 0; i < CrystalReportViewer1.LogOnInfo.Count; i++)

CrystalReportViewer1.LogOnInfo[i].ConnectionInfo = connectionInfo;







share|improve this answer

























  • i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

    – ziadqasem
    Mar 7 at 15:32











  • I updated my answer with your issue

    – Abdullah
    Mar 8 at 18:44











  • yes working thank you

    – ziadqasem
    Mar 8 at 21:36













1












1








1







You Can use the following code in your page load or in the button where you call crystal report code also for the message show when navigate to next page under your code add the following code it will hide the message "The report you requested requires further information "



if (!IsPostBack)

// your code inside


var connectionInfo = new ConnectionInfo();
connectionInfo.ServerName = "server_name";
connectionInfo.DatabaseName = "database_name";
connectionInfo.UserID = "database_user_name";
connectionInfo.Password = "database_password";
connectionInfo.Type = ConnectionInfoType.SQL;
connectionInfo.IntegratedSecurity = false;

for (int i = 0; i < CrystalReportViewer1.LogOnInfo.Count; i++)

CrystalReportViewer1.LogOnInfo[i].ConnectionInfo = connectionInfo;







share|improve this answer















You Can use the following code in your page load or in the button where you call crystal report code also for the message show when navigate to next page under your code add the following code it will hide the message "The report you requested requires further information "



if (!IsPostBack)

// your code inside


var connectionInfo = new ConnectionInfo();
connectionInfo.ServerName = "server_name";
connectionInfo.DatabaseName = "database_name";
connectionInfo.UserID = "database_user_name";
connectionInfo.Password = "database_password";
connectionInfo.Type = ConnectionInfoType.SQL;
connectionInfo.IntegratedSecurity = false;

for (int i = 0; i < CrystalReportViewer1.LogOnInfo.Count; i++)

CrystalReportViewer1.LogOnInfo[i].ConnectionInfo = connectionInfo;








share|improve this answer














share|improve this answer



share|improve this answer








edited Mar 8 at 18:44

























answered Mar 7 at 15:23









AbdullahAbdullah

628




628












  • i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

    – ziadqasem
    Mar 7 at 15:32











  • I updated my answer with your issue

    – Abdullah
    Mar 8 at 18:44











  • yes working thank you

    – ziadqasem
    Mar 8 at 21:36

















  • i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

    – ziadqasem
    Mar 7 at 15:32











  • I updated my answer with your issue

    – Abdullah
    Mar 8 at 18:44











  • yes working thank you

    – ziadqasem
    Mar 8 at 21:36
















i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

– ziadqasem
Mar 7 at 15:32





i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

– ziadqasem
Mar 7 at 15:32













I updated my answer with your issue

– Abdullah
Mar 8 at 18:44





I updated my answer with your issue

– Abdullah
Mar 8 at 18:44













yes working thank you

– ziadqasem
Mar 8 at 21:36





yes working thank you

– ziadqasem
Mar 8 at 21:36



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55019275%2fhow-to-hide-enter-parameter-value-when-navigate-to-next-page-in-crystal-reports%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

Understanding generators in Python2019 Community Moderator ElectionGenerator function not working pythonFor loop not executing two timesGenerators - Printing generated valuesWhy can a python generator only be used once?What exactly do generators do?What does the “yield” keyword do?What does “list comprehension” mean? How does it work and how can I use it?sklearn Kfold acces single fold instead of for loopIs a generator the callable? Which is the generator?Apply Border To Range Of Cells Using OpenpyxlCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsDoes Python have a string 'contains' substring method?

How can I change the color of pagination dots of UIPageControl?How to change UIPageControl dotsIs there a way to change page indicator dots colorCustomize dot with image of UIPageControl at index 0 of UIPageControlNo visible @interface for 'NSObject<PageControlDelegate>' declares the selector 'pageControlPageDidChange:'How to change the color of pagination dots in UIPageControl with a different color per pagepagecontrol indicator custom image instead of DefaultChanging the colour of UIPageControl dots in MonoTouchpagecontrol selectable page visibility color?Alternative way to load ViewControllers on a UIPageControlHow to set only layer.border-color for UIpage control dots in swiftHow can I develop for iPhone using a Windows development machine?How to change the name of an iOS app?UITableView - change section header coloruipagecontrol indicator(dot)issueCustom UIPageControl dots color not changingchange the interspace between UIPageControl dotsHow to change Status Bar text color in iOSHow can I change image tintColor in iOS and WatchKitUIPageControl dots with larger space in between each dotsHow to change the color of pagination dots in UIPageControl with a different color per page