VS 2008 Get In A Listbox All Computers In A Workgroup, NOT In A Domain?
Mar 4, 2010how to get in a listbox all computers in a workgroup, NOT in a domain?
View 3 Replieshow to get in a listbox all computers in a workgroup, NOT in a domain?
View 3 RepliesI would like to list make a list , such as, listbox, grideview, tree view that display all my network computer, I mean workgroup computer or domain computers, or all connected computers ip address, but I don't know what code and what object to use in visual basic 2010,
View 4 RepliesIs it possible to check that the computer is in Domain Or in Workgroup.
if you want to manually check that computer's status, simply right click on
my computer and then select properties, then select computer name tab.
now you can see the computer is in domain or in workgroup.
i need to copy file from domain to workgroup and one domain to another domain and workgroup to domain
how to copy file with authentication
I am looking to create an application which includes:
Removing a computer from the domain
Removing a computer from a workgroup
Adding a computer to a workgroup
Adding a computer to a domain
This application will be ran on the computer manually.
How can i get a List of all Arivable Computers in my Network/Workgroup ? I need to add all to a Listbox
View 7 RepliesI'm trying to figure how to pull the computers workgroup name using VB.NET.
View 6 RepliesHow can I make a LAN Messenger via IPv4 to chat with computers between in a Workgroup?
View 4 RepliesI am making an app to show all computers in domain, is this possible with visual basic 2010?
View 1 Repliesadd a domain user to a local group on remote computers
View 2 Replies ' Use Your work Group WinNT://&&&&(Work Group Name) Dim DomainEntry As New DirectoryEntry("WinNT://Wokgroup") DomainEntry.Children.SchemaFilte
[code].....
How can I write a code in VB that will give me back the name and workgroup of computers who are using the same IP address in my local intranet? The OS is XP.
View 1 Repliesis there are possible way in VB.net to add all the IP addresses and or computer names where the workgroup of the computer is located?
for example I am in a workgroup named: HOME
is it possible to get all IP/computer names in the workgroup HOME?
I have a function that works perfectly when I attempt to add a user from the same domain into a group of the same domain.
Function AddUserToGroup(ByVal strUserDN As String, ByVal strGroupDN As String, ByVal strGRPDC As String, ByVal strUserDC As String) As Boolean
Dim oUser As DirectoryEntry
[Code]....
The error is actually being thrown on the Invoke line, but as I said earlier, if the user is in the same domain, this works perfectly.
I am trying work on a Form in VB 2008 that allow our Windows users change their domain account password. My code below
Dim dcDNS
As
String =
"Vietnamohio"
[Code]...
I have managed to get most of what I need done. I can search computers on my domain and then add the names of the computer and properties to a tree view. [code] Where can I get a list of all the properties I can get data from in regards to a domain computer.I can pull the results when I know the name of the item but how can I just use no filters and then populate a listbox or treeview with every one so I can look at them? [code]
View 1 RepliesI am writing script to control processes on a remote computer. I have no provlem monitorinzing processes or services on computers in my own domain, but i cannot figure how to acces a computer on a work group. The error message is "access denied". I have examined the setting in "wmimgnt.msc" and the dcomcnfg, and both included proper right for local administrator group.
View 16 RepliesMy application communicates with DB's, images, etc. which are located on our company server/domain.
In real-world use, the app is used only by users on this server/domain. I have connection strings and various other settings which point to the sever for the user. While I'm developing/testing, I may or may not be connected/authenticated to the server/domain. There are many times when I am not.
Currently, I manually change each setting to point to a local address containing copies of needed items when I'm not on the server/domain.My goal is to develop a method to automatically determine whether that domain is available. If not, adjust settings as needed in code. This is for my benefit, while developing.
I'm fishing for various methods/techniques people have developed or use to accomplish this.
I have a database that is secured with a workgroup and I can not open it from VB7 to store or read data from it. I do not know what I am doing wrong.
Code in vb
Private DatabaseName As String = "C:\_Test SoftwareAppendix_FTEF1060.MagFlowMeterCalibrationDatabaseSecurity.mdw"
strConnect =
"Provider = Microsoft.Jet.OLEDB.4.0;" & _
"Data source = " & DatabaseName & ";" & _
"Jet OLEDB:"
[Code]...
1 when my listbox returns resaults it only brings back 10 how do I set it to return lets say 500
and question 2 is when I click on my links in listbox it's not opening webpage as I would expect it...
This is my code
[Code]...
I wonder how do I list all computers on the network with vb 2008?I know to do in vb6 I have no more sense in vb 2008.
View 2 RepliesCan Macbook-computers run programs from a vb 2008 .net, Windows Vista computer?
View 6 RepliesApplication runs fine on the computer that I used to create it.The application has 3 functions:
Button1...locate and preview an image file.
Button2...creates an email with html link...creates an html page file...ftp's the image and html files to server...sends email.
Button3...ftps image file only.
Publish and install on another computer and I have problems.
Button 1...Will load and preview file correctly.
Button 3...ftp image file only.
Button 2...I get an error (my own 'failed' message)
I have the same net framework 3.5 sp1 on all computers.What am I missing?I am thinking now it is code, but why does it will work on one and not the other.Do I need to install VB 2008 express on every computer that will be running this app just to insure that the computers are the same?
It is possible to copy on file (.txt) from a computer to another over LAN without using file sharing? Something like client-server app?
View 5 RepliesHow can I make it so a command button or whatever you'd like to use can mute the computers volume, then unmute it?
View 2 RepliesI have a piece of business-soft to make the lives of our employees easier. It's fairly typical, a tabbed-MDI style main form with a load of buttons that activate each of its sub-modules.
I have security set up on it so that someone in sales can't enter the module for purchasing, etc... I authenticate the user by having them type in their network password and check it against the AD server with this function:
'Remember to Imports System.DirectoryServices for this to work
Private Function ValidateActiveDirectoryLogin(ByVal Domain As String, ByVal Username As String, ByVal Password As String) As Boolean
[Code].....
I am trying to create a program that will send a URL saved in a textbox between the program which will be on different computers. So one computer will be running the program and the URL they have will be sent to the program on the other program.
View 2 RepliesI have this code that gives me the user logged on name of a remote computer, but if i run the program in certaing computers, it returns with the error "Not Available Due Restrictions" which is set if the scope cant connect...
why it connects fine in some computers and other not..is there something i have to add to the code for it to run fine in any computer
this is the code
vb.net
Dim connection As New ConnectionOptions
connection.Username = ("ADMIN")
connection.Password = ("something")
[Code]....
on good computers direct show works fine on vista computers that are a few years old; after playing a few (4 hours or so) videos my program crashes on this line:
[Code]....
when i say crashes it just stops responding ... i hit ctl+break and it has a green arrow on that line that means it's busy executing the constructor of the filter graph it seems to run fine on descent brand new vista machines, the memory usage is minimal on all occurrences. seems fairly constant on older machines.
How come when I design a form it isn't displayed properly on certain computers in the fact that buttons near the bottom go of the bottom of the window. I beleive this only happens with Windows XP however it might be due to screen resolution, I haven't troubleshooted it much.
View 7 Replies