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 Chriss Miller 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: *

  1. TeaAddictedGeek

    Editing Web Part title colors--is this possible?

    I'm trying to find a way to edit a Web Part title bar's color dynamically. Is this possible? I've looked high and low via Google and various other forums, but the best I have come up with thus far is editing the title color for an entire WebPartZone. Thanks in advance! [morning] "The...
  2. TeaAddictedGeek

    Web Parts 101 help needed

    I've been working with online examples of Web Parts, and can't get the drag and drop to work. I'm also wondering if the "minimize" and "close" links are customizable to become icons. Has anyone worked with Web Parts who may know how to figure these issues out? I've been scouring the Net but...
  3. TeaAddictedGeek

    Hyperlink to file within Crystal Report in ASP.NET 1.1 not working

    I am desperately trying to create reports that have links in them. Right now the link target is being stored in a table field that's being read by the Crystal Report, and the field is being formatted a hyperlink. However, I'm finding that if I copy the link target and stick it within my...
  4. TeaAddictedGeek

    Microsoft Visual Studio 2003 and VSS 6.0--changing directory structure

    Not sure if this is something that belongs in a VSS forum, but since it affects .NET files I figured it belonged here. I'm trying to change a directory structure in VSS for a .NET project that had everything set up in a very convoluted way. I don't know what files that are VSS related that I...
  5. TeaAddictedGeek

    Windows Console Application--timed operation possible?

    I'm evaluating whether or not to use a Windows Service or a Windows Console application to satisfy a client-based need. It'd be great if I could have a Windows Console app kick off and run a piece of code in either timed intervals or during certain times of the day over using the core code in a...
  6. TeaAddictedGeek

    Interop.Excel question

    I'm working with Excel 2003 and .NET 1.1 using the Interop.Excel functionality. It seems to me that there is no way to grab whether or not the Excel range.Cells is a Date value versus a number. Is this really the case, and if not, what functionality am I somehow missing? I've looked at the...
  7. TeaAddictedGeek

    C# code hangs on Excel.Wookbooks.Open

    I'm attempting to open up an Excel workbook, and it hangs on the following code: Excel.Workbook wb = exapp.Workbooks.Open(filename, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing...
  8. TeaAddictedGeek

    Searching through datasets

    Is it possible to query a database, return a dataset, and instead of making an additional call be able to search within the recordset multiple times to obtain a subset of data? I'm attempting to solve a nested datagrid issue where the main datagrid has individual rows with a datagrid...
  9. TeaAddictedGeek

    Help with scheduled triggers and SQL Server 2005

    Ok, SQL gurus, I need you. My skills are okay but this is something a bit out of my usual scope: In SQL Server 2005, I need to be able to create a trigger that runs every two hours and does a insert into table1 select statement from table2 then deletes from table2. The guts of what this has...
  10. TeaAddictedGeek

    Problem reading XML value from a table in storedproc

    Hi, I'm trying to read an XML variable returned from a stored proc within another stored proc which is processing it using OpenXML. However, it's not returning any data in the rows. Here's roughly what the XML looks like that is stored in the table: <RECORD id="1" city="BOS" date="5/1/2006">...
  11. TeaAddictedGeek

    VS2005 deployment problem with virtual directories

    I'm following this article on how to deploy an ASP.NET web project: http://www.15seconds.com/Issue/030806.htm According to it, I should get to the wizard and be able to input the name of the virtual directory and the port. Instead, I am getting a different dialog saying that it will install...
  12. TeaAddictedGeek

    Selecting multiple IDs in a parameter within a select statement

    My skills at T-SQL are a tad rusty, so please help me out here. Here's the procedure I am trying to create: [...] @param varchar(20) [...] select * from [table] where table_type_id in (@param) The problem is that when I put in the list of IDs, it tells me that it can't convert it to an int...
  13. TeaAddictedGeek

    Nested datagrids and dropdownlists

    I'm trying to access a DropDownList within a nested DataGrid so I can populate it with data. Alas, everything I have tried has failed and I'm not sure what I am doing wrong. I'm trying the FindControl method on the parent DataGrid's ItemDataBound event, and I'm wondering if that's the problem...
  14. TeaAddictedGeek

    Preventing postback

    Is there any way to prevent an input button from causing a postback or the page to reload? I have input image button (regular HTML, not ASP.NET button) toggling a Javascript function to both change its image and toggle a div to visible versus not visible. It works just fine and you see it...
  15. TeaAddictedGeek

    Nested datagrid problems

    Is there a way I can access a nested datagrid without raising a DataGridItemEventArgs event? I'm trying to toggle its visibility with an ImageButton, but so far no luck. Thanks! "The computer programmer is a creator of universes for which he alone is responsible. Universes of virtually...
  16. TeaAddictedGeek

    DataGrid edit mode question

    I love the functionality that DataGrids have to go into edit mode, but is there any way to start up a DataGrid and have it already be in that mode without having to cause an event to fire via a button or something? Thanks! "The computer programmer is a creator of universes for which he alone...
  17. TeaAddictedGeek

    ItemCommand event not firing in Repeater

    Here's what I have: I am attempting to toggle back and forth between two image buttons as far as their visibility is concerned. Each should be firing an event within a Repeater to toggle one to visible and the other to not: <asp:ImageButton...
  18. TeaAddictedGeek

    Collapsible divs in Repeater

    I'm attempting to make a div hidden upon an image click, and it's not working. Here's the code: <script language="JavaScript" type="text/javascript"> function ToggleDisplay(id) { // alert(id); var elem = document.getElementById(id); if (elem) {...
  19. TeaAddictedGeek

    Collapsible divs in Repeater

    I've tried solving this via a combo of Javascript, CSS, and ASP.NET as per the 4GuysFromRolla site, but it's not working for me. Maybe someone here knows of a better solution. I have a Repeater with lots of details for each header. There's an imagebutton next to each heading that should...
  20. TeaAddictedGeek

    Getting DataItems from Repeaters

    I'm trying to access a dataitem's value that is bound to a Repeater, but it seems that the only examples I've found that work for what I'm trying to do are in VB. For instance: If e.Item.DataItem("amount") > 50 Then I need to access the DataItem using similar syntax but can't seem to find the...

Part and Inventory Search

Back
Top