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 Chriss Miller 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: *

  1. rorubin

    how can i get stats of a web site with vb

    Nhl points, from someone elses web site? Naughty Naughty..just kidding. You need to consider that they may change their page, however assuming that it is stored in an html table or whatever you can use the Browsers DOM to parse the data.
  2. rorubin

    BLOBs, VB and SQL Server

    I now understand where you are coming from.
  3. rorubin

    I can Get but can't Put (inet FTP)

    ACtually why don't you just convert to a short path that way you are not limited, and you can keep your program as is. I have some code that does that. If you are interested I will find it and post it.
  4. rorubin

    Splitting a url with code

    Get rid of the semicolon at the end of the HttpAddress line. Does anybody know why that keeps happening? Am I the only one with this problem. Anyway...
  5. rorubin

    Splitting a url with code

    Dim httpAddress As Variant httpAddress = "http://www.tek-tips.com/nice////_peo//ple/threadminder.cfm?spid=222&page=1#the_um_postform" httpAddress = Split(httpAddress, "/") HttpAdress = httpAddress(0) + "//" + httpAddress(1) + httpAddress(2) MsgBox HttpAdress...
  6. rorubin

    Way to Monitor the SQL Server

    You can try the notification service, although from a design standpoint I only see a benefit if you plan to need to scale the application.
  7. rorubin

    BLOBs, VB and SQL Server

    >>But you still need the GetChunk in order to get the binary data from the db before using it with the Stream object I'm afraid that this is not accurate. Although internally that may be how Microsoft implemented. Stream has a method called Write which takes Buffer, which can be a recordset...
  8. rorubin

    BLOBs, VB and SQL Server

    If you are using ADO 2.5 or greater then use ADO.Stream, it's a lot easier to work with. Here is the object description: http://www.w3schools.com/ado/ado_ref_stream.asp
  9. rorubin

    Way to Monitor the SQL Server

    Well I don't know what your components are doing, but if everything they are doing is on the database side, then take a look at "triggers"
  10. rorubin

    Not your regular everyday EMAIL Question - don't ignore

    Also try BLAT. http://www.interlog.com/~tcharron/blat.html
  11. rorubin

    Not your regular everyday EMAIL Question - don't ignore

    Ok. try this project : http://www.absolutelydiverse.com.au/vb_tips/hardcore/mapi.zip
  12. rorubin

    Not your regular everyday EMAIL Question - don't ignore

    Do you need to send and receive or just send?
  13. rorubin

    Switching DLLS at execution/runtime

    Why not just give the test users the test version of your dll, and give the production users the production dll, you don't need different "versions" just different version "number" that you could set to autoincrement in the IDE. If you want, but i don't really see the need...
  14. rorubin

    prompt once

    Try this: CrxReport.PrintOut True, 1, True, 1, 9999
  15. rorubin

    prompt once

    how about InputBox
  16. rorubin

    How To Force VB 6 App to Run On Server

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbenlr98/html/vafctcreateobject.asp
  17. rorubin

    How To Force VB 6 App to Run On Server

    In addition you can use DCOM, COM+....
  18. rorubin

    How To Force VB 6 App to Run On Server

    Howabout : Function CreateObject(Class As String, [ServerName As String])
  19. rorubin

    Run time error 13

    Can you post the code where you think the problem is?
  20. rorubin

    Disabling close button

    ADoozer - Your right sorry I forgot to Declare the external functions.

Part and Inventory Search

Back
Top