No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
[QUOTE=sanscls;575092]To make clear: My problem is on the Processing page. I need to be able to update MULTIPLE images (filedatd field in db) with names (picturename field in db) They will have the SAME listnumber, but different ID numbers.[/QUOTE] I believe if you update the db using the listnumber instead …
It seems fine in Firefox and IE on my end. If my window is too small then the scroll bars take away space and the resume page "shrinks" because of the added width of the scroll bars. Is this what you're seeing?
It has to do with widths. You will have to set your table width to the width of the div. Or set it to auto instead of a percentage and then use padding or margins to increase or decrease distances from the edges.
what happens on the page? Can you link to it?
[code] <div style="width:300px; height: 300px; background-color:orange; float:left;"> <div style="width:200px; height:200px; position:relative; left:30px; top:30px; background-color:yellow;"> </div> </div> <div style="width:300px; height: 300px; background-color:orange; float:left;"> <div style="width:200px; height:200px; position:relative; left:30px; top:30px; background-color:yellow;"> </div> </div> <div style="width:300px; height: 300px; background-color:orange; float:left;"> <div style="width:200px; height:200px; position:relative; left:30px; top:30px; background-color:yellow;"> </div> </div> <div style="width:300px; height: 300px; …
I have what I thought was a basic form with multiple text boxes and one select box. The form submits and info is updated in a database. However, it fails because of the select box. The select box is automatically selected to the user's organization if they have one. The …
[code]Set rstDeps = CurrentDb.OpenRecordset("SELECT Members.OrgID, Members.ID, Members.Member, Members.PrimaryRep, Members.MembershipType " _ & "FROM Members " _ & "WHERE (Members.Member=True AND Members.OrgID=" & !OrgID & " AND Members.MembershipType='" & !MembershipType & "');")[/code] This is my query in VBA in MSAccess. I just want the number of people that fall into those …
The End.
tashakota