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!

Recent content by DavidJA

  1. DavidJA

    Outlook drag & drop of attachments in VB

    I was hoping someone can point me to a tut on dragging a mail item from outlook to a vb app (perhaps with the OLEDragDrop Event). I'm trying to implement the functionality of dragging an attachment (out of OutLook) out of an mail item that you can select and drag to the explorer and it will...
  2. DavidJA

    Refreshing an IFrame from the parent window

    Got it! To refresh the content of an iFrame from the parent window, use the following syntax: document.frames("iframeResults").document.execCommand("Refresh")
  3. DavidJA

    Refreshing an IFrame from the parent window

    Hey all! I have a form with 2 iframes on it, and I would like to the concent of one of the iframes. I could do document.all.iframeSearch.src = 'AgencyOrderFormItemsTaskTypeSearch.asp?' + qs but then the iframe scrolls back to the top. I basicly want to be able to do something like...
  4. DavidJA

    Copying TEXT from one row to another

    Thanks for that, but now I'm really confused! From what I can tell, I need to call WriteText and pass the data argument as the result of ReadText, but because I can not create a local variable of type TEXT, I'm lost! I've tried: DECLARE @ptrSourceText varbinary(16) DECLARE @ptrDestText...
  5. DavidJA

    Copying TEXT from one row to another

    Hey all, I'm sure the answer to this is obvious AND simple, but I just can't get it! I have a row in a database that contains a varchar(50) column and a TEXT column. I want to copy the values of these two columns to another row, withing a stored procedure. Keeping in mind that text can not be...
  6. DavidJA

    ASP/COM scalability

    Project Properties: Threading Model: Apartment Unattended Execution = true Upgrade ActiveX control = true Retained In Memory = true
  7. DavidJA

    ASP/COM scalability

    Hey All, I have a n-teir application which consits of an ASP front end hosted on IIS5, VB created DLL files hosted on COM+ (as server application) and SQL server database. The application appears to work well, exept when a call to my com components takes more then a split second to execute...
  8. DavidJA

    recursively creating folders

    Hey all. Maybe my brain is dead today, but anyway, I can't figure out how to recursively create a folder. EG: If I want to create a folder called c:\Folder1\Folder2\Folder3\Folder4 and Folder1 does not exist, then I need to create Folder1, then I need to create Folder2, then Folder3 and...
  9. DavidJA

    Scraping a web site!

    Hey all, I need to be able to (in vb) connect to a URL and download all HTML files and .class files. Can someone please tell me how to do this in VB.
  10. DavidJA

    Creating folders are setting security

    Hey all. I want to be able to create a folder (which I can do using the MS Scripting Runtime), but also be able to assign access rights to this folder (every one/full control) How can I do this in VB?
  11. DavidJA

    stopping rounding of numbers in SPs

    Hey all, consider the following code: create table #test (Num decimal(6,2)) insert #test (num) select 50 / 100 select * from #test For me this returns 0.00, but 50/100 = .05 how can I make this code return 0.05.
  12. DavidJA

    blocking inherence with CSS

    Ok .parent1 TABLE { background-color:red } .child1 TABLE { background-color:green } .myCell {background-color:} It's the last line thats killing me, some cells I don't want a background-color, at all, I just want to show the background image instead. (note, above is a poor example because I...
  13. DavidJA

    blocking inherence with CSS

    I mean doing it in CSS, not HTML.
  14. DavidJA

    blocking inherence with CSS

    Hey all, I have a parent table and a child table. On the parent table I define { background-color:red} , how do I stop the child table inherating this? I would have thought it would be something like { background-color:'' } or { background-color:""} but that does not work....
  15. DavidJA

    Advanced CSS & Tables question

    TH is to THEAD what TD is to TBODY. You example certainly will work, but I a wanting to not have to define <t? class=&quot;classname&quot;> for evert T? element in the page. What I am trying to do is what CSS promises, seperate content from layout (or was that an XML promise?), so I can get...

Part and Inventory Search

Back
Top