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!

Search results for query: *

  • Users: bopritchard
  • Content: Threads
  • Order by date
  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

    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
  8. 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...
  9. 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
  10. bopritchard

    how do i turn off the Confirm Delete message

    how do i turn off the Confirm Delete message when deleting a record?
  11. 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...
  12. 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
  13. 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...
  14. bopritchard

    font colors and sizes are different from IE to Firefox

    My Page firefox shows everything correctly... but IE is a completely different story left nav menu...the font size on the link items are too large yellow section at bottom...the bulleted list is the wrong font color THE LATEST section...where it says Read More...should be red the bulleted...
  15. bopritchard

    div css troubles

    i've just started converting my old table layouts to css divs...i'm having a couple of issues that i can't seem to figure out... http://www.raleighchristian.com/2005/rca/index.html 1)bottom right there is a <div> red block that says news...the style that's being used for it has the same...
  16. bopritchard

    table problem

    please look at this page...table http://www.raleighchristian.com/2005/index.html on the far left (Navigation Section)will be a navigation bar that has the potential of growing IN HEIGHT beyond the height of it's row which will cause the table to grow...currently when that happens the row that...
  17. bopritchard

    table growth problem

    please look at this page...table http://www.raleighchristian.com/2005/index.html on the far left (Navigation Section)will be a navigation bar that has the potential of growing IN HEIGHT beyond the height of it's row which will cause the table to grow...currently when that happens the row that...
  18. bopritchard

    How to change all text box visible properties on a page

    i want to be able to toggle the visibility property of all of the text boxes on my web page and without literally naming each and every control...i want to walkthrough a collection and set them how? thanks
  19. bopritchard

    Page Header and Footer on subreport where text field runs to 2nd page

    I need a page header and footer for a subreport...I'm aware of the various work arounds for creating "fake" headers and footers for subreports...these will not work for me because the data on my subreport are of a undetermined length...the only field on my report is a text box that is set to...
  20. bopritchard

    insert a carriage return into textbox from sql data

    i return the following data from my sqlserver "This is my \r carriage return" i set textbox.text = to this data... i'm expecting my text box to show This is my carriage return but of course it shows This is my \r carriage return how do i do this

Part and Inventory Search

Back
Top