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

    Help with constructing SQL Statement

    This is sorta a 2 part question although I am not sure if I should put them as one question...oh well ;) FIRST I am after a bit of help constructing a SQL query to return the correct results which are to populate a dropdown list from a StorProc. Its part of site for adding scores for squash...
  2. FateFirst

    ASP/VB 'Power of' Error

    Im not great at maths anyways and I'm just looking to do a quick calculation on an ASP page. I'm guessing its producing an error because im not using a whole number as when I test with one it works fine. Error: Invalid procedure call or argument Any help would be appreciated. Here is what I...
  3. FateFirst

    Quick 'n' Simple Javascript Select Question

    I have a little form which is used for searching on on my ASP page. My question is regarding the <select>. It uses javascript to chuck the data into it. Quick Example: var country_select = document.searchForm.COUNTRIES_VALUE; country_select.options[0] = new Option("All")...
  4. FateFirst

    Simple Server Status Script

    Heya guys/gals. Does anyone 'have/know where to find/got an idea' on how best to check if a server is up and running with a *basic* (sorry to use that word) ASP script. Maybe not the actual script but some ideas that I can go away with and code myself...my minds just a little blank. I dont...
  5. FateFirst

    Specifying the Filename for Server.CreateObject(&quot;ADODB.Stream&quot;)

    Hi. I have a little script that streams files to users if they click on a link using the Server.CreateObject("ADODB.Stream"). Is it possible via this (or any other) to stream a file directly to the user and be able to specify the name of the file. Example: I have a folder off the root of a...
  6. FateFirst

    Reading XML with detailed information

    Hi. I dont expect a solution as such but maybe just to be pointed to an area which contains enough information for me to get going. Most of the information I have read tends to be about writing XML and/or basic reading of XML files. Here is a sample of the XML data: <result> <header>...
  7. FateFirst

    Image Control - View Only

    Heya guys/gals! I simply want to display an image to users but let them have a little control over it. Control being: they can Zoom In/Out and rotate the image and drag it about as well. I have done a little research and can only find scripts that do the above but on an image manipulation...
  8. FateFirst

    Launch File in browser (if supported) and hide path to file

    Hey community! Just a quick question... I have done a quick script for a client for downloading files without passing path information through to the user etc using ADODB.Stream. Thats working fine... The client now also wants the user to be able to just open the file up in the browser (If...
  9. FateFirst

    Using DatePart(&quot;&quot;,) in a SQL statement for Access

    Hi. Quickly just chucking together a SQL statement to pull out some data for a friend. He has an access database and the field in particular is a 'date/time' field. The format of the data looks like this: '28/03/2006 22:10:38'. I quickly chucked onto my ASP page a SQL statement using DATEPART...
  10. FateFirst

    Is there a SendKeys equiv. for Mouse control?

    hi. Is there any info out there for sending mouse controls that is similar to SendKeys? I basically want to send: Shift+RightMouseBttn to the active window. Havent had much luck with searching forums. Thanks! - FateFirst
  11. FateFirst

    Remote: Using SendKeys

    I have got the basics of a little remote application together. I have tried searching the net for a bit but couldnt locate an answer (other then using a macro program). Is there a way to use SendKeys to basically mimic holding a holding a key down until a stop is issued etc I hope that makes...
  12. FateFirst

    Information regarding Remoting

    Hi. I am after as much information (tutorials, discussions etc) with regards to writing a remote application in VB6. I want to code an application that sends keystrokes etc to a remote location which would run something to receive these commands. Like a server/client app. I know this sounds...
  13. FateFirst

    Ordering of form elements

    Hi. A friend wanted a script that would email him the details of a form he creates. As he creates many different booking forms he wanted a script that he could just point his forms at and it would do the rest....so he didnt have to keep bothering me. So i just wrote quick script that did so...
  14. FateFirst

    Selecting data from drop down list

    Hi. I have a list of data that is something along the following: <select name="samplelist"> <option value="1">Item 1</option> <option value="3">Item 2</option> <option value="6">Item 3</option> <option value="18">Item 4</option> <option value="36">Item 5</option> <option value="235">Item...
  15. FateFirst

    Setting Value of Text Field

    Hi, really simple (im guessing :P ) Just want to set the value of a hidden text field to be what I set it to be on the 'onclick' of a button and then submit the form 1 form 1 hidden field 4 buttons. Each button will pass through a different value to the hidden field and then submit the form...
  16. FateFirst

    Searching db content and show results based on relevancy

    Hi. I currently have a basic CMS that I wrote for a friend. I am looking to introduce a 'Site Search' feature. Just searching through [field_x] & [field_y] for [table] and returning results. My trouble is...how would you work out the relevancy. I was thinking about just having it so the more...
  17. FateFirst

    Data Type default value = Now()

    Is it possible to set the Default value of a field to be the current date/time? Similar to something like in access where the default value could be: Now(). Thanks :) - FateFirst
  18. FateFirst

    Looking for a script to create a *dynamic* drop down menu

    hey hey peeps :D I have searched the net for a while now and cant seem to find a solution. I know this is the wrong forum in respect to what it uses to achieve the outcome but im hoping someone else here has wanted to do this before and had a solution. I want to create a menu dynamically from...
  19. FateFirst

    Coding issue with retrieving/processing form data

    hi. Im just trying to quickly fix a process script that a friend has and im experiencing some issues. The .asp page has a form posted to it and has to process the data received. Here is a list of the form elements with their values: invoice_data = Project ID '|' Task ID no_invoice = '['...
  20. FateFirst

    Using Regular Expressions

    Hi. I am doing some stuff in asp/vbscript and I am currently having a few issues. I have a variable which contains a load of data (sample data below). What I am looking to do is use reg. exp. to find particular items and if found then extract this particular information and loop through and...

Part and Inventory Search

Back
Top