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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by dcusick

  1. dcusick

    Get PDF Version Property in VBScript

    Hey all. I'm looking for help on how to do this.. I need to grab the PDF Version of a PDF file programatically, through VBScript. In order to get the PDF Version manually, you just right-click a PDF file, and go to Properties. On the Properties window, there is a PDF tab, with PDF Version on...
  2. dcusick

    Mesage while refreshing Drop Down Boxes

    I was able to figure this out.. I just created a JS function in order to add a SELECTED value to the DDL, and then added an onChange event to the initial DDL. Here is some code, in case anyone is looking for something similar... In the ASPX page, I added this JS function.. function...
  3. dcusick

    Mesage while refreshing Drop Down Boxes

    Hey all.. I have a question I hope someone can help me with... I currently have a form, with 3 Drop Down boxes... Role, Location, and Employee... Basically, the first 2 boxes are filtering options for the third.. Upon initial load, all 3 boxes are populated with all possible values.. When...
  4. dcusick

    Classic ASP Equivalent to Reflection

    Hey.. After hours of trying different things, I finally figured out how to get this working.. Figured I'd post the answer, in case any one else was looking.. Basically needed to assign the dynamic variable to a variable first, before printing it out... Thanks to anyone that might have looked...
  5. dcusick

    Classic ASP Equivalent to Reflection

    Hey all.. I was wondering if anyone happened to know of a way to simulate Reflection in Classic ASP... Basically, I have a COM DLL with a bunch of properties.. There are 7 of those properties which I am interested in, Option1, Option2, Option3, etc.. I would like to be able to access those...
  6. dcusick

    Sub-Form Sum in Footer not displaying

    Oh, and one more thing... If I open up SubB on it's own, the totals display as expected... It must have something specifically to do with being used as a SubForm, possible with the Master/Child links..
  7. dcusick

    Sub-Form Sum in Footer not displaying

    Hi all.. I have an ADP Project that I initially converted from an Access DB. One of my forms has a Tab Control, on which one of the tabs has a subform(SubA), that has another subform(SubB) on it. Basically, the main form has a drop-down that selects a code, that updates the SubA, and then...
  8. dcusick

    IE cannot display the webpage

    Hey all.. I'm having an issue with a webpage I'm building in ASP.NET... I have a page with a simple form that has a dropdownlist and a few textboxes... Upon selecting a value in the DDL, it posts back to the page, and fills in the textboxes. This page works great in Firefox, however not so...
  9. dcusick

    How to Tell the Version of ASP.NET

    Hello all! I was recently given a new project, and I am going to have to move over a website from a server to a new server. The new server is asking if the site is ASP.Net v1.1 or v2.0. The website was originally built overseas, and no one that was involved seems to know. Is there an easy...
  10. dcusick

    ASP.NET And Office Docs

    ugh... I was afraid of that... I was trying to get around the users physically having to do anything after saving. Can't really trust them to save it to the right directory, and then picking the right file. Oh well, guess it's time to do some rethinking... Thanks for the info!
  11. dcusick

    ASP.NET And Office Docs

    Okay, I have a DB with a bunch of records in it. I also have about 8 assorted Word and Excel docs. Now, when a user opens up a record, they will be able to open up a document specific to that record. When a user tries to open up this doc, I would like to open up the specified document in a...
  12. dcusick

    Javascript with Dynamic Controls

    Yeah, I actually saw that. The textbox is pretty large, so when I have visibility:hidden, it's not visible, but the space it should be in is fully taken up. On the other hand, when I have display:none, the width of the table is only that of the longest label, and increases the width if I set...
  13. dcusick

    Javascript with Dynamic Controls

    Yeah, just figured that one out. I did the following control.style.add("display", "none"); Then in my js, I have document.form.control.style.display=""; Works like a charm. Thanks for the input tgreer!!
  14. dcusick

    Javascript with Dynamic Controls

    Okay, thanks for the reply, but I think I figured out something else... This is actually calling fine, however, the issue is with my form. When I create one of the textboxes, I want it hidden by default, so I set Visible = false, in my code-behind. Now in my javascript code, I'm trying to set...
  15. dcusick

    Javascript with Dynamic Controls

    Hi all. I am having some major issues here, and there has to be a solution out there. I have a page, that is dynamically created from database entries. I create 3 select boxes and two text boxes for each row in the database. I do this through a loop, create new controls, set the properties...

Part and Inventory Search

Back
Top