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

    Stuck reading the selected item in a webform droplist

    Andy, You were almost there try Dim objDoc as HTMLDocument Set objDoc = WebBrowser1.Document 'N$ = objDoc.getElementById("att").getAttribute("value") N$ = objDoc.All("att").Value Learn from others' mistakes. You could not live long enough to make them all yourself -- Hyman George Rickover...
  2. Scoty

    Including an outside resourse in your web app

    Thanks for the response, I have actually already found a solution. At http://developers.sun.com/mobility/midp/ttips/scraping/index.html With just a little modification I was able to get what I needed. Thanks anyway Scoty ::) Learn from others' mistakes. You could not live long enough to...
  3. Scoty

    Including an outside resourse in your web app

    I know this is going to be easy. But it is driving me nuts. Can someone please tell me how to use this code correctly. I need to include an "outside resource" in my web app. Outside my web app, and container. This is incorrect, I know, I am just using it as an example. I want to do...
  4. Scoty

    vdrAPI HELP

    Shawn, Unfortunately, we seem to be the only 2 people on earth that have ever heard of the VDRApi. I actually contacted Mobius and got into their FTP and downloaded all the information they had on the VDR api. Which is not much. If you look at the C header for the VDR api you will get a lot...
  5. Scoty

    VB Application sending commands to AS400 client

    Mot error trap for Err().Number -2147352567 if there is an error in the OIA then this error will throw. autECLPS.SendKeys "[reset]" will remove the error. For more information check my post at http://www.tek-tips.com/viewthread.cfm?qid=540241 this has my fully developed HACL mod HTH Scoty...
  6. Scoty

    vdrAPI HELP

    Bump... I hope someone sees this! Learn from others' mistakes. You could not live long enough to make them all yourself -- Hyman George Rickover (1900-86)
  7. Scoty

    vdrAPI HELP

    Has anyone had any experince with the veiwDirect vdrAPI? I have search and search and can find nothing. I am still trying to get an opensession but I keep throwing and error. Any assistance would be greatly appreciated thanks Scoty Learn from others' mistakes. You could not live long enough...
  8. Scoty

    Joining 2 DB on the same server

    Thank you very much Scoty Learn from others' mistakes. You could not live long enough to make them all yourself -- Hyman George Rickover (1900-86)
  9. Scoty

    Joining 2 DB on the same server

    I have 2 tables in 2 different DB's on the same server. is it possible to join them through SQL (both DB's belong to the same DBO) Thanks Scoty Learn from others' mistakes. You could not live long enough to make them all yourself -- Hyman George Rickover (1900-86)
  10. Scoty

    no temp table please

    vongrunt, thanks for the quick reply... I knew it had to be something easy. I don't have a lot of advanced experience with writing my own SQL. thanks again scoty Learn from others' mistakes. You could not live long enough to make them all yourself -- Hyman George Rickover (1900-86)
  11. Scoty

    no temp table please

    Hello everyone.. I am about to pull my hair out with this one and I know it is something very simple that I don't know about or don't know what to google on. here is my situation I have a table which contains data stored by "end of week" with a week day indicator. I have to be able to pull the...
  12. Scoty

    ADODC Recordcount

    Plank, I am not super fimilar with ADODC's but you can set the cursor location. I have found in order to get an accurate ADO record count I would have to set the CursorLocation = asUseClient. Give that a try and see if it helps. Thanks Scoty ::-) Learn from others' mistakes. You could not...
  13. Scoty

    ShellExecute Problem

    strongm, Once again, I stand in awe. Thanks you
  14. Scoty

    "Long Text" in SQL Server

    Long text is returned when you have set your field type to text or ntext in SQL. If you do not need all the space for the text field you can change the field type to a varchar. if you do need the space, you could build a quickie utility program to pull the information into a text box for...
  15. Scoty

    Generating runtime Select Case??

    strongm, I posted the suggestion then ran across your thread about scripting. Scripting does run better in compiled enviroment. Scoty ::-)
  16. Scoty

    ShellExecute Problem

    strongm, Yes the case else is the original implementation. I was unaware of ShellExecute's ability to assign the path with out splitting out the path, so that is noted for future. Although I must point out that the quotes that were passed in with command were causing issues, that is why I...
  17. Scoty

    Generating runtime Select Case??

    Bob, Yes, the "This" was speaking of generating and executing VBscripts on the fly. But I found something else that may be of use. Right here in our own forum http://www.tek-tips.com/faqs.cfm?fid=492 shows how to execute code stored in a string. So if debeebop is loading the parameters of...
  18. Scoty

    Simple SQL not working !

    % is the standard. Uncle Bill (Gates) likes to do his own thing
  19. Scoty

    Copy of an object without reference?

    So what about Dim I as Long Set Obj2 = New Obj1 For I = 0 to Obj1.Count - 1 '0 Based Obj2.Item(I) = Obj1.Item(I) Next I Am I missing something?
  20. Scoty

    Copy of an object without reference?

    Ok How 'bout Set Obj2 = New Obj1 Obj2.Property1 = Obj1.Property1 Obj2.Property2 = Obj1.Property2 Obj2.Property3 = Obj1.Property3 ... I know it seems kind of low brow programming but it will work.

Part and Inventory Search

Back
Top