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!

Search results for query: *

  • Users: bct10
  • Content: Threads
  • Order by date
  1. bct10

    obj event for loop?

    hi all how would i do a for loop for obj event in vbs that dold be the same as this //--> </script> <script for="NETComm1" event="OnComm()" language="JavaScript"> <!-- if(NETComm1.InBufferCount == 0) { // } else { alert(NETComm1.InBufferCount)...
  2. bct10

    convert java to vbscript?

    Hi all i habe this java that run in a web browser id like to makek it a standalone vbscript Use functions ToVariant() and FromVariant(); others serve as helpers only. */ function ToVariant (x) { if (x == null); else if (typeof(x) == "object") { if (x.getDate) { //...
  3. bct10

    usb drive ?

    hi all I would like to known i have a usb key drive after i use the safe to remove is there a command that would scan for drive an remount the usb drive if it has not been unpluged thanks beau
  4. bct10

    is there a way to see if a service is stopped or started

    is there a way in a script to see if a service is ruuning or stopped for example i like to know if alert isrunning or stopped thaks for any help
  5. bct10

    view availabe wireless networks?

    Hi all i need some help I like to know when you click view availabe wireless networks does that call a dll or exe or is there a script that can do this thanks for sny help
  6. bct10

    form change color of text if null?

    Hi all I have a from I like to change the color of the text at the top of form if a null is entered here is the code the * is next to text i went red in null <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>myweather form</title> <script...
  7. bct10

    how to make this work like a banner with on timmer?

    I have this script how wood i load the images like a banner so the webpage does not have to refresh so the image will change i have a peae of software tht writes yourIncludeFile.js" every 5 min thanks for any help <script src="yourIncludeFile.js"></script> <script...
  8. bct10

    how to use names instead of the array number?

    hi all I have a javascript form wir a drom down box were I went to selected the default value by giving my <option>s different names and use them instead of the array number, here is what I tried an it doex not work thake for an tips on what I did wrong <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML...
  9. bct10

    remove form feed characters from a string before writing to a file ?

    I have a string of text that has two form feed characters chr12 in it I like to remove them be for i write the string here what I have so far Set oFSO = CreateObject("Scripting.FileSystemObject") Set oFile = oFSO.OpenTextFile("abc.txt") Set MyFile =...
  10. bct10

    send keys not send the correct character?

    I am use this script Set oFSO = CreateObject("Scripting.FileSystemObject") Set oFile = oFSO.OpenTextFile("Test.txt") While oFile.AtEndOfStream <> True strLine = oFile.ReadLine If InStr(strLine, "REV") > 0 Then arrParts = Split(strLine, "|") End If Wend rem WScript.Echo arrParts(7) Set...
  11. bct10

    need a script to search a text file

    I have a text file called workfile.txt here is what it looks like [SETUP] FILLSTYLE=0 OPACITY=60 SERVER_SPECIAL=True BORDERWIDTH=1 [COLOURS] OTHER_FILL=16711935 ADVISE_FILL=65535 WATCH_FILL=3972607 WARN_FILL=255 OTHER_BORDER=0 ADVISE_BORDER=0 WATCH_BORDER=0 WARN_BORDER=0 [SHAPES]...

Part and Inventory Search

Back
Top