Click here to Skip to main content
15,890,609 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionBuild a firewall using VB.net and then open traffic after web-based sign-in Pin
GDMFSOB5-Feb-09 7:08
GDMFSOB5-Feb-09 7:08 
AnswerRe: Build a firewall using VB.net and then open traffic after web-based sign-in Pin
EliottA5-Feb-09 7:20
EliottA5-Feb-09 7:20 
AnswerRe: Build a firewall using VB.net and then open traffic after web-based sign-in Pin
Dave Kreskowiak5-Feb-09 9:16
mveDave Kreskowiak5-Feb-09 9:16 
QuestionListbox problem Pin
jaakinye5-Feb-09 6:21
jaakinye5-Feb-09 6:21 
AnswerRe: Listbox problem Pin
EliottA5-Feb-09 6:42
EliottA5-Feb-09 6:42 
AnswerRe: Listbox problem Pin
vaghelabhavesh5-Feb-09 10:01
vaghelabhavesh5-Feb-09 10:01 
GeneralRe: Listbox problem Pin
jaakinye5-Feb-09 16:07
jaakinye5-Feb-09 16:07 
QuestionVBScript to get all users (local and domain) Pin
mixologee5-Feb-09 3:27
mixologee5-Feb-09 3:27 
I am trying to write a script that gets the info of all the users that exist on a PC. It gathers data on local users but not domain users. Any help would be appreciated on this matter. Here is a copy of my script:

'A Windows Script For Listing all Users on the current box

'Create a WMI Object
Set ow = GetObject("WinNT://.")

strOut = ""
'Get User Array
ow.Filter=Array("User")

For Each obj in ow

strOut = strOut & obj.Name & vbnewline

Next

Set ow = Nothing

Dim oFilesys, oFiletxt, sFilename, sPath

Set oFilesys = CreateObject("Scripting.FileSystemObject")

Set oFiletxt = oFilesys.CreateTextFile("c:\BeaconTemp\userlist.txt", True)

sPath = oFilesys.GetAbsolutePathName("c:\BeaconTemp\userlist.txt")

sFilename = oFilesys.GetFileName(sPath)

oFiletxt.WriteLine(strOut)

oFiletxt.Close
AnswerRe: VBScript to get all users (local and domain) Pin
Dave Kreskowiak6-Feb-09 3:36
mveDave Kreskowiak6-Feb-09 3:36 
Questionaccess MDB database help Pin
Dave McCool5-Feb-09 3:16
Dave McCool5-Feb-09 3:16 
AnswerRe: access MDB database help Pin
Dominick Marciano5-Feb-09 4:21
professionalDominick Marciano5-Feb-09 4:21 
AnswerRe: access MDB database help Pin
Rupesh Kumar Swami5-Feb-09 4:22
Rupesh Kumar Swami5-Feb-09 4:22 
Questionretrive field value into combobox Pin
vijay24825-Feb-09 2:42
vijay24825-Feb-09 2:42 
AnswerRe: retrive field value into combobox Pin
Rupesh Kumar Swami5-Feb-09 3:11
Rupesh Kumar Swami5-Feb-09 3:11 
Question[Message Deleted] Pin
εїзεїзεїз5-Feb-09 2:07
εїзεїзεїз5-Feb-09 2:07 
AnswerRe: Grid View Control Pin
Henry Minute5-Feb-09 9:16
Henry Minute5-Feb-09 9:16 
QuestionWhere to put try / catch blocks when dealing with classes Pin
maxnuggets5-Feb-09 0:55
maxnuggets5-Feb-09 0:55 
AnswerRe: Where to put try / catch blocks when dealing with classes Pin
Johan Hakkesteegt5-Feb-09 2:09
Johan Hakkesteegt5-Feb-09 2:09 
GeneralRe: Where to put try / catch blocks when dealing with classes Pin
maxnuggets5-Feb-09 2:22
maxnuggets5-Feb-09 2:22 
GeneralRe: Where to put try / catch blocks when dealing with classes Pin
Johan Hakkesteegt5-Feb-09 3:04
Johan Hakkesteegt5-Feb-09 3:04 
AnswerRe: Where to put try / catch blocks when dealing with classes Pin
riced5-Feb-09 4:43
riced5-Feb-09 4:43 
GeneralRe: Where to put try / catch blocks when dealing with classes Pin
supercat95-Feb-09 6:28
supercat95-Feb-09 6:28 
QuestionModifying a window service Pin
sohaib_a4-Feb-09 22:58
sohaib_a4-Feb-09 22:58 
AnswerRe: Modifying a window service Pin
Dave Kreskowiak5-Feb-09 2:23
mveDave Kreskowiak5-Feb-09 2:23 
Questionvb express list box Pin
steve moorley4-Feb-09 22:49
steve moorley4-Feb-09 22:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.