how can i make parameter that take a period of months as a parameter in c# crystal reports
-
i want to make a crystal report that it takes as a parameter for example, the user choose 3 months. the user can choose more that one months.. How can i put something that the user can choose a range of months in parameters of crystal report in visual studio 2010( i use c# for my whole project) thanks
-
i want to make a crystal report that it takes as a parameter for example, the user choose 3 months. the user can choose more that one months.. How can i put something that the user can choose a range of months in parameters of crystal report in visual studio 2010( i use c# for my whole project) thanks
DON'T SHOUT. Using all capitals is considered shouting on the internet, and rude (using all lower case is considered childish). Use proper capitalisation if you want to be taken seriously. Now, edit your question, and try again in a civilised manner.
The universe is composed of electrons, neutrons, protons and......morons. (ThePhantomUpvoter)
-
DON'T SHOUT. Using all capitals is considered shouting on the internet, and rude (using all lower case is considered childish). Use proper capitalisation if you want to be taken seriously. Now, edit your question, and try again in a civilised manner.
The universe is composed of electrons, neutrons, protons and......morons. (ThePhantomUpvoter)
-
DON'T SHOUT. Using all capitals is considered shouting on the internet, and rude (using all lower case is considered childish). Use proper capitalisation if you want to be taken seriously. Now, edit your question, and try again in a civilised manner.
The universe is composed of electrons, neutrons, protons and......morons. (ThePhantomUpvoter)
-
See here: Wiki: Netiquette[^]
The universe is composed of electrons, neutrons, protons and......morons. (ThePhantomUpvoter)
-
See here: Wiki: Netiquette[^]
The universe is composed of electrons, neutrons, protons and......morons. (ThePhantomUpvoter)
i want to make a crystal report that it takes as a parameter for example, the user choose 3 months. the user can choose more that one months.. How can i put something that the user can choose a range of months in parameters of crystal report in visual studio 2010( i use c# for my whole project) thanks
-
i want to make a crystal report that it takes as a parameter for example, the user choose 3 months. the user can choose more that one months.. How can i put something that the user can choose a range of months in parameters of crystal report in visual studio 2010( i use c# for my whole project) thanks
One options would be to allow setting a "from/start" date, and a number of months as a regular integer parameter, e.g. from a textfield or combo box. Then in your C# code create a date range as: public DateTime CalculateEndDateOfRange(DateTime startdate, uint months) { DateTime endtime = startdate.AddMonths(months); return endtime; } Check as similar question here... http://stackoverflow.com/questions/4454271/date-range-in-days-c[^]