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: tmcneil
  • Content: Threads
  • Order by date
  1. tmcneil

    passing variables to forms

    I seem to have forgotten how to pass variables to multiple pages. I have an asp page that I choose values from select boxes. Those values get passed to another page by using the request.form call to each element. I want to pass these same values onto a 3rd page and am having trouble doing...
  2. tmcneil

    AJAX and multiple select control

    Hi All, I have an asp page with three options buttons representing a different geography. Next to the 1st two radio buttons, I have a multiple select box where you can select no more than ten values. If you select more than ten, then the page will not submit. The last option button has a...
  3. tmcneil

    <style> tag issues

    I found some code that creates a scrollable table that is formatted using a <style> tag. The problem is, the <style> tag formats other tags on the page that I do not want it to. I only want it to format the scrollable table. Is there a way around it to get it to do what I want? <style>...
  4. tmcneil

    a href problem

    I have this piece of code that's problematic and I am not sure what is wrong with it. <% if (theOnlink.length() != 0) { %> <a href="<%= theOnlink %>" + ' target="_blank"' onMouseOut="MM_swapImgRestore()"...
  5. tmcneil

    IIS and ASP on Windows 2000

    I am referencing this thread, thread96-903450, and am having the same problem. I am getting a HTTP 500 error which I think is a server application error. The application logs show two errors occuring, W3SVC and DCOM errors one after another. Any ideas how to fix this? Thanks,
  6. tmcneil

    Reserve Characters and ZIP Code values

    I have a form that retrieves a zip code using Request.Form method. This form has a button that I would like to pass the value of the zip code to a javascript function that will contain a window.open method. The problem is that say if I enter a zip code that starts with a "0", like 04910. Then...
  7. tmcneil

    Formatting XML Request

    I've got some vbscript code that I am trying to format into the proper XML format. Dim sAXL sAXL = "" sAXL = sAXL & "<?xml version='1.0' ?><ARCXML version='1.1'>" sAXL = sAXL & "<REQUEST>" sAXL = sAXL & " <GET_FEATURES outputmode='newxml' skipfeatures='true' geometry='false'>" sAXL = sAXL & "...
  8. tmcneil

    Transparent Background

    I have a gif that I took from the web with a white background. I would like to remove it to use it on some web pages. I converted it to an rgb image by going to Image > Mode > RGB Color. I then went to File > Save for Web, selected each and every GIF option under Settings on the right-hand...
  9. tmcneil

    Create table script

    I have three scripts, two of which are joined to create a summary table. The 1st script: create table hmda_hud_fha_limit_04_1 as (select tract_id, count(objectid) total from HMDA_HUD_FHA_LIMIT_04 where ln_type = '1' and proptype = '1' and purpose = '1' and own_occ = '1' and...
  10. tmcneil

    TO_DATE

    All, I'm sending in a date/time value as a VARCHAR2 to a stored procedure. InDeparture: 11/29/2007 08:11:00 AM I need to store this value into a Date field in an Oracle table. I use this line of code to convert the string date/time using TO_DATE. departure := TO_DATE(InDeparture...
  11. tmcneil

    ORA-24350: OCI call not allowed

    I'm writing some C++ code to call an oracle stored procedure for storing data into a table. When I make this call: hr = pConnect->Commit(); I get this error. ORA-24350: OCI call not allowed So, then how can I commit my additions to the oracle table? Thanks, Todd
  12. tmcneil

    Title Attribute

    Im using a title attribute as a tool tip for a select element inside a td. The tool tip does not show up in IE. If I place the title attribute to the td, I get a tool tip, but not when hovering over the select elements. Any ideas? Is there a different attribute tag that I should be using...
  13. tmcneil

    Combo box issue

    Well, I've got some code here that I can see what's happening but don't know how to fix it or if it is a limitation with Firefox vs. IE. I have a drop down on an asp page that has an editable slot. You can type in the value that you want and it stores it into the last slot of of drop-down...
  14. tmcneil

    ADO error

    Hi All, I've got this line in a call to an oracle stored procedure that I just can't seem to fix. set param = comm.CreateParameter("TakeID", adInteger, adParamInput, , TakeID) It used to be ok until I changed the values being sent to it. it used to be no higher than 59999, now it's...
  15. tmcneil

    Combine functionalities of two buttons

    I have two buttons on an asp page that are the following: <button ID="PREVIEW" name="PREVIEW" value="PREVIEW" type="button" title="Preview Webpage" onClick="Submit('Preview Webpage');" class="dlgbutton" style="width: 140px;"> <span>Preview...
  16. tmcneil

    Help with code fragment

    I have a piece of code where I loop through a recordset and would like to set the value of a variable, like "selimagefile1". However, my variables increase by one, selimagefile1, selimagefile2 and so forth. So, how do I set the variables if my code looks like this and will not compile...
  17. tmcneil

    Setting a string value to a variable

    I'm trying to write this value into a stored procedure and I am not able to build into SQL Plus. So how would I fix it so that it can be stored in a VARCHAR? InAspArgList := 'AnnEventID=$ANN_EVENT_ID&TimeStamp=$TIME_STAMP'; I'm getting a prompt in the SQL Plus window Enter value for...
  18. tmcneil

    Getting Height and Width from parent window

    I have this javascript function which is part of the subModal DHTML code you can get off the web, http://sublog.subimage.com/articles/2006/01/01/subModal The js function grabs the height and width of the parent window in order to place a popup window over the web page. The popup window mimics...
  19. tmcneil

    Firefox and spaces

    I have a block of javascript code that takes printable characters, converts them to a string and adds them together to create a word. I have come across a problem in FF that when the space bar is pressed, the code does not add a space to the combo_word value. IE has no problem handling this...
  20. tmcneil

    Create comma-delimited list from two or more combo boxes

    All, I've been working on some code to try and handle creating a comma delimited list of values from combo boxes. If there are two combox boxes, the user can either choose one of two values or enter in their own value. I would like to store this in a string. When the user selects or enters...

Part and Inventory Search

Back
Top