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. jendeacott

    T-SQL Update/Select Query

    Thanks all, got the code working now. Not sure what the problems was but hey ho. Cheers, John Web Design Wetherby Personal Web Design Service
  2. jendeacott

    T-SQL Update/Select Query

    Thanks for the suggestions guys. bborissov: still returns the same subquery error? TysonLprice: can you explain please? Many thanks, Web Design Wetherby Personal Web Design Service
  3. jendeacott

    T-SQL Update/Select Query

    Hi, I have a requirement to update mutiple rows in a table if their ItemID exists in a comma delimated field eg. 23,22,21 One method have been using is to use a split user defined fucntion that returns a resultset allowing me to use "in". When I use the code below I get the "Subquery...
  4. jendeacott

    T-SQL Aggregate Query

    Oh yeah!!!!! Crazy how you look at something for so long you miss the obvious. Nice one, Cheers. Web Design Wetherby Personal Web Design Service
  5. jendeacott

    T-SQL Aggregate Query

    Hi, I have the following SP which I would like to return a total of the JourneyDuration field for a each day in the search criteria. I also then want to change the JourneyDuration value from seconds to hours. i.e divide by 60 twice. Everything works fine until I try and perform the above...
  6. jendeacott

    Connection Pool

    Ah, right that makes sense then! I should have posted before wasting an hour testing [smile] Cheers guys. Web Design Wetherby Personal Web Design Service
  7. jendeacott

    Connection Pool

    Hi, I'm doing some testing reqarding db connections and something is driving me nuts! I'm checking the connections made to sql via sp_who2 and using a console app is VS2005. This is the simple code i'm using, that as far as I know should open and close the connection fine...
  8. jendeacott

    Atlas : What are your experiences so far?

    Hi, I've recently been testing the Atlas framework and wanted to see what everyone else thought about it. I'm thinking about implementing it heavily on a new project and wondered if anyone had come across any problems in a production environment. After coding Ajax manually it does feel...
  9. jendeacott

    Access dyamic user control

    Try this... Trigger Page Methods from a User Control Web Design Wetherby Personal Web Design Service
  10. jendeacott

    retaining values in previous page

    You could also do this using panels to display / hide the different stages. click here for code example eg, Have two panels on one page. Panel1 : Containing the text fields and submit button Panel2 : Containing the edit and confirm button Set Panel2 to not be visible as default. In the...
  11. jendeacott

    Binding to DropDownList problems

    As vbkris said, you dont need to use Eval there, set it when you bind the list in the code behind. Dim lstCategoryID As DropDownList = CType(FormView1.FindControl("lstCategoryID"), DropDownList) lstCategoryID.DataSource = Utilities.GetCategoriesList() lstCategoryID.SelectedValue = "CategoryID"...
  12. jendeacott

    Controllig rows in Repeater

    I agree with both the above options. Its best to deal with the requirement database level or the business layer instead of at the GUI i.e the aspx page. Web Design Wetherby Personal Web Design Service
  13. jendeacott

    Logitech Dinova 2.0 - Nightmare ! !

    Hi Micker377, The bluetooth hub is powered by the mains and the mouse is charged via the hub. Thanks anyway. I'll just send off for a replacement, from what i read on the logitech forums it seemed alot of people have had problems with this combo set. So I just thought I'd see if anyone here...
  14. jendeacott

    Logitech Dinova 2.0 - Nightmare ! !

    Hi, I took the plunge and forked out the hefty whack for the above bluetooth mouse and keyboard set. Got it home and everything installed first time and I was well impressed. It looks that absolute nuts and is excellent to use, it really is. Until.....for some reason one day (about three...
  15. jendeacott

    SortedList and Datagrid HELP

    Thanks for the suggestion RTomes. It works just fine. I'm not happy with the process overall, but this looks like the best solution to a undesirable situation. Cheers J Find out you can improve your plant security and plant tracking ¦
  16. jendeacott

    SortedList and Datagrid HELP

    Hi, I can not sort the data there because it is used somewhere else in the system. There must be a wasy to transfer the data from a sortlist to something else (maybe arraylist or another sortedlist) and re-order?? Thanks anyway Find out you can improve your plant security and plant...
  17. jendeacott

    SortedList and Datagrid HELP

    Hi, I have a SortedList that contains the key field and on object (which has 8 fields within). I can bind this fine to a datagrid and see the 8 fields via the bound columns. Works great. What I would like to do however is sort the data by one of the eight fields before i bind it to the...
  18. jendeacott

    Find IP address

    Thanks for the reply, could you tell me how I can just find the IP for the server then please? Find out you can improve your plant security and plant tracking ¦
  19. jendeacott

    Find IP address

    Hi, I have tried to find the answer to this on google on here. Maybe I've had too much coffe but no luck. Anyway, I want to find and change the IP address for my local SQL Server. I am sure I have found this before in a file in the SQL Server program files, but I cant for the life of me...
  20. jendeacott

    web.config and login

    Hi, Check this out, its got all you need to know. article on 4 guys HTH Find out you can improve your plant security and plant tracking ¦

Part and Inventory Search

Back
Top