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 bopritchard

  1. bopritchard

    string.format problem

    this is my label control <asp:label Runat=server text='<%# string.format("{0:(###) ###-####}", Container.DataItem("phonenumber"))%>' ID="lblPhoneNumber"></asp:label> the data for phonenumber is 7044561237 but it keeps getting rendered to the page as 7044561237 why is the string.format not...
  2. bopritchard

    trying to set a border to a table row

    i'm setting a row class to row which is supposed to set a border but i can't get it to save my life...what am i doing wrong? My Table <TABLE class="mnuTable" align=center cellpadding=0 cellspacing=0 id="Table1"> <TR> <TD><a id="JOMenu1_mnuContactInfo" class="mnuButton1"...
  3. bopritchard

    proper referencing of an href

    here is my code <TABLE class="gridMain" id="Table1"> <TR> <TD> <a id="JOMenu1_mnuContactInfo" class="mnuButton" href="blahblahblah">Contact Info</a> </TD> </TR> </TABLE> my css contains .gridmain .mnuButton {padding:5px,5px,5px,5px;border:#3369AA 1px...
  4. bopritchard

    Compile Error Expected : =

    in Form_1 i have a sub Public Sub OpenForm(ByVal pSQL As String, ByVal pFilter As String) Me.RecordSource = pSQL Me.Filter = pFilter Me.FilterOn = True End Sub in Form_2 on a onclick event i have Form_1.OpenForm(filtername,whereclause) which generates a compile error expected := why?
  5. bopritchard

    div width differences between FF and IE

    http://raleighchristian.com/cms/index.php?option=com_content&task=view&id=14&Itemid=58 here is my example page.. if you look at it in FF everything is lined up fine.. but in IE you'll notice that there is a gap in between the top header picture NEWS and the picture to the right of it below is...
  6. bopritchard

    passing a recordsource and filter to a form

    i'm doing the following DoCmd.OpenForm stDocName, acNormal, filterName, whereclause where stDocName is the name of the form filterName is the name of a valid query whereclause is my filter criteria but on the formload of the form i'm opening the recordsouce and the filter are null and of...
  7. bopritchard

    combo box won't allow me to select anything

    nevermind...had the form set to not allow edits
  8. bopritchard

    combo box won't allow me to select anything

    i've got a few combo boxes i'm gonna use to determine filter criteria on a report i'll open...i've set the rowsource of them and i see the data fine...trouble is...i can't select anything....i'll click on the dropdown and will see all the options..but when i click on one, it will not select
  9. bopritchard

    applyfilter creates a new record when nothing found

    i've got an input box that takes an id and then does an apply filter IssueID = InputBox("Enter the Issue ID", "Search for Issue") DoCmd.ApplyFilter , WhereCondition:="id=" & IssueID problem is...when there isn't a record that matches the filter, my form is inserting one into the table... i...
  10. bopritchard

    how do i get the user login name

    how do i get the user login name from a xp/2000 box for use in my access app
  11. bopritchard

    how do i turn off the Confirm Delete message

    how do i turn off the Confirm Delete message when deleting a record?
  12. bopritchard

    update from a subform causes other subform to requery

    i've got a form with two subforms on it...after i exit a textbox in subform1 i want subform2 to update...how do i do that...
  13. bopritchard

    setting style.height to div through js works in IE but not FF

    so how would write this using that method document.getElementById('calendarcontent').style.height=200px;
  14. bopritchard

    setting style.height to div through js works in IE but not FF

    here's my page http://raleighchristian.com/2005/rca/index.html in the onload i'm running a setheight() javascript function that looks at the height of a couple of other divs and then sets the height of another div... it works fine in IE but does nothing in firefox...anyone know why? thanks
  15. bopritchard

    backgrounds need to extend to bottom of page

    http://www.raleighchristian.com/2005/rca/index.html if you look at the bottom you'll see that nothing is aligning together...i need for those two gold sections to go down to the same level as whatever the left side nav grows to be...i know how to explicitly set the height in those gold divs...

Part and Inventory Search

Back
Top