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

    XSLT not closing my div tags properly

    Hi there, I've got a strange problem where when I perform a transformation on my XML to an XHTML document using an XSL file certain tags are closed incorrectly. for example I've got this line in my XSL<xsl:template match="/"> <xsl:text disable-output-escaping="yes"> <div id="topBar">...
  2. abienz

    using functions and element attributes inside an if statement

    Hi there, I've a problem with some XSL I'm writing, I'm wondering if there's an escape character in XSL or something that can solve this problem, here's what I've got for my XSL... <xsl:when test="name(../*[position()=$pos * 2])='xf:select1'"> <xsl:apply-templates...
  3. abienz

    Refresh a parent page in IE

    Hi guys, hopefully this is simple but I've had no luck so far. What I want to do is to refresh or reload the parent page from a child page, Eg. I've got a popup window that does something, when it finishes I want the parent window to refresh, here's my code so far...
  4. abienz

    Saving a jpg to a gif

    Hi guys, sorry if this is a screamingly simple question, but I'm finding it difficult to uncover any help on GIMP. I have a jpg image that I want to save as or export to a gif file format. How can this be done? Also where is a good place to look for Gimp documentation and discussion? TIA Alex.
  5. abienz

    How do I find and edit startup programs

    Hi there, I have an error that arrises everytime I logon to Windows NT 4 sp 6, it goes a little like this... Unable to find folder &quot;c:/program &quot; the program was unable to execute. Or something to that effect, I assume the program that it's trying to execute should be found in the...
  6. abienz

    How to return an Output Parameter

    Hi guys, I've got a relatively simple question here to do with SQL and ASP, hope you can help. Here's my sp... CREATE PROCEDURE [sp_insert_siteListings] (@siteUsername [varchar](50), @sitePassword [varchar](50)) AS BEGIN DECLARE @UserVal [int] EXEC sp_validate_Username...
  7. abienz

    Problems sending values from child windows to parent windows

    Hi there, I'm having trouble creating a new option in a parent window from my child window. Here's my code... Parent window <html> <head> <SCRIPT Language=&quot;Javascript&quot;> <!-- function myopen(){ window.open'popup.htm','popup','width=250,height=250,status=Yes'); } //--> </SCRIPT>...
  8. abienz

    What's the quickest and most efficent method for recalling data

    Hi there, I wass just wondering which way is the fastest and/or most efficent way of recalling data from a DB. My setup at work is a Sql Server 7 DB and I use ASP to communicate with it, I also use Ultradev. I don't like having lots of unnecesary code and I find that Ultradev does this...
  9. abienz

    Selecting Chars and Trimming

    We have a table of names in the format 'John Smith' etc We need to be able to trim this to the first 6 characters, not including spaces and convert to lowercase if possible. I've got the 1st 6 characters OK but wondered if there's a way to get rid of the spaces in the middle? e.g. select left...
  10. abienz

    Complicated search form database

    Hi there, I've got page that allows a user to enter in a year to search a field in a database, this all sounds simple enough but this is where it gets tricky. The field in the databse has results like these... 1822 1825-1930 1876 the user NEEDS to be able to search this field by typing into...
  11. abienz

    formbox validation problem

    Hi there I wonder if I can get any help with a simple function that I'm writing to check users input to a textbox. Here's the story... I've a textbox on a page called 1001 (name=&quot;1001&quot;) it has an onBlur event tied to it that calls a function... onBlur=checkseats('1001'); the...
  12. abienz

    Problem in Code, missing ';'

    Can anyone tell me what's wrong with this part of code from some javascript. function DoPrompt(action,myTarget) { var revisedMessage; var currentMessage = eval('document.form1.'+myTarget+'.value'); if (action == &quot;url&quot;) { var thisURL = prompt(&quot;Enter the complete URL for the...
  13. abienz

    Adding Timestamp and Date to a DTS textfile

    Hi there, I need to set up a way of creating a csv file in SQL Server 7 and at the start of this file I would like a timestamp of when the file was last created and then at the end of the file I would like a count of the total amount of records included in the file. I can manage to create a...
  14. abienz

    Error with Prompt box displaying in status bar

    Hi there, I have a really curious error that I can't quite figure out, the basics are I have web page with some ASP scripting to display database information in textboxes, above one of these boxes I have buttons that allow the user to insert HTML code to make text <B>Bold</b> <I>Italic</I> and...
  15. abienz

    Erroor with execute of insert sp

    Hi there, I hope someone can help me with this strange error i'm getting when simply executing a stored procedure to insert data to a table. here's my code for the ASP page... set Cmd = Server.CreateObject(&quot;ADODB.Command&quot;) Cmd.ActiveConnection = MyConnection Cmd.CommandText =...
  16. abienz

    BCC not being recognised with CDONTS

    Hi there, I'm trying to send an email generated in ASP using CDONTS, I've tested the mail and it all works fine, except address put into the BCC object don't get the mail! Here's my code. Dim Mail Dim strFrom Dim strTo Dim strSubject Dim strBody...
  17. abienz

    BCC not being recognised with CDONTS

    Hi there, I'm trying to send an email generated in ASP using CDONTS, I've tested the mail and it all works fine, except address put into the BCC object don't get the mail! Here's my code. Dim Mail Dim strFrom Dim strTo Dim strSubject Dim strBody...
  18. abienz

    Errors when going live! concerning dates

    Hi there, I hope there's someone out there that can help me with this problem because it seems to be reccuring and it's driving me nuts! When I try to run an asp page which displays data from my SQL Server 7 DB I get this error... Microsoft OLE DB Provider for ODBC Drivers error '80040e07'...
  19. abienz

    Creating a history sp

    Hi there, I've got a problem writing a view in SQL Server 7, what I would like to do is create a view (or infact write a sp)that takes values from one table and generates percentage results from those values. for example... My table = Question1 answertxt1 Question2 answertxt2...
  20. abienz

    Creating a strange stored procedure involving dates

    Hi there, I need to create a stored procedure that inserts into a table with only about 5 different fields. 2 Fields I can hardcode, as these will not change, but the other three will change each time the SP is run, they are Value, Date, and Time. Value can be determined from a select...

Part and Inventory Search

Back
Top