Search

You searched for the word(s): userid:197209

Matching Posts

  • passing multiple value parameters to a reportdocument

    I have several reports that I export to pdf. They all work fine when I pass a single value parameter to them, but when I pass a multiple value parameter, it does not work. Sometimes it will show the report for more than one of the values, but never for all of the values passed. Can someone please help, and tell me how I pass multiple values to a single parameter? Here is my code. ReportDocument rdClaimDetail = new ReportDocument(); rdClaimDetail.Load(Server.MapPath( "files/MGAClaimDetail.rpt"
    Posted to Crystal Reports (Forum) by dcyoung on 10/11/2007
  • Problem with socket receiving receiving all bytes

    I am having a problem with a socket receiving all of the bytes that are sent to it. Everything works fine when receiving smaller strings, but when they get larger, I am not receiving everything. Could someone please tell me what I need to change so that this socket receives everything sent to it. Code is below; GetSocketResponse() checks the header to find the size, this returns the correct size of what should be returned.The test returns 95,286 bytes, and it only receives 64k of the data. Socket
    Posted to C# (Forum) by dcyoung on 12/15/2006
  • Re: Help retrieving a value from a datatable and inserting into a textbox

    Try this DataRow drTheOneRow = DataSetOne.Tables["TABLENAME"].Rows[0]; labelOutputData.Text = drTheOneRow["ColumnName"].ToString();
    Posted to C# (Forum) by dcyoung on 12/15/2006
  • app_code folder configuration

    I am having a problem with my app_code folder configuration. When I first started using Visual Studio 2005, code behind files were automatically placed in the app_code folder. Now they are simply placed in the same folder with the aspx files. I am not sure what changed. Can someone please tell me how to configure this so that my code behind files are automatically place in the app_code folder? Thanks
    Posted to Visual Studio 2005 (Forum) by dcyoung on 7/11/2006
  • Default printing options

    I am having a problem with printing. When users print their reports embedded in a web page, they don't pay attention to the default page range setting, which is always 1 to 1. Is there a way to make this default to "All Pages"?
    Posted to Crystal Reports (Forum) by dcyoung on 5/2/2006
  • Re: TextBox

    You must re-add the controls on each subsequent post-back. To do this, you will need a counter, and you will need a method that will add the number of textboxes in the counter. example: create a label on the page and set the value = 0 and visible = false. This will be your counter. create a method that runs in page_load that creates the same number of textboxes in your counter. When you click to add a textbox, increment your counter and add your new text box. Viewstate will still remember the values
    Posted to Getting Started (Forum) by dcyoung on 4/27/2006
  • Re: How do you concatenate a string in Crystal Reports??????

    The way that I showed in my previous post is a concatenation. If it is showing spaces, you can trim it before you output the field. Another way that you could do it is in your sql query on the db. Use: select '*' + fieldname + '*' from dbname you may need to use rtrim() and ltrim() on the field to get them to output directly next to the field.
    Posted to Crystal Reports (Forum) by dcyoung on 4/27/2006
  • Re: TextBox

    Two possible approaches. I prefer the first Option 1. in your layout, add the needed rows, make them actual table rows. you will add runat=server to the rows and give them an id. When you need them to be visible simply do a postback with the add rows button and make them visible when you need them. If you need to do it without a postback, simply hide / show them using javascript instead of running the <tr> on the server Option 2 add a placeholder where you need the textboxes to be and then
    Posted to Getting Started (Forum) by dcyoung on 4/26/2006
  • Autopostback caller on crystal report

    I am having a problem configuring a report for output. My report first collects information in the aspx page to be passed to the report as parameters. In collecting the data, I use autopostback a couple of times. The problem arises because in my page load (when page is postback) I call the method that configures the crystal report. Is there a way to differentiate between when a postback comes from the report control (such as printing, navigating between report pages, etc) and when the postback actually
    Posted to Crystal Reports (Forum) by dcyoung on 4/26/2006
  • Re: How do you concatenate a string in Crystal Reports??????

    After you have a working report that has the database field displaying correctly, try this. 1. Add a Text Object 2. In the text object type your two asterisks 3. Drag the field from the report to the textbox until it lands between the two asterisks. That should give you the desired output.
    Posted to Crystal Reports (Forum) by dcyoung on 4/26/2006
Page 1 of 16 (153 items) 1 2 3 4 5 Next > ... Last »