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 biv343 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. GirlFriday1

    Retreiving info from database according to date

    Hello! I have been playing around with this whole date thing for a while. That javascript code that Deltaflyer wrote is great, but how do you use just peices of the function? I want my system to automatically do the month calculation and only show the user the records that were made on or...
  2. GirlFriday1

    Retreiving info from database according to date

    Hello there! I have a select box that allows the user to select records from the last 3, 6 or more than 6 months in the past. The trouble is is that I don't know how to do this. What I thought was maybe get the current date somehow, then subtract 90 from that for the 3 month selection, 180 for...
  3. GirlFriday1

    Onchange - why isn't this working?

    Hello there! I have a drop down box with that is populated using a database. This is the code: <SELECT NAME=&quot;User&quot;> <option value=&quot;<%=Request.Servervariables(&quot;SCRIPT_NAME&quot;)%>&quot; selected>-- Select --</option> <% While not RS2.EOF %> <option...
  4. GirlFriday1

    How do I change the location of the popup window on the screen?

    Yup, that is almost what I needed. I added another function to call the first one to get it to do exactly what I needed it to do. Here is the finished code in case you are interested! <script language=&quot;javascript&quot;> function GoNewWindow() {...
  5. GirlFriday1

    How do I change the location of the popup window on the screen?

    You may have to explain this like I'm an 8 year old. So in the 1st part of the function when you declare the dockedwin variable, 1) what does the otherops variable do? 2) In your explanation: &quot;width=&quot;+width+&quot;,height=&quot;+height+otherops) Where do you specify the height and...
  6. GirlFriday1

    How do I change the location of the popup window on the screen?

    mkay,,, I'm not sure how to implement these suggestions so I guess I'll start with jaredn. See how I put your code into the function? Is that where to put it? If not, where? Any suggestions? Thanks! <script language=&quot;javascript&quot;> function openMe(){ DeptList =...
  7. GirlFriday1

    How do I change the location of the popup window on the screen?

    Hello! I need to know how to change the location of the popup form on the screen to locate itself at the top, right hand corner. Presently, it opens in the middle of the screen and the user must move the popup window manually. Any suggestions? Thanks!
  8. GirlFriday1

    Link9, with your help I figured out the refresh problem

    take a look at my last thread. A few minor revisions and viola! Refreshing without actually refreshing. Let me know if you would like to see the finished code! Thanks for all of your help!
  9. GirlFriday1

    That pesky refresh error warning - how to get rid of it?

    Hello again! I figured it out (Thanks Link9!). In order to accomplish every thing that I needed to do, it was a matter of timing, literally. I created a new select statement within my program and used this Quit select to call the updating Javascript function. To call the quit, I refered to it in...
  10. GirlFriday1

    2 windows, back to first without reloading?

    GirlFriday here.... I asked this question today as well, but I tried the .focus() and it didn't work. The only noticable difference (that I can see) is that the error box now is greyed out, although it still works.
  11. GirlFriday1

    That pesky refresh error warning - how to get rid of it?

    That is true, but the parent window that I opened, opens the child window and then back again, so I don't think that security will come into play for this particular example. The info is going where it is supposed to go, but it's that extra, annoying step of manually refreshing that's the...
  12. GirlFriday1

    That pesky refresh error warning - how to get rid of it?

    Hello! I have a popup window that updates info in a database, closes and is supposed to refresh the table in the parent window. It works, except that the user must interact with a warning box to continue. I need to get rid of this box. Any suggestions? My code to date is this: <script...
  13. GirlFriday1

    Closing a child window

    I was forgetting the () at the end of the statement. You are seriously helping me out of a HUGE jam today, Thanks! Another vote for you! (a small repayment for all of your help!)
  14. GirlFriday1

    refreshing a parent window from a child window

    Hello! I am almost there! I just have to figure out a way to get rid of that automatic refresh error that makes the user &quot;Retry&quot; to get the new info. Maybe that is what you were talking about a little while ago. I'll give it another go and post the code (if it works!) Thanks again!
  15. GirlFriday1

    Closing a child window

    mkay,,,newbie question,,do I put this in the parent or the child window? I've tried both but they don't seem to work. Is it because I'm using them in a select statement? Thanks again for the tips Link9! This is a HUGE help! Yer great!! Thanks! Your friend, GirlFriday!
  16. GirlFriday1

    refreshing a parent window from a child window

    Why two forms? The only thing that I really need is a user ID to be sent from the parent form to the child form. Once the updates are done to the database from that child form, the update button is clicked and the parent page is automatically refreshed with the new info from the database. Should...
  17. GirlFriday1

    Closing a child window

    Hello again! My question is,,,how do you close a child window using a button? Any suggestions? Thanks!
  18. GirlFriday1

    refreshing a parent window from a child window

    Hello again! I need to know how to refresh a parent window, using an update button from a child window. This button will update info to the database, close the child window and go back to the parent window, having the parent window showing the new info that was inputted from the child window...
  19. GirlFriday1

    updating a form using a popup window (VERY URGENT!!)

    Well, it may take a few minutes to incorporate this into my asp file, but it seems like it might work. Thanks, and as soon as I get it working (or not), I'll let you know! Thanks!
  20. GirlFriday1

    updating a form using a popup window (VERY URGENT!!)

    Hello there! Here is my problem... I have a parent window that is populated with information from an Access database using ASP. I used Jsavascript to open a pop up window that again is populated with information from the database. It also gets a user ID from the original form (1st window). My...

Part and Inventory Search

Back
Top