Search

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

Matching Posts

  • Re: Crsytal report error"Load Report Fail"

    Try to verify database on report, sometime report lost connection to database, maybe this is a reason
    Posted to Crystal Reports (Forum) by szyder on 2/26/2008
  • Re: Is well formed XML?

    If you have xml schema use XmlSchemaValidator class to validate xml
    Posted to XML and XmlDataSource Control (Forum) by szyder on 2/13/2008
  • Re: Problems running CrystalReportViewer on web server

    Hi Create Setup project ,and add Crystal Report merged module to instaler (CrystalDecisionsRedist2005_x86.msm file). after that some files instaler add automatically like Microsoft_VC80_ATL_x86, Microsoft_VC80_CRT_x86 and Policy_8_0_Micro....._ATL_x86 and Poilicy_8_0_...CRT_x86. Build that project and run install on server...
    Posted to Configuration and Deployment (Forum) by szyder on 2/13/2008
  • Re: Template and GridView

    Yes, thanks works, have you any idea how retrive information which row and column was modificated in order to update dynamic DataTable?? Ok I add delegate and build class GridViewEventArgs where i pass row number and column name
    Posted to Data Presentation Controls (Forum) by szyder on 1/25/2008
  • Template and GridView

    Hi GridView is build dynamic (user can add columns and rows). When user try to add new column or row i do this by adding DataRow or DataColumn to dataTable and then i pass to GridView as a DataSource... I've built class implementing Itemplate... In order to provide full editable gridView. How can i collect information from tbx_TextChanged( object sender, EventArgs e) method?? here is some code Method where i build gridView 1 protected void buildGridView(DataTable dt) 2 { 3 GridView1.Columns.Clear
    Posted to Data Presentation Controls (Forum) by szyder on 1/23/2008
  • Re: TextBox in gridview

    Autopostback i don't think it's a good thing... but i've found resolution add two line in page_load when ispostback DataTable dt=( DataTable )Session[ "DataTable" ]; buildGridView(dt); now it's work... when i've only buildGridView in case !IsPostBack, after when i clicked button then server call Page_load then events... but i didn't create object after postback
    Posted to Data Presentation Controls (Forum) by szyder on 1/22/2008
  • TextBox in gridview

    Hi I've problem with textboxes in gridview... i've added text changed eventhandler to all textboxes but don't fire event when i've changed text... The same situation with button and click event there are code: in page_load if (!IsPostBack) { DataTable dt=buildDataTable(); dt.AcceptChanges(); Session.Add( "DataTable" , dt); buildGridView(dt); } 1 protected void buildGridView(DataTable dt) 2 { 3 GridView1.DataSource = dt; 4 5 TemplateField tf; 6 7 for ( int i = 0; i < dt
    Posted to Data Presentation Controls (Forum) by szyder on 1/22/2008
  • Re: Confirm message

    Hi add to all controls on page event handler e.g. <asp:TextBox ID="BWZ_NAMETextBox" runat="server" Height="48px" Text='<%# Bind("BWZ_NAME") %>' Width="312px" style="display: inline" TextMode="MultiLine" MaxLength="150" OnTextChanged="TextBox_TextChanged "></asp:TextBox></td> <asp:DropDownList ID="BWZ_PROCESSDropDownList" runat="server" Width="140px"
    Posted to Web Forms (Forum) by szyder on 1/21/2008
  • Re: Confirm message

    <asp:Button ID="btnDeleteCR" runat="server" Text="Delete" OnClick="btnDeleteCR_Click" OnClientClick="return confirm('do you want delete this thing');" />
    Posted to Web Forms (Forum) by szyder on 1/21/2008
Page 1 of 4 (39 items) 1 2 3 4 Next >