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 Shaun E 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. terraman

    CSS changed in JavaScript: how do I save?

    Kay, thanks for the help!
  2. terraman

    CSS changed in JavaScript: how do I save?

    I should have known it's not possible to change a server side sheet on the client side.. my mistake. but you have document.write, but that's only mime html?
  3. terraman

    CSS changed in JavaScript: how do I save?

    So, conclusion, it's impossible to save all the css adjustments you made in JavaScript?
  4. terraman

    CSS changed in JavaScript: how do I save?

    I've read it, but that example uses another external stylesheet and overwrites the original with the new one using href... But I haven't got another css file, only a JavaScript object
  5. terraman

    CSS changed in JavaScript: how do I save?

    Hi, I have a page where I want to change my CSS using JavaScript. I attached an external CSS and read it out using var CSS = document.styleSheets[0]; Now I can do everything I want with it (using getelementByID, AddRule etc. (I do it by using a button click and an input field) But as soon...
  6. terraman

    Update the source of a form

    Hi All, I got a query as source for a form: Select query1.*, query2.data from query1, query2 query1 selects all data from a table using 2 comboboxes as conditions. query2 selects all data from a table using 1 textfield. After the selection of the comboboxes I fid the record that is like the...
  7. terraman

    Leaving the "new record" mode

    Hi Guys, I'm working on an add , modify en remove thingy, pretty basic. I use the acNewRecord for add but when by example a user wants to search again and didn't add a new record after all, nothing work because he is still in the new record. Now how can ?I leave that "New record" mode...
  8. terraman

    Query to fill a textfield

    Hi all, I wrote a query that counts all records where the start and enddate are between the start year and end year of a form. There's one problem though, Access sais it is too complex to evaluate or that it has been typed wrong. This is my query: SELECT Count (Student.Number) AS...
  9. terraman

    Removing an old value of a combobox

    This worked perfect, Thanks, just what I needed.
  10. terraman

    Removing an old value of a combobox

    By the way, I tried to set the value to empty firts and then requery, but he then makes the field really empty.And the requery doesn't set the value of the combobox to the first row. Maybe there is an option to set the value to the first row?
  11. terraman

    Removing an old value of a combobox

    That;s what I did. The first combobox has got the following after update: Me!Combobox2.Requery Me!ComboBox2.SetFocus But When I select valua A in combobox1 The select value A1 in Combobox2 And then I select Value B in Combobox1 Combobox2 fills up with values matching the new combobox1 value...
  12. terraman

    Removing an old value of a combobox

    Hi all, I'm rather new to vba coding and I got two comboboxes. (in fact 3 but the third should work the same as the second so that doesn't matter) The second combobox is being filled by the first combobox so when I select a type in the first, all subtypes in the second show. I used a query for...

Part and Inventory Search

Back
Top