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 Mike Lewis 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. ElBlues

    MIAW - mpg not playing when windowtype=2

    Help!! I have an application whereby I want to play a MIAW which contains an Mpg file. When I create the MIAW normally it opens fin and plays but I want to get rid of the titlebar (Director MX not 2004), when I set the windowType = 2 the rest of the movie shows but not the mpg??? Anyone know...
  2. ElBlues

    Joined two seperate fields, which now have same name: need to seperate

    S'OK... Cracked it!!!! SELECT mofc_fixres.ID, H.TeamName As HomeTeam, A.TeamName As AwayTeam, RefName FROM ((mofc_fixres INNER JOIN mofc_teams As H ON mofc_fixres.Team_ID = H.Team_ID) INNER JOIN mofc_teams As A ON mofc_fixres.Awayteam_ID = A.Team_ID) INNER JOIN mofc_ref ON...
  3. ElBlues

    Joined two seperate fields, which now have same name: need to seperate

    Yes!! The second one works a treat... Now for my next dilemma, how to match up the Referee Number to the Referee_ID in the Ref table??? Here is the query so far: SELECT ID, H.TeamName As HomeTeam, A.TeamName As AwayTeam, Referee FROM (mofc_fixres INNER JOIN mofc_teams As H ON...
  4. ElBlues

    Joined two seperate fields, which now have same name: need to seperate

    Hi I have created a recordset from two tables, teams and fixres. teams has team data (ID, name etc) fixres has two values one for each of the teams in the fixture (Hometeam_ID, Awayteam_ID). I have managed to join the two tables to match the ID with the team name, however I can only get one team...
  5. ElBlues

    I want to create a duplicate value in another field

    That seems to have done the trick... Only now I can only retrieve either the hometeam name or the away team name (as when joined, both have the field name Teamname). Thanks anyway, will post this new problem in the sql section!
  6. ElBlues

    I want to create a duplicate value in another field

    Its a little long winded... Its based around a football league website premise... I have a Teams table and a Fixtures table. The Teams table has Team_ID column for each team, the fixtures table has a Hometeam_ID column and an Awayteam_ID column. The problem I have is relating the Hometeam_ID...
  7. ElBlues

    I want to create a duplicate value in another field

    I have a table with an autonumber primary key. What I want to do is automatically duplicate the value created in this field, in two other fields. Can I create an expression to do this?
  8. ElBlues

    Want to display entry relating to an ID of table

    I am creating an updatable Football league website: I have a table called Divisions with two columns: division_ID and Division, where Division is the label and division_ID is the value. I have another table called Teams with the division_ID value, how do I display the Division label on a page...
  9. ElBlues

    I need a directory listing script!!

    What I am attempting to do is create a list of files in a directory, which can be downloaded from a html page. SSI is enabled on the site, can anyone point me in the direction of a script that might do what I want? Thanks El
  10. ElBlues

    Problem with <= request

    PH, thanks for the advice, have it working now! Hadnt made the column numeric! Doh! Taking off the inverted commas helped too, many thanks!!
  11. ElBlues

    Problem with <= request

    Sorry, the full query is: SELECT * FROM ROOMS WHERE City LIKE '%varCity%' AND Rent <= 'varMax' taking away the inverted commas didnt help...
  12. ElBlues

    Problem with &lt;= request

    Hi I have a query that reads WHERE Rent <= 'varMax' Where varMax is a number entered by the user and Rent is the number in the database, when the user puts in a number with three figures, even though the database cointains an entry of 40, it returns no results, any idea why???

Part and Inventory Search

Back
Top