Search

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

Matching Posts

  • Ajax X 'em' Measurement

    Hello, I placed an Ajax Accordion object on my app and it looks that Ajax doesn't like the 'em' mesurement - it just crash saying that 'em' is invalid... when I switch to px or % it works but I don't want to adjust my css because of it. Why this happens? Thanks!
    Posted to ASP.NET AJAX Control Toolkit (Forum) by gbeltrao on 7/4/2009
  • Re: ReportViewer does not show print option

    Guys, I created initially a Windows app for training reporting and after generating it using the wizard I noticed the report extension was rdl. Then I decided to create a Web application and use this report on it... well, I had lots of trouble with it at the point that I had to edit it in xml mode and also to rename it with the rdlc extension. So, it looks like that MS promise that you can re-use some components between different platforms doesn't really always work... am I wrong? Why I couldn't
    Posted to SQL Server Reporting Services (Forum) by gbeltrao on 9/30/2008
  • Re: how to edit,update row in gridview

    Thanks for sharing your code, Santosh - this is of great help! I was challenged by my boss to populate a gridview that would make some rows to become in editable mode (in a bundle) if a field (let's say RowIsEditable) value in the gridview itself is 1 (true) or 0 (false) respectively. I know how to setup so that all the rows can become in editable mode but how can I accomplish this for individual rows? Thanks in advance! Gilberto
    Posted to Data Presentation Controls (Forum) by gbeltrao on 5/23/2008
  • Running 3rd Party DLL (ActiveX) in a ASP.NET App

    Hello, We have a windows application (VB.NET) that uses the Profin-Baasel dlls to render some text into a nameplate bitmap. We're planning to move it into a web based app (ASP.NET) but when I try to instantiate its main class I got the following error message: "Reference required to assembly 'System.Windows.Forms' containing the base class 'System.Windows.Forms.AxHost'. Add one to your project." since it's inherited from Windows.Forms how can I use this on my web app? AxInterop.LMOSACTXLib.dll and
    Posted to Visual Basic .NET (Forum) by gbeltrao on 1/3/2007
  • Re: Print Headers of DataGrid on mulitple pages.- duke baby's code

    I could have my THs added to my header using the following code behind (on aspx) Private Sub dgTestData_ItemCreated( ByVal sender As Object , ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles dgTestData.ItemCreated If e.Item.ItemType = ListItemType.Header Then e.Item.Style.Add( "Style" , "table-header-group" ) End If End Sub I just can't generate my PDF as I want using ABCPdf since it doesn't support the TH tag - they say they will in the future. Does anyone have experience using
    Posted to Tips & Tricks (Forum) by gbeltrao on 8/3/2006
  • Re: Print Headers of DataGrid on mulitple pages.

    aalbetskik, I tried your solution but it didn't work - no TBODY 'n THEAD tags are generated. Questions: Q1: the CSS should be thead or .thead (dot) thead? Q2: Your first statement said to "Give your header row a class name of 'DataGridHeader'" - Are you talking about creating a HeaderStyle, something like: < HeaderStyle CssClass= "DataGridHeader" ></ HeaderStyle > If not, how should I do it? I also tried dukebaby's solution without success. Help, please! Thanks!
    Posted to Tips & Tricks (Forum) by gbeltrao on 7/14/2006
  • Re: Print Headers of DataGrid on mulitple pages.

    I have my datagrid within a Web User Control (ascx). Since there's no "body" tags on it, is there another way to call the print_header() function after it's loaded? I am actually getting the "javascript object required" error when I run my page. TIA!
    Posted to Tips & Tricks (Forum) by gbeltrao on 7/13/2006
  • Re: Multiple Step CreateUserWizard creates user after 1st step

    Just add the property DisableCreatedUser ="True" to your CreateUserWizardStep. Hope it help!
    Posted to Security (Forum) by gbeltrao on 5/18/2006
  • HashTable - Getting a value from it

    I have a populated HashTable and I know how I can find and retrieve a Value from it and populate a variable (string) in Java: // Java code private void handle_btnGetValue_actionPerformed(ActionEvent evt) { // Get the index of the selected key in the Key list box int iIndex = lbKeys.getSelectedIndex(); // Got a valid index? if (iIndex >= 0) { // Yes, so get the key String String sKey = lbKeys.getItemAt(iIndex); // Get the value for the selected key String sValue = (String) m_hashtable.get(sKey
    Posted to Feedback on this website (Forum) by gbeltrao on 8/25/2004
  • Re: Getting value from a Datagrid

    Thanks Ahmed, but I found a different solution to my problem: for (int i=0; i < MyList.Items.Count; i++) { // Obtain references to row's controls Label categoryTxt = (Label)MyList.Items[i].FindControl("CategoryLabel"); if (categoryTxt.Text == "Classes") { cart.AddItem(cartId, 16, 1); } } I Guess there's no need to identify the item's type because it has an ID (CategoryLabel) Thanks for answering my posting! Regards, Gilberto
    Posted to Data Presentation Controls (Forum) by gbeltrao on 1/3/2004
Page 1 of 2 (15 items) 1 2 Next >