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. spacedeveloper

    Not all Active Directory Groups showing up for User

    Hi All, I'd really appreciate some help on this. It's got me a bit stumped. I am trying to retrieve all of the Groups that I am a member of from Active Directory. The follow to pieces of code are ways that I am attempting to do this. It works very well with other users...but not for me! It...
  2. spacedeveloper

    Parameters in OPENROWSET?

    Thanks, I'll take a look at these suggestions and try to test them out. The way I've been attempting to hit the problem is by dynamic sql...as much as I'd like to avoid it.
  3. spacedeveloper

    Parameters in OPENROWSET?

    Hi everyone, I must be missing something simple here, but I can't seem to find it. When I try to run this openrowset query I get an "Incorrect syntax near '+'." error near the line mentioned. Can someone help me find the problem? Thanks: declare @PropID varchar(16); declare @FolioNum int...
  4. spacedeveloper

    Active Directory not retrieving a Group that I'm a part of

    Hi All, I'd really appreciate some help on this. It's got me a bit stumped. I am trying to retrieve all of the Groups that I am a member of from Active Directory. The follow to pieces of code are ways that I am attempting to do this. It works very well with other users...but not for me! It...
  5. spacedeveloper

    How to debug classic ASP in VS?

    I have been trying for a long time now to set up a good debugging environment for my company's website, which, unfortunately, happens to be in classic ASP. Up until now I have never had a way to step-through breakpoints and have, instead, coded a lot of "response.write", but I'm increasingly...
  6. spacedeveloper

    onsubmit = 'return false' not working in IE

    P.S. "BillyRay": (Dawkins' Out Campaign is great!)
  7. spacedeveloper

    onsubmit = 'return false' not working in IE

    BillyRay, no I'm not directly calling the form's submit method from anywhere else in the code.
  8. spacedeveloper

    onsubmit = 'return false' not working in IE

    Actually, the page is on an intranet site at my company. Vacunita, the code above that you posted works fine for me as well! Wierd. So, it's gotta be something else in my code and not the browser per se. I'll post all of my js and see if there's anything I'm missing: <HEAD> <script...
  9. spacedeveloper

    onsubmit = 'return false' not working in IE

    Borvik, yeah I double checked: those ID values do exist on the page elsewhere.
  10. spacedeveloper

    onsubmit = 'return false' not working in IE

    Even if I change the number of characters, the page still submits if I exceed entering the # of characters into the field. So, I guess it's definitely something else. I do not get any js errors and I've been looking in IE's Developer Tools Script tab for debugging. Cannot figure out what's...
  11. spacedeveloper

    onsubmit = 'return false' not working in IE

    But that's the issue: it gets submitted EVEN if there are more than 254 characters and I have no idea why.
  12. spacedeveloper

    onsubmit = 'return false' not working in IE

    Well, the original form code was a call to a js function, like this: <form action="http://www.website.com" onsubmit="return validateForm();" method="post"> And here is the (condensed) js: <script language="javascript" type="text/javascript"> function validateForm() { var...
  13. spacedeveloper

    onsubmit = 'return false' not working in IE

    Hi everyone, I'm wondering: why does my form STILL submit in IE after this code is written (it does NOT submit in other browsers)?: <form action="http://www.website.com" onsubmit="return false;" method="post"> My button is a type="submit" button. Thanks for any help
  14. spacedeveloper

    Server.ScriptTimeout not working. Why?

    Hi everyone, I was curious to know what would cause a Server.ScriptTimeout value to be bypassed? I have a Server.ScriptTimeout = 120 and my IIS timeout is set to 120 seconds as well. Then I set a 400 second delay in a stored procedure that I call within the script and the whole page waits 400...
  15. spacedeveloper

    How do I open a newer version of Excel file from older version?

    hawkdaddy: yeah, I saved the file at home with a different password and it's also shorter (15 characters now). I saved it in a backwards comptible file type as well. None of that has helped though.
  16. spacedeveloper

    How do I open a newer version of Excel file from older version?

    Well, I've tried shortening the password to 15 characters and tried to open it on the work computer (with the older version of Excel), but the error still appears: I've checked and rechecked my password. It is correct, but to no avail. Anyone have any other ideas as to what to do to open this...
  17. spacedeveloper

    How do I open a newer version of Excel file from older version?

    That's what I'm afraid would be the answer. I wonder why Microsoft never thought of this possibility before releasing the newer version?
  18. spacedeveloper

    How do I open a newer version of Excel file from older version?

    Hi everyone, I don't know if this is the correct forum for this question, but I'll try anyway and thanks for any help you can provide. I have an Excel 2007 file that is password-protected that I created on my home computer. Unfortunately, I've been trying to open it on my work's computer, which...
  19. spacedeveloper

    Script runs too long and sometimes times out

    Yeah, the parameter size is small, but hasn't been a problem due to the variable having really only 3 characters max and it is validated beforehand as well. The double pinging doesn't seem to be a problem either b/c the 2nd pinging writes to a text file that almost immediately gets generated...

Part and Inventory Search

Back
Top