Default Avatar

m_lyons

m_lyons

About

Username
m_lyons
Joined
Visits
103
Last Active
Roles
Members

Comments

  • Hi DeepDive, Sorry, I just saw your message. If you're still working on this, I had to create a png and add it to the project resources. In the code building the form I have: Image PaidWatermark = Properties.Resources.ReportWaterMarkPaid; report.Se…
  • Has anyone else noticed this? I can't seem to figure out what's causing it... It seems to be completely random.
  • I figured this out so I wanted to post the solution in case anyone else needed it: // push to fastreport                    FastReport.Report report = new FastReport.Report();                    //Get Directory for Reports       …
  • Hello and thank you very much for your response. I tried to generate this report sample for you, but I don't have a StoreData property. I attached a picture of what I see for you. Do I have to turn this on somewhere? I'm updated to version: Fast…
  • Does anyone have any ideas for this? It seems like the filters aren't filtering? I appreciate the help! Thank you again.
  • Thank you for your help! Am I understanding properly that this has to be a file from the file system and not one in memory? When I try to do this, it doesn't work: //Get Directory for Reports               string appdata = Environment.GetFolderPa…
  • ipong wrote: » printer machine has margin limitation, professional software like ms excel or adobe photoshop can print at margin top-right-bottom-left = 0, but dotnet printer can not. about margin limitation, read printer whitepaper Than…
  • Thank you very much for your help. I didn't get a chance to work on this as much as I wanted to yesterday, so I spent more time this morning playing around with it. I was able to get this working, by commenting out the Parameter.Name line like t…
  • ipong wrote: » https://mega.nz/#!BodhAQiY!e5Xpmy6W...xbHifOayjNqMCmg Thank you very much, I appreciate your help. One quick question, is this limited to one resource? I've been working on this today and I can get one to populate in the…
  • Never mind, I figured it out. While you use the Text property for the Text Boxes, you use the Data Column property for the RichTextBox objects! What a stupid mistake! Thank you so much for your help!
  • ipong wrote: » textobject has a property called 'htmltags', set it to true. or if you're not satisfied, use demo version of sautinsoft.htmltortf SautinSoft.HtmlToRtf htmlToRtf = new SautinSoft.HtmlToRtf(); string trial = htmlToRtf.ConvertS…
  • ipong wrote: » use richtext object and try this library: https://www.sautinsoft.com/products/html-to...tnet-csharp.php Thank you! I will take a look at that over the weekend. I really appreciate your help!
  • Thank you very much, I thought that the proper way of doing this (because I was making a change to the layout) was to create a second page. I was able to use your suggestion and it is working perfect. Thank you very much for your help again!
  • ipong wrote: » if you want to do like this, see attached picture, use overlay band and put shape or lines in there Wow, I had never used Overlay before, but that is really cool. Thank you very much for your help! I didn't know I could d…
  • I'm sorry, I didn't realize that I had to disable the docking... I did that and everything works as expected. Thank you very much for your help!
  • Thank you very much. I was trying scripting last night and am working on that again today. It appears that there is no way of setting a breakpoint or otherwise testing through the script to find out where the error may be (provided there is one)…
  • I was able to figure out the issue. I had my header in a header on one of my pages, but the content page had it in a Report Title. I moved it into a Header (Where it should have been), and it's fixed. Just in case anyone else runs into that.
  • Thank you very much, that works perfectly. I spent much of the weekend going through the code that you provided, and I feel that I understand it much better now as well. I really appreciate all of your help with this and your patience with me. …
  • ipong wrote: » like this? https://dl.dropboxusercontent.com/1/view/aa...ultipledata.rar Thank you, I will take a look at that this weekend. I appreciate your help with this. I have never worked with reporting before, and it is defini…
  • Sorry, I forgot to hit the "upload" button.
  • Thank you very much. I have to apologize for my prior post, I'm just a bit frustrated... I am sorry if too much frustration came through in my post... I was able to find the issue (I'm pretty sure). I had an error in the suggestion you made …
  • http://www.fast-report.com/en/forum/?p=/discussion/14027 wrote: http://www.fast-report.com/en/forum/?p=/discussion/14027 [/url] Thank you for your help, but I still have not been able to get Fast Reports to work, so I was trying to try a di…
  • Thank you very much for your awesome help. When I run this code, no datasource shows up in the Fast Reports Designer. I did check the .csv file and I get something like this: ,Job,,,,,1,RDN ,Job,,,,,2,RDN ,Job,,,,,3,RDN ,Job,,,,,13,RDN …
  • Thank you very much for your pos and very helpful code. I am trying to understand the methodology here so that I can learn from this a bit. Is it basically iterating through the XML and creating separate objects for each set of values (rooms, offs…
  • Hello. Thank you very much for your help. I have been working on this, but had a couple of questions. 1) How do I register the dbData? It seems like nothing I do works. I did find this post here, but can"http://www.fast-report.com/en/forum/?p…
  • Thank you very much for your help, I REALLY appreciate it. I am out of town on training the next couple of days, but I will try this method over the weekend. Thank you very much.
  • Hello again! I'm sorry it took me so long to post back, I was trying to figure out where the issue actually was and I'm excited to report that I think I know what it is! I am not sure how to fix it, but it appears to be caused by how Fast-Repo…
  • Thank you very much for your response, I really appreciate your help. I did read through your tutorial on LINQ. Thank you for the information. I am able to parse the XML file without an issue now (I did have a minor issue initially, but I hav…
  • Thank you very much for your help, I really appreciate it!
  • I just wanted to post back on this to say that I think I have it working. I changed my code to use this method of adding the DataSource instead and this works much better for XML. foreach (DataSourceBase source in report.Dictionary.DataSources…