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 Chris 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. Bostlabs

    SQL server backup with Veritas 8.0 exec

    I also am having tis issue. Did you ever find a solution? Stephen Boston stephenb@nbarizona.com http://members.home.net/bostlabs
  2. Bostlabs

    JPEG files converted to VBScript file

    Sure there is. Follow this link and Symantec will help you out. In the future you may want to check out .vbs files in an attachment a little closer. You can open then in notepad and check them out before running them. Viewing the code can teach you a lot. Just don't use the information to...
  3. Bostlabs

    Adding time to a file save..

    Here is a snip of code I wrote for a filecopy routine in VBS. They should work fairly the same in VB (Some modifications my be needed. ;) ) dim dtmMonth, dtmDay, dtmYear, dtmMDY dtmMonth = Month(date) dtmDay = Day(date) dtmYear = Year(date) dtmMDY = dtmMonth & "-" & dtmDay &...
  4. Bostlabs

    Passing an Array from ASP to VB Component

    Just a shot in the dark here... Variables in ASP or VBScript are of type Varient so you would need to declare it as such in the VB componet to pass it over correctly. In your ASP code you probably have the variable set up like this. Dim Variablename Declare it exactly the same in your VB...
  5. Bostlabs

    changing date format to yymmdd

    I'm glad I could help. Here is a couple of links you might find useful. :) http://msdn.microsoft.com/scripting/vbscript/techinfo/vbsdocs.htm And the next own is a downloadable ref manual for VBScript. I've found it extremely helpful...
  6. Bostlabs

    changing date format to yymmdd

    Here is another method. dim dtmMonth, dtmDay, dtmYear, dtmMDY dtmMonth = Month(date) dtmDay = Day(date) dtmYear = Year(date) dtmMDY = dtmMonth & dtmDay & dtmYear A format function would be much nicer. :)
  7. Bostlabs

    Problem Copying files

    How are you performing the copy? I had some fun as well when I first tried to do that with many different servers. It turned out to be all in the syntax. Try this in a sub ------ Public Sub CopyMe() dim filesys, Target, Source, ServerName ' change the variables to suit your needs Target =...

Part and Inventory Search

Back
Top