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

    Using SPLIT()

    Ok, i have a dilemna. I have a Field for our articles called Category. Inside, I have things ie., Car, Boat, Plane. I allow my users to insert multiple categories, therefore, I was using Split() to read things like "car, boat". My problem is that I need to offer the same info in French. I...
  2. timcadieux

    Site search

    Hey folkz, wanted to know if anyone knows of a good, fast Site Search app that I could run on my ASP site? Preferably one that does paging.
  3. timcadieux

    Excel worksheet background

    A colleague has a number of worksheets who's background says PAGE, PAGE 2, Etc. in what looks like a watermark in the middle of the page, how can we get rid of it?
  4. timcadieux

    building hidden fields on the fly, need to build js Elements to match

    Hey folks, i'm building a table that has File fields, dependant on a number that the user inous, ie.. they type 5 and my script builds 5 file fields named Filename0, filename1, etc... I simply use the value of request.form("num") and loop Using the below code, i get the value from a hidden...
  5. timcadieux

    Response.redirect won't fire?

    I'm using th ebelow code to add to my DB then i want it to go back to my main page. It does add the info, but it just site on "Category Addded". I'm using the exact same code for my DELETE AND EDIT Functions and they work fine? Set rs = Server.CreateObject("ADODB.Recordset")...
  6. timcadieux

    First time using Enterprise

    I just made a new table for the first time. How can i create an AutoIncrement Field and how do I make a text field 255, mine is at 16 and will nto let me change it?
  7. timcadieux

    Login using onChange and an img src

    I'm using the below code to allow my user to browse and pick a new thumbnail. My problem is this is my EDIT page, thus i'm loading the current thumbnail BUT there appears to be no way to fill in the filename in the File type field. I could use a hidden field, but if they do change the...
  8. timcadieux

    using javascript to send info to 2 other text fields

    I'm using the below code to allow my user to browse and pick a new thumbnail. My problem is this is my EDIT page, thus i'm loading the current thumbnail BUT there appears to be no way to fill in the filename in the File type field. I could use a hidden field, but if they do change the...
  9. timcadieux

    Problems with an Array function

    I'm using the below Function to build an Array of information to which I later Refer. The Headline(x) array works perfectly fine, however, the Category array always gives me a Type Mismatch, even though, as you can see in the Function, I use response.write and it shows me all the categories no...
  10. timcadieux

    Manipulating windows

    I need to have a popup, in which i run a particular vbscript process. If the process variable = say True, then when i close that poup, i need the parent window to refresh, otherwise, if its false, just close without a refresh. Can someone point me in the right direction plz.
  11. timcadieux

    Allowing the client to Add info to a Dropdown

    Hey, im wondering how you folkz handle this. I have a dropdown of info, but if the client has new info that should go in that filed, do you give them a new form to fill in, then refresh thier original form, or is there a way to allow them to add something to that field directly and then add it...
  12. timcadieux

    Avoiding adding duplicate info the your DB

    Hi folkz, what's the smartest way of checking to see if a value exists in the DB, ignoring it if it exists or adding it if it doesn't?
  13. timcadieux

    Web stats & StatCounter.com

    Hi folkz, my boss wants Stats from our websites but our Host is absolutly useless in this regard. Anyone know of a good ASP project to track links and downloads that can write to an mdb as i don't have access to FSO? Also, i came across StatCounter.com, they offer a tonne of things for free...
  14. timcadieux

    Logic setting a Cookie

    Hi folkz, i'm just looking for some help in setting up a function to set a particular cookie. Basically, I have alot of Flash on my pages, but i also have matching non-Flash content. What i wanted to do is if the system finds NO COOKIE, then set the cookie to yes to display Flash by Default...
  15. timcadieux

    List Menu

    i've got the below code, which works. However, anytime i use the right arrow button to move Text from the left box to the RIGHT, i need the TEXT to be SELECTED. Can someone help me with this? <form> <select multiple size="10" name="Category1" style="width:200"> <option...
  16. timcadieux

    Need some advice

    Hey folkz, i have a couple of generic questions. My boss wants me to find out if there are any conferences i need to attend to remain current and aware of NEW trends. Can someone tell me what they do? Secondly, I just took over a gargantuan site from someone. They never bothered to map out...
  17. timcadieux

    Excel formatting question

    I made a spreadsheet and made a particular Row able to Wrap Text becuase i'm expecting alot of text in that cell. However, all the rows i have that do NOT have enough text to make it wrap have more Height to them than necessary. If i set the Row Height manually, then they no loger wrap, how...
  18. timcadieux

    Looking for a script

    I would simply like to have a textbox where i prompt a user for a img source and when they leave that text box, the img would appear in a given spot. Has anyone seen anything like this?
  19. timcadieux

    Building an array using rs.RecordCount

    Folkz, I get the recordCount from my db, and i need to populate some information, currently i'm doing this.. var photos=new Array() photos[0]="http://test/cls_images/lores/<%=Series_Dir%>/<%=pic(0)%>" photos[1]="http://test/cls_images/lores/<%=Series_Dir%>/<%=pic(1)%>"...
  20. timcadieux

    Avoiding fields that are empty

    I've noticed that certain fields in my DB are empty, i want to avoid referring to them if they actually contain no text. In this case, neither rs(article)>1 or ISNULL(rs(article)) Will work, other than changing the way the info is input into the db, how can i avoid this with existing...

Part and Inventory Search

Back
Top