Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: xr280xr
  • Order by date
  1. xr280xr

    ASP.NET How to get started

    I strongly recommend "Beginning ASP.NET 1.1" in C# or in Visual Basic (Which ever language you prefer). The subtitle is "From Novice to Professional". It has lots of step by step examples, screen shots, and is written simply. It starts from the very beginning and goes through data controls and...
  2. xr280xr

    data only writes if (!IsPostBack) is removed from page_load

    I agree with jbenson. I dunno if it helps but one thing that threw me off for a while is that when a control has auto postback enabled, it will execute the page_load and then the event handler. If using Visual Studio, try marking the left margin w/ one of those big dots it puts when you click on...
  3. xr280xr

    Datagrid Edit Command to cause vertical expansion

    Couldn't you just set up the EditItemTemplate of 1 column to show all of the editable info (vertically) and then hide the rest of the columns until finished editing? If that's what you said RTomes, sorry, I don't understand VB very well.
  4. xr280xr

    Can I avoid the Encoding that vs.net imposes on every page

    Which encoding are you referring to? What type of page?
  5. xr280xr

    Tooltip for a database driven listbox

    I don't think asp gives you a way to do that. I think you would need to design a custom control that allows the list items to have tool tips. Maybe you could have a label that shows the entire contents of the selected item. So you click (instead of hover) on the item in question, and the full...
  6. xr280xr

    Code to open a windows spreadsheet

    I think it would be a lot easier to just let the client download it (which gives the "Open" option that saves it to the temp directory). But if you really don't want them to have to download a file, (don't quote me on this) I think you might have to read the file and use response.write to write...
  7. xr280xr

    how to get the sqlDbtype ???

    If you are only expecting a few possible types, you could just cast it to each possible type inside of a few try catch blocks.
  8. xr280xr

    How do I preserve line breaks in my displayed data?

    An alternative would be putting the data in a table instead of a label, setting the width to whatever width you want (the same width as your multiline textbox?) and allow text wrap within the row.
  9. xr280xr

    Edit Bound Columns... Need Help!!!

    Have you checked to make sure it is actually entering the update function? I'm working on a datagrid right now and I used the properties window of Visual Studio to set the event handlers. It automatically added this code: this.grid.CancelCommand += new...
  10. xr280xr

    Can't find nested textbox

    What is the error (or errors) that it is giving you?
  11. xr280xr

    Datagrid Edit Mode width

    Hey, I'm having the same problem. Can you explain the syntax for using the EditItemTemplate with BoundColumns as opposed to TemplateColumns? Thanks in advance!

Part and Inventory Search

Back
Top