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 gkittelson 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. 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...
  16. dcusick

    Date/Time Formatted Input

    Lazy is right! 3305 is the same as 030305, is the same as 30305, is the same as 332005, etc. which is basically impossible to validate in Javascript. I built this the best I could, and now I have them complaining... oh well... Guess that's what you get for dealing with customers! lol... I...
  17. dcusick

    Date/Time Formatted Input

    Hello all... I have built a web app in C# that takes in a lot of input from the user. A bunch of the fields are date fields. I have set up a custom-function validater for the fields, to check for valid input. Valid input is MM/DD/YYYY. The users decided that they can't be bothered by typing...
  18. dcusick

    Session Timeouts and Variables

    Well, found an interesting solution to this.... for anyone looking for a possible resolution... On Body load, you need to set a variable to true... On every link on your page, you need to set this same variable to false in the onClick event... And then in the onUnload event, you check this...
  19. dcusick

    Session Timeouts and Variables

    jbenson... I was looking to fire an event immediatly on close, I wasn't really looking to pop open a confirm box. But thank you for the suggestion! vbkris, the onunload event will call no matter what happens, correct? Much like you pointed out to me above. If they navigate within the app, I...
  20. dcusick

    Session Timeouts and Variables

    Yeah, the problem is that we are using an AS/400 DB2 database, and company policy states we cannot use SQL Server... So I am using In Proc for my sessions... A colleague brought up an idea... An admin feature that lists the users in the Application object, and a way to select one of them to...

Part and Inventory Search

Back
Top