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 Mike Lewis 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. johnfraser

    AJAX Progress Bar for long business component call (or multiple calls)

    I have an application that does three things in this order: 1. Pulls data from storage 2. Applies business rules (extremely complex) 3. Compiles Results 4. Downloads results (pdf) in object tag on page At the most basic level, I'd like to have a "loading..." AJAX appear until the work is...
  2. johnfraser

    Best way to display PDF? iFrame? Frame? other option?

    okay so here is the deal. The Acrobat OCX control (installed with reader on a client PC) accepts some commands but they are accepted as parameters on the end of a URL.... not through any other method. (specifically hiding the save/print toolbar on default) I originally planned on having a...
  3. johnfraser

    Session("MyVar") into objects "automatically"?

    I have an application that relies on 5-6 fundementle objects to run properly. They are session level objects that are accessed through out the application. My question is... what is the perferred method to access these throughout the application? I could: provide a static property which...
  4. johnfraser

    Display PDF without acrobat? (rather without all the options?)

    I have an intranet application that needs to display a PDF for "visual guidance" to the end user but shouldn't open up in an embedded acrobat because we want to prevent the users from doing standard things like printing or saving the PDF directly (there are adobe lifecycle server functions for...
  5. johnfraser

    (AJAX) Tree Inside Upate Panel can't get parent node on click??

    Okay so when I dynamically add items to the tree using the update panel when I fire a server side event I don't have access to the parent. I can sort of understand why but it doens't mean I like it nor does it mean that I don't need to have access. The question is really how??? So, bottom...
  6. johnfraser

    have tree, get 5 records at a time?

    SQL Denis, exactly what I needed. Now to figure out exactly how to bind the "new query" to the existing data in the application side.
  7. johnfraser

    have tree, get 5 records at a time?

    humm maybe I didn't propose my problem correctly. using the example code you provided above will get me the top X number of results. now lets say there is 20 total results. I'd like to be able to do something like: GetResults(int seed, int number) Example: GetResults(0,5)---Gets results...
  8. johnfraser

    have tree, get 5 records at a time?

    I'm using SQL 2005. I'm gitty with excitement that we might be able to do this. Thanks!
  9. johnfraser

    Need Help With Many to Many DB relationship into AJAX Treeview

    Answer found I'll try to explain. My database has the following: relationship rel_customer_cr customer customer_order_cr order many to many relationships are done with the cr tables. In my tree I wanted simply: Relationship -Customer -Order I ended up creating 3 adapters and the...
  10. johnfraser

    have tree, get 5 records at a time?

    I have a ASP.net Tree and due to our end users I've implimented load on demand using AJAX. They are looking for additional savings by limiting the amount of nodes returned to 5 (as an example). So: Parent: -Child01 -Child02 -Child03 -Child04 -Child05 -More.. When I click on more...
  11. johnfraser

    Need Help With Many to Many DB relationship into AJAX Treeview

    Hi and thanks for the response. The code example is from the example I linked to. They have one to many. Example: Relationship 1 Relationship 2 Relationship 3 Customer 1 Customer 2 C1 belongs to R1 and R3, C2 belongs to R2 and R3 Treeview would show the following: R1 - C1 R2 - C2...
  12. johnfraser

    Need Help With Many to Many DB relationship into AJAX Treeview

    I have a pretty simple DB design with three items: relationship customer account a customer and account can be in multiple relationships to in the DB there is a CR table which connects the two. Moving on... I am attempting to create the simplest possible solution to get this into an AJAX...
  13. johnfraser

    Populate table and maintaining data across postback problem

    Session state would solve your issue. Why is the property set after page load. If you want the data to be displayed on creation, this is where I would place the table population.
  14. johnfraser

    Specified argument was out of the range of valid values. Parameter nam

    The exception is happening when you are attempting to set a value by it's index. It is possible two things are happening: The index you are attepting to set is larger that the list populated in the control The index you are attempting to set is happening before the control gets it's data back...
  15. johnfraser

    DLL files in the gac... what about dll's that reference .jars?

    I came into my new group about 6 months ago and noticed immediately that there were about 50 versions of the same my1.dll my2.dlls laying around. I successfully put most of the dll's in the gac where they should be for our applications but I'm having trouble with a dll which comes from another...
  16. johnfraser

    Inheriting Web UserControl

    Okay so I have a Webuser control which I want to contain the very basics of a common set of controls. Title, sub title, error section (just a label) etc. I try to do this with the following code: public class BaseControl: Web.UI.UserControl { } another class that inherits from it: public...
  17. johnfraser

    Can't host VS 2005 ASP.net apps on localhost/virtualdirectory?

    Thanks, funny thing, after doing nothing 1 day later everything is working just fine =(.... Just wish I knew what I did to fix it.
  18. johnfraser

    Web Reference Registered in GAC?

    We have a number of web references in our application nearly all of them are generated inside the application but two come from another group at my company(PDF generation). Normally in ClearCase we don't store anything in the webreferences folder. With these external web references we have two...
  19. johnfraser

    How to make DLL appear in VS 2005's "Add References->.Net Tab"

    I have some standard DLL's that 20 developers need to have constant access to. I've made an installer which will install them in a location on their drive. Now I want to modify the registery to add the location like this doc says...
  20. johnfraser

    Can't host VS 2005 ASP.net apps on localhost/virtualdirectory?

    Hi good question. I'm running .net 2.0 Specifically Version 2.0.50727 Unfortunately I already tried this. But Thanks!

Part and Inventory Search

Back
Top