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 SkipVought 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. yandso

    IIS6 Asp page only works as default

    I am moving my site over to IIS6. Non of my .asp pages will work. They all come up with 404 with the exception of the default.asp which will work as long I access it as http://www.mysite.com/ if I actually put in default.asp then I again get the 404. I have Active Server pages allowed and...
  2. yandso

    ASP Page Run Nightly

    One thing that I have done in the past is to just send out the welcome note after they set up there account. That way you don't have to worry about your page not being kicked off or being done twice. You can just add a server side include that is only kicked off after they have succesfully joined.
  3. yandso

    remove sunken effect from a textfield

    Is there a reason that you are using a text field? If you are not submitting it you could use a span or a div.
  4. yandso

    Compare two strings!?

    Well on way would to be to compare the value of your text field in a like statement. Select * from table_name, where field_name like 'field_value' This is off the top of my head and may need some tweaking. Of course if you do this and have a large database you will suffer a performance loss
  5. yandso

    Call Scene with Javascript

    I have a html page with and embedded swf, with several scenes. I have buttons on the html that when moused over I would like to have call the correct scene. For scene 1 I can just use the GotoFrame(1), but how do I call the other scene's?
  6. yandso

    Combining SQL fields in query

    I need some help. I am trying to pull first_name and last_name from my database as Name. I have tried using Select first_name+" "+last_name as Name from names I don't get an error but I also do not get any data. Any help would be great.
  7. yandso

    Trouble using variables in RS(var)

    I figured something along that line. However what I really need is some way of doing this and cycling through the records.
  8. yandso

    Trouble using variables in RS(var)

    I have a loop that should cycle through my RS. It does but keeps showing the same data. Any help would be great. dim ha_name,field_1,field_2,field_3,field_4,field_5,field_6,field_7,sort,fieldName1,fieldName2,fieldName3 dim fieldName4,fieldName5,fieldName6,fieldName7,fieldName8 field_1 =...
  9. yandso

    Lost Admin Shares

    I have a 2000 server that is running Norton Antivirus. Every day or two it will loose the C$ IPC$ and Admin$. I can recreate them using Net Share [sharename]? I have talked to Microsoft and they claim it is sometimes caused by Norton or some other third party product. I would love to know if...
  10. yandso

    Downgrading 2003 Lic on NT4 SBS

    I have a client who purchased 20 cal's for 2003 server and wants them added to there NT4 SBS server. The problem is that when you get a license from the eopen site you do not get a diskette. Anyone know how to get around this?
  11. yandso

    Work reduction for multiple actionscript

    Here is what I have. I have a state map, when you mouse over the counties the name shows up in the middle of the movie and the county is highlighted, I did this by turning each county into a button and then I assign the county name to a variable. Of course I had to script each county. Now I...
  12. yandso

    Device Manager and Network props empty

    Ok here is a good one. When I goto the properties of Network Places there is nothing there. I use to see my LAN connection but no longer. Also the icon for network connectivity is gone from my tray. When I goto device manager there is nothing in there. I have already checked to make sure...
  13. yandso

    Find the X Y coords of a object

    That did the trick. Thanks I owe you one
  14. yandso

    Find the X Y coords of a object

    One more question stormbind. When I run that script it tells me that the left and top are NaN? Any ideas
  15. yandso

    Find the X Y coords of a object

    Thanks stormbind the offsetLeft and offsetTop were exactly what I was looking for. What is the offsetParent for though?
  16. yandso

    Find the X Y coords of a object

    The movie
  17. yandso

    Find the X Y coords of a object

    I need to find the x and y coordinates of a flash movie on my page. I perform different actions when the mouse is not over my movie. However I need to know what the x and y are all the time. For example if they have a different resolution or if the page is not maximised.
  18. yandso

    Adding javascript inside body tag??

    That has done the trick...Thank you very much.
  19. yandso

    Adding javascript inside body tag??

    Jeff, That was exactly what I was looking for thanks. One question though. It does not appear that the onmouseMove event kicks off after I have added it the tag?
  20. yandso

    Adding javascript inside body tag??

    I have a page with a flash movie in it. I want the movie to finish, then add a onmouseMove event into the body tag. I have already coded the movie to call a function at the appropriate time, I just don't know if I can change the body tag then???

Part and Inventory Search

Back
Top