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: *

  • Users: Davide77
  • Order by date
  1. Davide77

    html table and css

    i was trying to find out how to affect html table by using css: for example i want a table that has the topmargin but not the bottom margin... but I don't know how to achieve this. My question: is it possible to affect html tables with css?, and in this case do you know a good site with the...
  2. Davide77

    html table and css

    Hi, I have a general question about table and css. I was trying to format a table by using css styles but i looked around a little bit and it seems that css can work without using tables... does someone can give me a good link on this topic? thank you davide
  3. Davide77

    affecting specific tag from external CSS

    thanks ChrisHunt, that's what I needed to know
  4. Davide77

    affecting specific tag from external CSS

    Hallo, I have a form with some <input type="text> and one submit button. I would like to use a background image for the text-input but I don't want to use the same image for the button. The problem is that they use the same tag <input..> and an external CSS will affect all of them. I have to...
  5. Davide77

    Conditional link

    bill, the solution I see, without considering server side script, is a script that says: if the browser is this than take this "html code" otherwise take this other "html code"... I don't know how to express this in javascript... have you seen it somewhere? thanks Davide
  6. Davide77

    Conditional link

    hallo, I have a problem with browser compatibility. I know how to make work things for Explorer or for Netscape, but they won't work togeter. The solution is to prepare two different pages and if the user has a Netscape will see the Netscape page and viceversa. The problem is the script that...
  7. Davide77

    Fixed background in netscape

    The tests are with Netscape 7.1 for windows
  8. Davide77

    Fixed background in netscape

    Hallo, it's probably an old problem, but how do you make working a fixed background in Netscape? I'm trying to customize a form by putting an image as backgraound of the textareas. Here is the code: <textarea style="width: 373px; height: 89px; border: 0px; background: URL(img/frm_big.gif)...
  9. Davide77

    cell with fixed or variable dimensions: is it possible to control it?

    General description: How to create a table where some cells have invariable dimensions (height and width) and other cells can change their dimensions depending on the content of the table. Actual problem: I have a 3x3 table. In the first collumn two of the three cells are merged (the two...
  10. Davide77

    deleting a folder with an associated file without deleting the file

    Hallo, I saved a lot of pages from the internet and i would like to get rid off the accompanying folder where all the images, stylesheet and so are stored. The problem is that if I delete the folder windows also delete the file. I know that if I rename the file or the folder than they are no...
  11. Davide77

    sending information from a frame to another one

    Hallo, I'm trying to achieve this: one page with a textarea and a frame. In the text area it will be possible to write dome html code and then after clicking a button the code will be displayed in the frame but not as code since as a normal page. You can see an example of this at...
  12. Davide77

    how to count records of query defined in vba

    Hallo, I have a query defined in vba code: Dim strsql as string strSql = "SELECT [Qry_Room].[Room] FROM [Qry_Room] WHERE [Qry_Room].[Day]=" & Format(CDate(giorno), "dd-mm-yyyy") & ";" how do i count the number of record of it? i tried with the dcount: RecordQuantity = DCount(strsql...
  13. Davide77

    error when opening a recordset

    thanks jeff: that was the problem
  14. Davide77

    error when opening a recordset

    hallo I am trying to open a recordset with a where condition but I get the run - time error 3075 "Syntax error in number in query expression '[Qry_Room].[Day]=10.11.2002'" The code I'm using is: strSql = "SELECT [Qry_Room].[Room] FROM [Qry_Room] WHERE [Qry_Room].[Day]=" & giorno Set rs =...
  15. Davide77

    combos as search criteria: problem with empty fields

    that is the solution: thanks a lot
  16. Davide77

    combos as search criteria: problem with empty fields

    thank for the suggestion but still it doesn't do the job. Actually it works fine in almost every case but there are cases where it shows me records that should not show. Example: Record: name ("Blabla"); type (null); country ("country") if in the form I put. name: <all> type: type1 country...
  17. Davide77

    combos as search criteria: problem with empty fields

    Hallo Sarah the properties are already set like you suggested. When I wrote "as soon as there are empty fields it doesn't work properly" I wanted to say that there are empty fields in the table/query I'm searching. For example I have a record with the person name, but I don't know the type and...
  18. Davide77

    combos as search criteria: problem with empty fields

    Hallo, here is the problem: I have three tables: tbl_person (name, id, countryID,typeID), tbl_country (countryname, id), tbl_type (typename, id). I made a parameter query that I would like to use to display the result of a search by person name, country name and typename. The criteria for the...
  19. Davide77

    combos as search criteria problem

    sorry the code I'm using is: SELECT tbl_Person.ID, tbl_Person.Nome FROM tbl_Person UNION SELECT "*", "<All>" FROM tbl_Person;
  20. Davide77

    combos as search criteria problem

    Steve, the code I'm using as combobox source is this: SELECT tbl_Person.ID, tbl_Person.Nome FROM tbl_Person UNION SELECT null, "<All>" FROM tbl_Person; as shown in the faq: faq702-4538. The example you gave me suggest to write null instead of "*", but this won't work at all...

Part and Inventory Search

Back
Top