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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by soslippy

  1. soslippy

    Dynamic text in a frame

    First I created a dynamic text field. So instead of typing text into the field, I specify the variable text that loads into the field at runtime. In the Property inspector of the text field I typed newsField as the variable name. The .txt file is called news.txt and contains the text...
  2. soslippy

    Dynamic text in a frame

    hello all, i made a site with a dynamic text box, the contents of which are in a .txt file outside the movie. it worked ok with: loadVariables("http://www.mysite.com/news.txt", ""); but then i put the movie into a frame page in the web and now it doesn't work any more. any...
  3. soslippy

    strange problem

    yes that works perfectly, thx v much :)
  4. soslippy

    Getting the last X amount of records from a table

    yes that works perfectly, thx v much :)
  5. soslippy

    strange problem

    hi everyone, i'm wanting to write this... SELECT * FROM Table1 WHERE (([field1]+[field2]+[field3]+[field4]+[field5]+[field6]+[field7])-([field8]+[field9]+[field10]+[field11]+[field12]))/21*100 <= [Score?] it asks for Score? when i run it but give stranges results, like returning the ones with...
  6. soslippy

    Moving data in a table

    Well you might have guessed table1 contains my vessels and their contents and I want to move stuff from one vessel to another. The query I mentioned displays the vessels from where I want to move stuff to and from, but I can’t update that query. So I want a query which will ask which vessel I am...
  7. soslippy

    Moving data in a table

    so far i have SELECT a.tank, a.type, b.tank, b.type FROM table1 AS a, table1 AS b WHERE a.tank = [from tank] AND b.tank = [to tank]
  8. soslippy

    Moving data in a table

    hi i have a table which contains fields: Vessel, Type, Volume, Alcohol and i want to move things around from vessel to vessel, combining the contents sometimes or emptying them all together. please advise

Part and Inventory Search

Back
Top