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

  1. TeaAddictedGeek

    Reformatting a column in a DataGridView

    Are you building the columns in the codebehind or in ASP.NET? Look into using the DefaultCellStyle property of the columns before the databind. [morning] http://blog.teaaddictedgeek.com "The computer programmer is a creator of universes for which he alone is responsible. Universes of...
  2. TeaAddictedGeek

    IE IsPostBack bug?

    This is a Javascript problem. Make sure it returns false in the esc function to avoid the postback. [morning] http://blog.teaaddictedgeek.com "The computer programmer is a creator of universes for which he alone is responsible. Universes of virtually unlimited complexity can be created in the...
  3. 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...
  4. TeaAddictedGeek

    Web Parts 101 help needed

    Tried this one too: http://www.beansoftware.com/ASP.NET-Tutorials/Web-Parts.aspx Same thing. I don't get the special cursor that tells you can move stuff in design mode--it just doesn't show up and I can't move anything. Is it possible I installed the Web Parts stuff wrong? What could I be...
  5. TeaAddictedGeek

    Web Parts 101 help needed

    I'm working with the code here as in this tutorial: http://www.c-sharpcorner.com/uploadfile/mosessaur/webpartspage01102006193824pm/webpartspage.aspx?articleid=ca9c121b-c594-4c50-a232-3c7d77ec9d4d The drag and drop isn't working, and that's what I'm trying to figure out. [morning] "The...
  6. TeaAddictedGeek

    Web Parts 101 help needed

    Quick note since this will obviously be useful to know: I'm working with C# and Visual Studio 2008. [morning] "The computer programmer is a creator of universes for which he alone is responsible. Universes of virtually unlimited complexity can be created in the form of computer programs."...
  7. 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...
  8. TeaAddictedGeek

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

    Yes, as I stated before, copying the link as it appears into the browser works. When I say "it does nothing" I mean literally that--it does nothing. There is no IIS blank page or I would've stated that I got at least that. There is no indication of a postback either but if it's flickering...
  9. TeaAddictedGeek

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

    I click on the link and nothing happens. I've tried opening it up in a new window, and still nothing happens. How to further describe "nothing happens when I click on a link" is beyond me, though. ;) [morning] "The computer programmer is a creator of universes for which he alone is...
  10. TeaAddictedGeek

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

    How what? I'm not even sure what you are asking. Like I said, there's a link in my report view. If I right click and go to copy link target and stick that in my web browser, it works. If I try to click on it or go to open window to even view it, it doesn't work. I'm working with a .rpt file...
  11. 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...
  12. 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...
  13. TeaAddictedGeek

    Windows Console Application--timed operation possible?

    ca8msm, you initially recommended VB.NET so I was confused. I'll take the question there. Thanks! RiverGuy, thanks! [morning] "The computer programmer is a creator of universes for which he alone is responsible. Universes of virtually unlimited complexity can be created in the form of...
  14. TeaAddictedGeek

    Windows Console Application--timed operation possible?

    ca8msm, the core code is already written in C#. Rewriting it is not an option at this point. RiverGuy, unfortunately right now the database that's being used is Oracle. We'd love to transfer it over to SQL Server when we can but the goal at present is to just get what's there up and running...
  15. 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...
  16. 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...
  17. TeaAddictedGeek

    C# code hangs on Excel.Wookbooks.Open

    Solved the problem a few days ago--apparently you cannot use open an Excel workbook from a web app. This code works just fine in a windows console program. [morning] "The computer programmer is a creator of universes for which he alone is responsible. Universes of virtually unlimited...
  18. TeaAddictedGeek

    C# code hangs on Excel.Wookbooks.Open

    That would sadly require rewriting an awful lot of code so I hope to not go down that route. Another question: I have Excel 2003 installed on this machine and was originally working with the dll for 2002. Is it possible that I can't open 2003 with the older Interop.Excel dll? [morning] "The...
  19. TeaAddictedGeek

    C# code hangs on Excel.Wookbooks.Open

    There is no Workbook.Close() method as you describe. It expects parameters. I've also tried running it as a windows service but get the same problem. I had issues with the Interop.Excel transporting the code from one server to another as this server first had .NET 2.0 installed with a...
  20. TeaAddictedGeek

    C# code hangs on Excel.Wookbooks.Open

    I tested the file and the code sees it fine, no errors, and took almost no time to process. The file is on the same server as the code that is running. [morning] "The computer programmer is a creator of universes for which he alone is responsible. Universes of virtually unlimited complexity...

Part and Inventory Search

Back
Top