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 Wanet Telecoms Ltd 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: booboo0912
  • Content: Threads
  • Order by date
  1. booboo0912

    Preload images retrieved from database?

    I don't really have my images in the database but just the image names (pic1.jpg). Depending on which id is passed to my page, the SQL statement selects all the image names for that id. I put an onload event in my body tag to call the following function, but the javascript seems to fire before...
  2. booboo0912

    Put data into 2 columns?

    Hello! I'm pulling data from a database and would like to make 2 columns instead of a scrolling list. I've done some searching on the internet and either I'm not searching the correct terms or else I'm the only one that doesn't know how to do this! :) Some of the scripts I've found put the...
  3. booboo0912

    Contents of include file not displaying

    Hello! I came across the thread - thread333-1225701 - which sounded like the issue my customer is having. I have an include <!-- #Include file="includes/div_tags.htm" --> in my .asp page, and when my customer views the web page on his computer (not through the internet but local IIS) he does...
  4. booboo0912

    Change font depending on which browser?

    Is it possible to change the font-family value in a css tag, depending on which browser is used to view the page? Netscape doesn't support the font I would like to use, and the default font looks pretty bad. It looks great in IE! Thanks in advance!
  5. booboo0912

    Variable doesn't hold it's value

    I'm trying to pull data from a recordset, but when I assign values from the recordset to variables, then go to print out the variable, I get nothing! It seems once I exit my while statement, the variables return a blank. Please see code snipet below: sSQL = "Select art_quality...
  6. booboo0912

    Another transparency issue....grey box around image.

    Hello! I've search through the Archives for related issues, but I haven't found anything related to what I'm experiencing. I have a logo in a <div> tag, placed on top of another image(s). The logo needs to be transparent b/c the image underneath will actually change as the page is refreshed...
  7. booboo0912

    value of radio button if not selected...

    If a user doesn't choose a value from a list of radio buttons, the value sent to the database is 'undefined'. I'm trying to check to see if the value of the radio button is null/blank/undefined, and if it is, to change the value being sent to the database to 'n/a' or something similar, anything...
  8. booboo0912

    Creating Forms in Outlook 2000

    Hello! I need to know if it's possible to create a form in Outlook 2000, and have the results sent to a SQL Server database. Has anyone been successful in doing this? Thanks in advance!
  9. booboo0912

    SP Not Returning Value

    I'm testing my SP to see if my values are being returned...but I'm getting blank/nothing/zilch/nada. So I decided to test if setting the param equal to a string, then returning it in my asp code would work...seems like it should, but it doesn't! Here's my SP (modified): Create Procedure...
  10. booboo0912

    ERROR: Arguments are of the wrong type, etc.

    I'm pulling my hair out with this one! I'm trying to learn from examples on how to pass parameters to a stored procedure. My first problem is not knowing much about VB & stored procedures! I have the following code... <% Dim strFName, strLName strFName = Request.Form(&quot;FirstName&quot;)...
  11. booboo0912

    onSubmit=&quot;window.close();&quot; question...

    I'm trying to troubleshoot a problem, which isn't always consistent, so I'm looking at different possiblities for the solution. Here's my set up: I have a showModalDialog window/form with an input box and a submit button. My form tag looks like this: <form name=&quot;myPage&quot...
  12. booboo0912

    VB vs JS

    Hello...can anyone tell me what the equivalent JavaScript code would be for the following: set rs = nothing Would it be: rs = &quot;&quot;; or: rs = null; Is there a difference in using &quot;&quot; and null? Thanks!
  13. booboo0912

    One user at a time??

    Can someone tell me why only one user is able to access a database at a time? I'm using NT permissions, and this used to not be a problem, but all of a sudden only one user can get into the database...others must wait until that person exits. Is this normal? We're using Access 2000. Thanks!
  14. booboo0912

    Format Phone Number with or without extension?

    Hello! I need to format a phone number using the following format, (###) ###-####, which I can do using an Input Mask, but there may or may not be an extension that follows that also needs to be formatted. Can anyone tell me how a newbie like myself would do this? Thanks in advance! booboo
  15. booboo0912

    MUSIC IN E-MAILS??????

    Can anyone tell me how to create an e-mail, that when the recipient opens the e-mail, music plays. Someone had responded to my previous post, about creating an HTML page, but I'm trying to find out if there's an easier way of doing this (for a non-html savvy person). ANY help would be...
  16. booboo0912

    What to purchase to make SharePoint work?

    Hello! We're interested in getting SharePoint for our intranet at work, but from looking at the Microsoft site, we're still unsure of all the bells and whistles that are needed t make SharePoint run on our intranet. Can anyone tell me the individual items that need to be purchased, for the...
  17. booboo0912

    Object Expected...Response.ExpiresAbsolue???

    Hello! I put the following at the top of my page (from what I was able to find in older treads, this was one recommendations to prevent caching problems), before the <html> tag: <% Response.Buffer = &quot;True&quot; Response.Expires = 0 Response.ExpiresAbsolute = Now() - 1...
  18. booboo0912

    Maintaining password value when doing a refresh...

    I'm having a problem and there's gotta be an easy fix b/c I know it's a common occurrance... I have a logon form (logon.asp) that has username and password textboxes. The action=&quot;admin.asp&quot;, and on this page the values of the username and password are compared to the values in a...
  19. booboo0912

    Logon...showModalDialog...check password...redirect....

    hello! i have a conglomerate of things going on, and i hope this is the right forum! here's the situation... a user clicks on a link to access the logon screen. the logon screen is a showModalDialog window, with two text boxes and a submit button (inside form tag...
  20. booboo0912

    Drop Down Menus/If...Else.../OnChange

    Hello! This is probably a simple question for some, but I'm a newbie...enuff said? :) I have two drop-down menus: Day1 and Day2 In each menu, I have the following values: Track1, Track2 Track3 The user can select Track1 for the first menu, and Track2 for the second menu, or vice versa, but...

Part and Inventory Search

Back
Top