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 strongm 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: moley
  • Order by date
  1. moley

    DTS add id col to text file

    hi, How can i add a unique id to a select qry for text output? The data sources are from access, oracle, and lotus, so I can't add a row parameter in the sql (3 files). thanks
  2. moley

    Block Hotkeys

    Hi, Does anyone know how to block hotkeys in IE6/5 without using open.window. I have a partiular issue with the backspace. Cheers
  3. moley

    document universe in *.doc format

    Hi, I'm trying to caputure the universe (BO 5.1) in electronic format by printing to file to give me a *.prn file then convert it to a useable format (pdf or doc) but the format of prn is unrecognisable when I use the adobe online converter. Has anyone any other ideas on how to get this...
  4. moley

    return the ID after update

    Thanks Tony, That was going to be my alternative method. The error actually occurs at objRS.absolutePosition = bookmark, any ideas why?
  5. moley

    return the ID after update

    I'm having problems with the following code. I'm inserting records into a table (access2000) and need to get the ID returned. The ID is an auto number. I keep getting the error on objRS.Requery (ADODB.Recordset error '800a0bb9' Arguments are of the wrong type, are out of acceptable range, or...
  6. moley

    remove string duplicates

    Thanks ChessBot but i cant get the code to work. The contains function always returns false. Any ideas??
  7. moley

    remove string duplicates

    i'm trying to remove the duplcate entries from the example string below: var myString ="log177, log177, log277, log178" what's the simplest way of doing this?? Thanks
  8. moley

    online graphs and charts

    I'm looking at developing some reports to include dynamic charts and graphs from a sql server backend. Flash would probably me my choce but i'm keen to hear any other ideas. ????
  9. moley

    printing reports from preview

    fixed it. please do not respond
  10. moley

    printing reports from preview

    Hi, I have a mde database (97 and 2000 versions) mainly for reporting My problem is the only way the user can print the previewed reports is using ctrl+p, how can i get a print icon or functionality in the preview mode?? Cheers
  11. moley

    update textarea from listboxes

    Hi, I'm trying to updated a textarea with listbx value evrytime a listbox is changed. I can do this only if i hardcode the name of the listbox,(document.form.cboBox), but how do I do this with out hardcoding as I'm creating listboxes on the fly. I'm reletively new to this so its probably...
  12. moley

    collecting values from listboxes?

    How do I get the values from a select box with an onChange on the first, adding options to the second?? I have the code to do this, but i'm getting an error 'object expected' on the first line below. [code] <select name="listOne" onClick="changeOptions(this, document.form1.listTwo);"> <option...
  13. moley

    dynamic listbox problems

    Tarwn, Thanks for all your time, i'm just abount there now. One last thing, when you call the changeOptions(elemOne, elemTwo), what is the syntax for the onChange?? is it onChange="changeOptions(this)" ? Thanks again, I'll stop harassing you now! Cheers Moley
  14. moley

    dynamic listbox problems

    T I've updated the arrays with quotes but I get a syntax error on the array. new Array(,new Array(,new Array("1","Outbound"),new Array("2","Inbound"),new Array("3","Written"),new Array("4","Outbound Email"),new Array("5","Inbound Email")),new Array(,new Array("1","Outbound"))); Any ideas...
  15. moley

    dynamic listbox problems

    Thanks Tarwn, Is this the desired array, cause i've still got a few bugs? var dataArray = new Array(,new Array(,new Array(1,Outbound),new Array(2,Inbound),new Array(3,Written),new Array(4,Outbound Email),new Array(5,Inbound Email)),new Array(,new Array(1,Outbound)));
  16. moley

    list box problems

    Thanks for the input. I managed to get something similar to your code which works fine now. But i am stuck on how to get the recordset into this array. I wanted to hard code the values to get the array working first. WorkTypeOption ={WorkTypeList: [{WorkType: "1", ssCategory...
  17. moley

    dynamic listbox problems

    Tarwn, Any chance you could show me how you would add a value to the second listbox from your facts. i'm still having problems. shifts={dayOfWeek: [{day: "monday",theShifts: ["1","2","3"]},{day:"tuesday",theShifts: ["4","5","6"]}]}; Thanks again Moley
  18. moley

    list box problems

    Hi, I'm having problems getting a second list box to populate, The value is undefined in the second list. I think its how i'm trying to add the vaule option. I'm just starting JS so any help would be great. Thanks <script language="JavaScript"> <!-- var shifts; function init(){...
  19. moley

    dynamic listbox problems

    onLoad="init();" mmmmm, i guess this would help!!! Thanks, problem solved!
  20. moley

    sending an e-mail!

    ' create mail objects Dim objMail Set objMail = Server.CreateObject("CDONTS.NewMail") objMail.From = "me@web.co.uk" objMail.Subject = "Message" objMail.BodyFormat = 0 objMail.MailFormat = 0 objMail.To = "you@web.co.uk" objMail.Body = strHTML objMail.Send set objMail = nothing...

Part and Inventory Search

Back
Top