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 strongm 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. OutInLeftField

    Crystal Reports Days and work hours display

    empid workid datetime hours workcode desc Mshehan 1 2007-05-29 08:30:00.000 0.0 On Mshehan 2 2007-05-29 12:30:00.000 4.0 Off Mshehan 1 2007-05-29 13:30:00.000 0.0 On Mshehan 2 2007-05-29 17:00:00.000 3.5 Off...
  2. OutInLeftField

    Crystal Reports Days and work hours display

    I have to create a crystal report in Visual Studio .net that looks like the following: Day On Off On Off... Monday 8:30 12:00 1:00 5:00 Tuesday 8:30 12:30 1:30 5:00 etc. any ideas how to do this? I know you can make a crystal report and pass the data to it and display...
  3. OutInLeftField

    How do I have Frame A to validate Frame B's form?

    I got it working. thank you for all of your help! I have to put this function on All pages in order for this to work.
  4. OutInLeftField

    How do I have Frame A to validate Frame B's form?

    I'm getting closer! In the submit button, I have "parent.Page1.doSubmit();" as you suggested All of the pages have no validation have the count set to 0 automatically to send it along: function doSubmit() { count = 0; if (count > 0) alert("no...
  5. OutInLeftField

    How do I have Frame A to validate Frame B's form?

    This is what I've done. no success yet. Am I missing something or syntax incorrect? The submit function went from function frame2() { parent.Page1.document.FormSubmit.submit(); } to { var a = parent.Page1.document.FormSubmit.doSubmit() if (a)...
  6. OutInLeftField

    How do I have Frame A to validate Frame B's form?

    Ok..Now I understand. I'll try it. thank you so much for your assistance.
  7. OutInLeftField

    How do I have Frame A to validate Frame B's form?

    Thank you for the quick reply! The answer to the Frames question is because the this was a requirement from the users. Oh well...make the users happy eh? Now the first part. Now this will sound like a dumb ? How do I fully validate the form in order to fire the js to allow the parent frame to...
  8. OutInLeftField

    How do I have Frame A to validate Frame B's form?

    Hello, This is a doozy. I am trying to validate a form in Frame B from Frame A's submit button. The frameset looks like: <FRAMESET rows="85%, 15%"> <FRAME src="<%=session("passedValue")%>" name ="Page1"/> <FRAME src="Submit.asp" name ="Submit"/> </FRAMESET> The...
  9. OutInLeftField

    Frames and Form Submission

    Is it possible to do the following: top frame: submit and reset buttons lower frame: the form with fields, drop down boxes, etc. click the submit button on the top frame. The lower portion submits. The next page processes the data and loads a NEW form in the lower frame while the top frame...
  10. OutInLeftField

    Drop Down Box options not being displayed

    I used a sql command to select all of the users from the table. Then in the parameter default value screen I selected the sql command and all of the values. When I use Crystal Reports on my machine all of the required values appeared in the drop down box. But when I displayed the report in...
  11. OutInLeftField

    Drop Down Box options not being displayed

    With Crystal Reports 8.5, I created a dropdown box based upon a sql connection to retrieve a list of users. In the preview, all of the users appear in the listing. When I published this report in Crystal Enterprise, only 20 or so users appeared. Is there a setting on Crystal Reports server...
  12. OutInLeftField

    Form Validation (One field enables/disables validation of another)

    What I am trying to do is check to see what state code the end user puts in. If the state code (IL, IA, for example) matches any of the 50 state codes for USA, then the code will "turn on" validation routine for the zipcode form field-making the zipcode required. Otherwise the zipcode field...
  13. OutInLeftField

    Form Validation (One field enables/disables validation of another)

    I have a form that has States (2 char) and Zip code (10 char for 5 and 4 extension). What i need to do is check to see if the state field is one of the 50 states and military "state" locations then turn on javascript validation routine on Zip code field. If the location is not within the...
  14. OutInLeftField

    4 labels of 1 type then 4 labels of another on same report

    My question is how do I do the following as an example: Smith, James Smith, James Jim Smith address1 address1 Profession address2 address2 ApplicationDate City, State City, State SSN The address1,city,profession, etc. names are actual values from a sql...
  15. OutInLeftField

    Session Variable Not Expiring after 1 minute

    my apologies. My testing environment has set to 1 minute because I don't want to sit there for 5 minutes to wait to see if it reloads redirects... I'll change it to 5 minutes in production. Any ideas?
  16. OutInLeftField

    Session Variable Not Expiring after 1 minute

    The <%if session("group") = "" or isnull(session("group")) then%> code does just that. when the page reloads or refreshes after 80 seconds, the session variable ("group") should be empty because at 60 seconds the session should expire.the program should redirect to the notallowed page. The...
  17. OutInLeftField

    Session Variable Not Expiring after 1 minute

    Hello Everyone, I have an application that uses active directory authentication. I also use session variables to timeout the application after one minute for testing. When I finally get it to work, I'll set it for five minutes. Now the problem. Page that sets up session. session.Timeout =...
  18. OutInLeftField

    How to use ADVAPI32.dll

    Hello, How do I use the advapi32.dll to authenticate windows 2000 users against active directory in VBscript (ASP not ASP.net)? Thanks

Part and Inventory Search

Back
Top