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

  • Users: johnfraser
  • Content: Threads
  • Order by date
  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?

    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...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. johnfraser

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

    I left for a 4 week vacation (well "vacation" is my daughter's birth). I come back and suddonly I can't debug my ASP.net application. It's an ASP.net WebApplication and the Properties under the web tab are setup to "User IIS Web server" Project Url = http://localhost/MyWebApp override is NOT...
  13. johnfraser

    Attaching to ASP Web App Debugging - Early Morning Dumb Out

    Okay I don't think I've ever had a problem before but I think I'm having a brain fart. Essencially I have my web application on my own computer and I'm trying to attach to the process right as the main login page of the application comes up. It attaches just fine but doesn't hit any of my break...
  14. johnfraser

    MenuItem no attributes? alternatives?

    I have a menu system that populates it's items by data binding. The menu itself we have a java script function attached as an attribute that checks to see if the menu item clicked is of special type. Unfortunately the defect is when the menu items have children. When I click on the children...
  15. johnfraser

    Override TextBox ".Text" web control

    I'm attempting to override a textbox control .Text property with the simple "AddCommasToNumber" when you call the Text Set property. The catch is that I want the Text Get to return just the number. control.Text = "1000"; //Displays "1,000"; string myString = control.Text; //myString =...
  16. johnfraser

    ASP.net CompareValidator-VCO.DataTypeCheck check other types?

    Hi there. Not new to C# but fairly new to ASP.net C# I'm working with existing code and needed some explaination: CompareValidator class and ValidationCompareOperator.DataTypeCheck public CompareValidator AddDataTypeValidator(WebControl controlToValidate, ValidationDataType dataType...
  17. johnfraser

    Unit Test ASP.Net.... can't debug test with VS 2005 TE

    I'm a C# Thick Client developer who is getting into ASP.net. I'm attempting to unit test a VS 2005 Web Project (well a class/function inside a project). Unfortunately it never hits the break point yet I can break point find in a separate Application project on the same machine. There are a...
  18. johnfraser

    Problems with AJAX and TreeView/TreeNode Derived Class

    I have a programmer that has an AdvancedTreeView class that is derived from TreeView and AdvancedTreeNode drived from TreeNode. There was some additiona formatting on the node added. Long story short the control initially populates the primary level 0 just fine. We'll click on the node to...
  19. johnfraser

    Reflection to create instance of datasets?

    Hi, I've used reflection in the past for the common need of getting methods from within an assembly an running it. I have a new situation and reflection searches on google seem to turn up too much of the simple and not enough of what I'm looking for. Basically I have an assembly that...

Part and Inventory Search

Back
Top