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

    video

    Hi Does anyone know how I can check for different video formats. I am creating a website in which people can upload funny videos. I am not sure how to check whether a file is .mov. The easiest way is to check for the file extention. I believe this is not enough cause now a user can just changed...
  2. farazmit

    Quicktime upload

    Hi Does Anyone know how I can check whether a file is .mov or not. I don't want to simply look into the file's extension ro see if it's .mov. Instead, I would like to search for some attribute within a .mov file to make sure it's a video. For example, if somebody changes the extension of a .txt...
  3. farazmit

    Flash button with text description

    Thank you very much great examples I was gonna give up but now I did it Thanks again Ross
  4. farazmit

    Flash button with text description

    Hi I am trying to make a flash button and I want to display a discription of button once the mouse goes over the button. Besides, the description moves with the mouse as long as the mouse is on the button's area. I haven't used flash for long. please let me know about the flow of script and...
  5. farazmit

    Use javascript to read a form's listbox index in for loop

    Hi I want to use javascript to read form's listbox index in a for loop boundry. The problem is shown below: <select name="List2" value = "<please select an occupation>" onChange="this.form.ValueIn2.value=this.options[this.selectedIndex].value"> "<please selecrt an occupation>" <option>...
  6. farazmit

    updating which files are write protected

    Hi I've been trying to use javascript to write html code into my html files which are located on the server In other words, using javascript , I am trying to update my html pages right after choosing an element from an html form. However, my files are located in a write protected folder in the...
  7. farazmit

    Sql requesting from form

    oh here is the connection for recordset2: <% var Recordset2 = Server.CreateObject("ADODB.Recordset"); Recordset2.ActiveConnection = MM_VooplaV1_STRING; //selecteditem = M(); Recordset2.Source = "SELECT BusName FROM BusinessInfo WHERE City = '"+ Response.write request.form1("select")...
  8. farazmit

    Sql requesting from form

    Here is my connection: var Recordset1 = Server.CreateObject("ADODB.Recordset"); Recordset1.ActiveConnection = MM_VooplaV1_STRING; Recordset1.Source = "SELECT * FROM CityLookup"; Recordset1.CursorType = 0; Recordset1.CursorLocation = 2; Recordset1.LockType = 1; Recordset1.Open(); var...
  9. farazmit

    Sql requesting from form

    I have another connection for the city I just didn't want to write the whole code my problem is within the request Thanks again
  10. farazmit

    Sql requesting from form

    Hi I have the following sql statement which uses a form drop down list in the Where Statement. However, I get an error saying Object doesn't support this property or method. Recordset2.Source = "SELECT BusName FROM BusinessInfo WHERE City = '"+ Request.form1("select") +"'"; Here is the form...
  11. farazmit

    SQL Where clause problem

    I have a sql statement which reads some data from an access database. for thw where clause I would like to get it's value from one of my forms but I can't use document.form.listname.options[selectedIndex] to access my form in sql where caluse. How should I perform that. Here is the code...
  12. farazmit

    listboxes and javascript

    Hi Again I tried it but it only gives me the list of array values in a new page but I wasnt the values to go into my dropdown list/menu on the current page. Thanks again
  13. farazmit

    listboxes and javascript

    Hi I have a listbox and I am using javascript to fill in the values. I have a function which takes an array as input and is supposed to put them inside the drop-down listbox. I donno how to add the <option> and </option> html tags while I am using javascript. Here is the code I have: <select...
  14. farazmit

    Autopopulate ASP forms using javascript/Access

    Hi I have a form which has two parts. The first drop down menu asks about name of the product and the second part(types of product) should be auto- populated based on the answer to the first part of the form. I've just started working with ASP and I am using MS Access. if someone can help...

Part and Inventory Search

Back
Top