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

    body border gap and height woes in Firefox

    thank you, problems solved
  2. Extinct

    body border gap and height woes in Firefox

    ok this is the problem : I have a wrap div that acts as a container to a header and a 2 columns. The purpose is to have the header against the top of the viewport and to make the wrap div at least the height of the viewport for short content en at least the height of the content for long...
  3. Extinct

    list bullets went byebye

    Indeed it is a margin/padding thing. I found it myself in the mean time. I actually solved it by setting list-style-position:inside; on the ul.
  4. Extinct

    list bullets went byebye

    Hi, Now here's a strange one. I have a 2 column layout with floated divs. in the left column I have my navigation based on an ul with list-type:none; like so. #leftcol ul { list-style: none; margin:10px 0 10px 10px; } So I have no bullets, which is what I want, so all's well. Now in...
  5. Extinct

    enter event and subform referencing

    tankk you, I'll try that
  6. Extinct

    enter event and subform referencing

    Ok I just found a solution myself. I have set the visible proporty of the subform to false. In the enter event I check if the subform is visible and set it to true. Any other solution are always welcome.
  7. Extinct

    enter event and subform referencing

    I have a form with 2 subforms in datasheet view The recordsource of the 2nd subform is changed in the enter event of the first field of the first subform like so Forms!frmclocks!Sources.Form.RecordSource = "SELECT tblsources.SWITCH, tblsources.LCOS, tblsources.LTG, tblsources.DIU...
  8. Extinct

    background fixed in DIV IE vs Firefox

    First of all thank you for the feedback. In the mean time I did solve the problem. The reason that it wasn't accepting the IE hack (* html #rightcol {}) was that I had background: inline in the html page instead of background-image: And the reason why I use inline styles for this is because...
  9. Extinct

    background fixed in DIV IE vs Firefox

    this is the hack I used * html #rightcol { background-attachment:fixed; }
  10. Extinct

    background fixed in DIV IE vs Firefox

    Hi, I'm trying to make a fixed background in a DIV. This is what I have In my stylesheet I have #rightcol { background-color:#FFF; float: left; width: 530px; height: 440px; margin-left: 10px; margin-bottom: 1px; overflow: auto; scrollbar-3dlight-color:#1B1B1F; scrollbar-arrow-color:#1B1B1F...
  11. Extinct

    OraOLEDB.Oracle Provider not found

    How does the provider have to be installed? Where can the installation files be found?
  12. Extinct

    OraOLEDB.Oracle Provider not found

    Hi, I am trying to connect to an oracle database from an ASP page using an ADO connection. It's a trusted connection so I don't have a Userid and password. When I try to use OraOLEDB.Oracle (which as far as I found is the only way to connect with OS authentication) as provider I get the eror...
  13. Extinct

    SQL group query : do not ignore Null

    Hi, I have 2 linked tables tblProjects and tblActions. They are linked on ProjectId. The records in tblActions contain a date. I want to get a list of all Projects with the lowest date and highest date. I have the following SQL but the problem with aggregate functions is that NULL values are...
  14. Extinct

    Command Button Problem

    Hi, I had the exact same problem and solved it in a simple way. Copy the form (subform in this case) delete the original and rename the copy. Hope this helps
  15. Extinct

    Combobox visible columns when selected

    Hi, I have a combobox with 3 colums 2 of which visible (width <> 0). The problem is that the 2nd visible column is only visible when the box is dropped down. When the value is selected the second visible column is not visible. This is a problem because the box selects names with name and...
  16. Extinct

    Flow chart coding

    Ok, I did some thinking and I can probably get something working with the shape object. But I want to add some properties and maybe add some stuff. e.g. - Create multiple instances which can be created dynamically - Add some properties like startpoint and endpoint where I would keep the name...
  17. Extinct

    Flow chart coding

    Hi, I'll try to explain what I want to achieve so bear with me. The purpose is to make a program which outputs a graphical representation of a network based on some data. What we should get is a starting point, an end point and intermediate blocks representing network elements connected by...
  18. Extinct

    Totals and grouping

    I have made some kind of billing database. I have a table clients. a table orders and a table orderdetails. On order level there are some values wheich are general for the order (e.g. discount) To make the report I have a query which groups all these tables. the output is something like this...
  19. Extinct

    Strange form problem

    Still the same problem and I have tried everything recalc, requery, refresh, repaint of the form requery of the textboxes. refresh in the records menu. Nothing works. Can somebody help me???
  20. Extinct

    Strange form problem

    Hi, This should be quite simple. I have 1 master table and several linked tables without enforced referential integrity. I made a form that shows a record from the main table based on a selection in a combobox (query from main table) and several subforms for the linked tabled. The main form...

Part and Inventory Search

Back
Top