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 TouchToneTommy 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. RobertR

    dirlistbox to variables to a file

    Try this: (assuming strDir contains the Directory-String) Dim arr() As String Dim strToFile As String arr = split(strDir,"\") strToFile = arr(0) if ubound(arr)>0 then for i=1 to ubound(arr) strToFile = strToFile & vbcrlf & "CD " & arr(i) next end if Now write...
  2. RobertR

    Remote Locking/Unlocking

    Hello! I want to lock and unlock Computers from another Workstation. How can I do it? Ive only found an API-function locking the local machine but not remote ones. Any hint would help me alot. Thx in advance Robert

Part and Inventory Search

Back
Top