Default Avatar

Stark

Stark

About

Username
Stark
Location
Syria
Joined
Visits
0
Last Active
Roles
Members

Comments

  • Yes of course, you need to Redistributable the Dll's files for fast-report.
  • This is in C#, hope this help. Add the modal Parameter to ".Show()" function -> ".Show(true)";
  • You could Add Expression to replace the date string '01-01-0001' to Empty string.
  • Hello You can Easily Hide or delete them from the View Menu.
  • Try to change datatype in Query Wizard to "Int32" or "String".
  • hi , you can use it in C# code , after loading your report and before showing it : for example : Private void ShowTest () { FastReport.Report rpt = new  FastReport.Report();             rpt.Load(@"c:\\myrpt.frx");       …
  • Hi , Once I exported Barcode to stand alone TIFF image , and it's worked fine after print it on Laser Printer I never try barcode with PDF before but I think PDF is good for viewing more than printing ,, ( Personal Information ) Hope this …
  • Hi , It's work fine for me ! ,, try this code and see what could happen ( try to print it even if it's empty )             FastReport.Report rpt = new FastReport.Report();             rpt.PrintSettings.Printer = "My…
  • Hi , This is happen for me while adding some components manually to VS toolbox , And the solution was when I reset the VS toolbox , and some times ended with rest the whole VS settings , However , it didn't happened when adding fast rep…
    in VS 2010 Comment by Stark September 2010
  • Hi , RegisterData Function work for both main , subreport , It's depends on the datatable name , that you use in your report whether it's main or sub report , In Most cases ( for me ) I Add two datatable to report , one for main repor…
  • Hi , The type of Data Column which bounded to CheckBox should be bit which value ( 0 Or 1 ) so you have two solutions : 1) Convert data column type from sting to bit , and Assign 0 as default value 2) Write a simple Expression that co…
  • Ah , I got it now ! Include expression with this things [ ] Like [Sum(Debit) - Sum(Cr)] Hope this help
  • Hi , as far as I know , you can't apply select command at Raw DataTable , My be you should try with Row Filter , Table Filter or something , you can find more info about it at online help manual Help Search for "Filter" Ho…
    in StoreData Comment by Stark August 2010
  • Hi , have a good day , I think this will help : Try to recall the , Report.RegisterData( DataTable , "YourTableName"); // it will not create another data if "YourTableName" was the same !
    in StoreData Comment by Stark August 2010
  • you have the same variable name ? TotalDB !!! May be you must try this ToalAfterSubtract = Sum(debit) - Sum(Cr)
  • hope you fix it soon
  • Hi , have a good day May be you you must add this "FastReport.VSDesign.dl" to your project reference . - Save Project - Close Form VS Tab - Open it Again hope this help
  • Hi , have a good day , Did you mean that you want to hide the Value if it Zero ? if So : Open Report Designer -> Select the object ( Text ) that contains the Zero value -> properties -> Set   [b]HideZeros = true[/b]
  • HI , have a good day May be this will fix the page No. Report Designer -> Main Menu -> Report  -> Options -> General -> Double pass  ( Must be Checked )
    in PageNofM Comment by Stark August 2010
  • Hi, Add this code to your Report Script TxtSize Properties HideZeroes Must be ture , as our code condition will act if TxtSize.Text Empty or NULL // This Code Should be placed in your report Script , not in your Application private void TxtS…
    in Hide Detail Comment by Stark August 2010
  • ueden wrote: » Sure it was kind of self-solved ticket :-) But good to see problem part from the code - many places where connection is opened and not closed. Problem is in not properly closed connection.close() ... It works fine now, Fastreport…
  • Hi , glade you have solve it May be fast report was looking for this reference System.Windows.Forms.DataVisualization.dll
  • Hi , May be you should try to change the current Font , and see the result
  • You are welcome ! Keve G??bor wrote: » I think that due the IIf condition, the Substring procedure should not be evaluate, because the Parameter1 length = 0. I was think the same , Until I saw your Question , because C# didn't do that st…
  • Hi , have a good day The Error is very clear , I will try to Explain it in details : 1) This One "Substring([Parameter1],1,1)" is try to select a string from paramter1 Which start with character of index 1 and end at character of index 1 …
  • you can install the fastreport .NET 2.0 version on a Clean PC and copy the DLLs manually to your development machine and do the same for the .NET 4.0 , then add the right reference of fastreport ( .NET 2.0 or NET 4.0 ) manually to your project…
  • Hi I think you must convert the numbers to words in your application and pass it to report Hope this code help MessageBox.Show( FastReport.Functions.StdFunctions.ToWords(1500.5, "", ""));
  • I use Number 1
  • Hi , have a good day oursgris wrote: » I found two solutions : - Create two table, one in the header, one in the detail. Problem : As soon as I want to resize the collumn, I'll be forced to resize the second table - Use lines and label but I …
  • Hi , have a good day Please follow these easy steps 1 - In your Report Designer Add New Parameter from your Data Tree window 2- Give your Parameter a name , and add it to your report by drag it to report page 3 - call the code below "From yo…