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

    Custom Grouping with Drill Down

    xlbo, Thanks for the help. I tried to do this but unfortunately it doesnt work. The details grouping section is made hidden until the last selected group is expanded, in this case i attached its visability to group 4; however, if group 4 is hidden there is no way to expand/view the details...
  2. PNeems

    Custom Grouping with Drill Down

    I am trying to figure out how to give the flexability for custom grouping along with the drill down features SSRS provides. I have given the flexability for 4 levels of custom grouping that the user can decide at run time. However, they dont have to select 4 they can select 2 or 3, etc.. When...
  3. PNeems

    Spacing on reports

    I have a very simple question that i cannot find the answer too. When I preview and view the reports i have written with MS BI Studio for some reason the multiple drill down items appear incredibly far apart. Sometimes they cant even fit on the same screen. Is there a way to fix the spacing...
  4. PNeems

    Error when loading reports page

    When i try to go to my report page (http://localhost/Reports/) i get this error. I have no idea why. Has anyone see this before? Do you know what the problem may be? Thanks in advance for the help The XML page cannot be displayed Cannot view XML input using XSL style sheet. Please correct...
  5. PNeems

    Cast error with Case Statement

    George, Thanks for the help. I dont think that is the issue. I dont have an else statement in my code. This it the whole code WHEN [AMOUNT] >= 0 AND [ATCODE] = 'A' THEN 'Asset' WHEN [AMOUNT] < 0 AND [ATCODE] = 'A' THEN 'Liability' WHEN [AMOUNT] >= 0 AND [ATCODE] = 'I'...
  6. PNeems

    Cast error with Case Statement

    I am running the below case statement and getting the below error. I have no idea why its not working, it seems so simple, but i am not trying to convert anything. Does anyone know what the problem is? CASE WHEN [AMOUNT] >= 0 AND [ATCODE] = 'A' THEN 'Asset' Conversion failed when...
  7. PNeems

    Simple Details Grouping Problem

    I am using SSRS 2005 with MSBI Studio 2005. This seems like the simplest problem but for some reason i cant get it to work. I am trying to toggle the details grouping to only become visable when a report item is toggled. However when i go to the properties menu and click on details grouping...
  8. PNeems

    Best overloaded method match error

    I think i figured it out...Nevermind Thanks! sorry for the post
  9. PNeems

    Best overloaded method match error

    I am getting this error when I am compiling my code and I am not sure why. The error is CS1502: The best overloaded method match for 'CatalogAccess.EvalRegion(int)' has some invalid arguments This is the line of code causing the error String title = CatalogAccess.EvalRegion(regionID); This is...
  10. PNeems

    User Control Postback

    I have a user control on one of my pages and server side validation that is based off fields in that control. When a user updates the information in the control i want the server side validation to revaluate. My valuations are in the page_load event. How do i get this user control to cause a...
  11. PNeems

    Swaping Image Location with ASP tags

    I had written a page in html/js and set up a very simple function to swap the location of a picture between the main location and the thumbnail location. function changewindow(filename) { document.mainwindow.src = filename; } <img src="Image/Front.JPG" name="mainwindow" height="300px"...
  12. PNeems

    Parent Postback from User Control

    jmeckley, Thanks for the reply. Let me try explaining it better. Basically I am using a FormView Object on the control and there is an items template and an edit item template. The control is then on different pages. One of the pages looks at some of the values on page load and determine...
  13. PNeems

    Parent Postback from User Control

    I am created a user profile page. The page needs certrain criteria to be filled out before advancing to the next page. So there is code in the parent page the control is being used in to check this criteria. However when the person edits it the edit and update button are all done in the...
  14. PNeems

    Parent PostBack with User Control

    I am created a user profile page. The page needs certrain criteria to be filled out before advancing to the next page. So there is code in the parent page the control is being used in to check this criteria. However when the person edits it the edit and update button are all done in the...
  15. PNeems

    C# Shopping Cart Error( Value conversion)

    I am not sure I follow. I dont see how there is a Parsing error anywhere. The only time i Parse in my ENTIRE code is to determine a boolean value in an XML String which reads "true" but that is completely unrelated to this and the site build correctly when i load the other pages just not the...
  16. PNeems

    C# Shopping Cart Error( Value conversion)

    I am writing a shopping cart using C# and I have got a good portion of it down, being able to add a users values to the cart and storing a unique identifier per user on the DB to that users only get their cart. I am getting and issue when it comes to viewing that cart. This is the error I get...
  17. PNeems

    ASP.NET VB Shopping Cart

    BigRed Thanks for the post but that is not what i meant. I am just trying to figure out how to be able to transfer over all the data in cookies or a session whatever is best. Just the simple code that allows me to do this. Not a whole made shopping cart
  18. PNeems

    ASP.NET VB Shopping Cart

    I am trying to figure out how to create a shopping cart in VB.NET on my ASP website. Does anyone have suggestions on how to do this. I have tried sessions and cookies and I cant get it. Maybe I am just doing something wrong. can some one else suggest how to do this? Can i get some quick...
  19. PNeems

    good quality asp.net tutorials

    Dino Were you able to contrust this shopping cart? I am trying to figure out how to do it. can you offer me any help? thanks so much

Part and Inventory Search

Back
Top