How Can I Get Shared Folder From A Network Computer
Hi, I want to access the shared drives of the computer available at the network, while i am available at the network...How can i do so...which API's are needed to do this and how... Can anybody help me please Regards
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
List The Directory Include The Network Computer Name And Shared Name.
Hi all,
i got this code from the vb-world, which able to list the directory of your harddisk. It does show the directories in your computer, network neighbourhood, network domain name, but doesn't list the network computer and share name under the network computer name.
anyone know how to enable it to show the list of network computer name and their sharename. pls let me know.
thks in advance.
al
here's the code
=========================================
Option Explicit
Private Const BIF_RETURNONLYFSDIRS = 1
Private Const BIF_DONTGOBELOWDOMAIN = 2
Private Const MAX_PATH = 260
Private Declare Function SHBrowseForFolder Lib _
"shell32" (lpbi As BrowseInfo) As Long
Private Declare Function SHGetPathFromIDList Lib _
"shell32" (ByVal pidList As Long, ByVal lpBuffer _
As String) As Long
Private Declare Function lstrcat Lib "kernel32" _
Alias "lstrcatA" (ByVal lpString1 As String, ByVal _
lpString2 As String) As Long
Private Type BrowseInfo
hWndOwner As Long
pIDLRoot As Long
pszDisplayName As Long
lpszTitle As Long
ulFlags As Long
lpfnCallback As Long
lParam As Long
iImage As Long
End Type
Private Sub Command1_Click()
Dim lpIDList As Long 'Declare Varibles
Dim sBuffer As String
Dim szTitle As String
Dim tBrowseInfo As BrowseInfo
szTitle = "Click on a directory"
With tBrowseInfo
.hWndOwner = Me.hWnd 'Owner Form
.lpszTitle = lstrcat(szTitle, "")
.ulFlags = BIF_RETURNONLYFSDIRS + BIF_DONTGOBELOWDOMAIN
End With
lpIDList = SHBrowseForFolder(tBrowseInfo)
If (lpIDList) Then
sBuffer = Space(MAX_PATH)
SHGetPathFromIDList lpIDList, sBuffer
sBuffer = Left(sBuffer, InStr(sBuffer, vbNullChar) - 1)
MsgBox sBuffer
End If
End Sub
Copy A File From A Computer To A Shared Folder
Hi,
I want to copy a file from a computer to a shared folder on the network like this : filecopy file.txt to "\192.168.0.120folder1" , but I need to use a username and password to bo able to access that folder .
Network Shared Folder
For one of my programs (i really have to many in progress!-darn, why do i volanteer), i have to create network shared folders, such as the "Net Share" command through a DOS promt does, the only thing is i dont want to drop loads of batch files to create a share. can anyone point me in the direction for this?
Network Shared Folder
hellow guys...!
is it possible to write a program using vb6 - that scans for a shared folder. Of course we can use windows explorer to find a shared folder, but what i want is how to code that thing...
is it possible?
thnks
¤¤¤(¯`·¸•´¯)¤¤¤])•—› shuryuhen8 ‹—•([¤¤¤(¯`·¸•´¯)¤¤¤
Mÿ Çødë Rðútìñès Crâw£s Øñ ¥ðúr PÇs ߣÓÖÐSTRÈÃM
Network Shared Folder Access
Hi!
My computer has Windows 98 and it is member of a Workgroup (NOT a domain, there is no server for the network). OK. So I have a folder shared on my computer. I would like to write a program that can tel me what other computers on the network are currently logged on to my shared folder, at a certain moment.
Can anybody give me any idea on how to do this? Is this possible using some API calls?
I'm thinking of using this function but I don't know how:...
Private Declare Function NetConnectionEnum Lib "netapi32.dll" _
(ByVal servername As Long, _
ByVal qualifier As Long, _
ByVal level As Long, _
bufptr As Long, _
ByVal prefmaxlen As Long, _
entriesread As Long, _
totalentries As Long, _
resume_handle As Long) As Long
The problen is that i don't know how to use it. It has something to do with pointers and stuff that I'm not soo familiar with. One more thing: this function is intended to be used mainly under Win2000/NT. It is supported by Win98, but with some changes regarding the declaration and the asociated "Connection_Info_1" type...
In MSDN, the examples regarding the use of this function are for C++. Nothing for VB6 programmers... This is realy frustrating !!!
Anyone who can help me with this ?!? Please! Thanks!
Hope I've been helpful,
Bogdan Muresan.
Network Drive Shared Folder Password In VB
Hey all.
Is it possible to open a password-protected folder on the network drive through VB if I know the password?
If you know this, please let me in on it.
Thanks so much.
Wengang
Network Shared Folder Access Monitoring
Hi!
My computer has Windows 98 and it is member of a Workgroup (NOT a domain, there is no server for the network). OK. So I have a folder shared on my computer. I would like to write a program that can tel me what other computers on the network are currently logged on to my shared folder, at a certain moment.
Can anybody give me any idea on how to do this? Is this possible using some API calls?
Thank you!
Accessing/running Activex Document From A Shared Folder In A Computer Server
Hi everyone.
I have created an activex document project and I deployed it to other computer (server) using the deployment wizard of VB6 to a shared folder(OTFORM). I did set the sharing & security of the OTFORM as 'full access'. I thought everything's fine. Because it runs well in my browser. But when I checked and used the other computer's browser, that's how my problem started. I always get a 'download dialogue box' asking me if I'm going to open it or save it. I wonder why it behaves like this on the other computer. Can anyone help me on this?
Thanks in advance.
How To Obtain IP Address/UserName Of User Modifying Shared Folder On The Network ?
Hi Friends,
This is a wonderful learning hub ! Thanks to all the contributors for the valuable information.
I need a solution for the following scenario.
Scenario :
A folder monitor application ( developed in VB.Net)
is deployed on the host server. The application detects changes made to the shared folder (such as creation,deletion,renaming of files etc.)
Question : Given that you can track the events happening to the folder such as creation , deletion etc. how will you detect the IP address or the user in the domain who triggered the event ?
Also the ports of the host server(where the shared folder is located ) used by the remote user (on the network) to create, edit files at different times are different. So how can the ip of the user on the n/w accessing this shared folder get detected when he tries to modify the shared folder.
Any help friends?
Extract Icons For My Computer, Network Connection, Folder Etc.
Does anybody know how to extract the icons used for the standard objects like My computer, network drive, disconnected network drive, Hard Disk, floppy, CD etc. and add them to an imagelist?
I managed to extract the icons associated to a file, and display it in a picturebox, but I would also like to add them to an imagelist (in all sizes available 16*16, 32*32 etc)
Any help is appreciated.
Frans
Copy Files From Shared Folder To The Local C: Folder
Hai
This is Kiran,
I am working with Access 2002 ( XP ).
I have to copy required Excel files from the shared folder to the Local system C: drive for example.
Can any one help me that how can I do it with VBA in MS Access.
Thanks in advance.
Kiran Karnati.
Shared Folder Creation And User Creation And Accessing Shared Folder Using User Id
hi,
I want to create a shared folder called 'Accounts' as Accounts$ in windows 2000 pro, windows server 2000, windows XP,windows 2003 server?
I want to create a shared folder called 'Accounts' in windows 98 with password protection.
Also I want to create a user called 'AccUser' with password 'AccUser' in windows 2000 pro, windows server 2000, windows XP,windows 2003 server?
How can access the folder 'Accounts' using AccUser userid from VB 6 application?
Regards
S. Muhilan
Getting The Ip Of The Computer Printing On A Shared Printer
can someone please help me in this part of my program? how can i make a snippet that can get the ip (for me to display in the program) that is currently printing on a specified shared printer (any printer whether local or via tcp/ip port or any port).
Logging In To Shared Drive On Another Computer
What i want to do is logon to the shared drive of another computer from inside my vb6 program.
The problem is before some of the stuff in my program can run it needs to be able to access a shared drive on another computer. Windows tends to drop the connection after a while so I want my program to be able to log in to the shared drive supplying the username and password so my program can reach the drive.
for example I want ot get to this folder using the username and password below
\thecomputer hefolder
username:user password:pass
Does anyone know of an easy way to do this.
Thanks
Kelly
HOW TO MAKE MY DATABASE SHARED WITH MORE THAN ONE COMPUTER
Hi all,
I want to understand how can i share my Database designed using
MS Access and connected to the interface created by Visual basic
6.0 enterprise.
I created .exe file and make a package of that, project. I
installed in another computer and worked fine. But when i wanted
to share that db to another computer an error message appear. So
i dont know how i can share that database. Please am asking for
your help.
Regards
Jonas
Create New Folder Into A LAN Shared Folder
Hi, as the tittle says, I need to create a new folder from my PC into other LAN shared folder, I'm using a FileSystemObject to create the folder but this returns the "Access Denied" error # 70. How I can solve this !?
Thanks !!!
Help With Network Shared Unit
Hello!!, i made a litle program in visual basic 6.0 that open a file in a network shared unit, i have a textbox with a way to the file like //pc3/c/dfdfd/xxx.yt, the program works well when i give the password for the unit at start of the program but when i restart the pc the program not conect whit the file becose i'm not there to open the network unit an type the password, how can i do to automatically conect putting the password with the program?
I can to map de unit locally but the program is in a pc for student users and i dont want to he see the bases (he can destroy them)
Sorry for mi english, i hope you understand me.
Thanks to all.
Network, And Shared Folders
Hi everyone.
In the course of making an app, i came across a problem.
I want to find all the shared folders on a certain computer on the LAN (of course my program is not installed on that PC).
Any ideas of how i can find all the names of shared folders on the PC on the LAN (i know its name on the network) ?
Thanks in advance (if you need further info, please ask)
Computer A Call Computer B Run A Program In Network
Hello everybody !
I have a network, I am computer A, can I write a program where the program function is call computer B in network running another program ? like notepad..etc
Thank a lot
MSN Messager ID:lkching7@msn.com
[ASK]Check Shared Network Printer ??
Hello, I want to ask some question with VB6 ...
1. How to check the shared printer ready or not ??? I'm using Printer Epson LX300 connected to my PC using LPT1. Example my IP is 192.10.200.11 and the printer is shared as "20011". I try print using another computer without check, it works.
I got this code somewhere
Code:
Public Declare Function OpenPrinter Lib "winspool.drv" Alias "OpenPrinterA" _
(ByVal pPrinterName As String, _
phPrinter As Long, _
pDefault As PRINTER_DEFAULTS) _
As Long
Public Declare Function GetPrinter Lib "winspool.drv" Alias "GetPrinterA" _
(ByVal hPrinter As Long, _
ByVal Level As Long, _
pPrinter As Byte, _
ByVal cbBuf As Long, _
pcbNeeded As Long) _
As Long
Public Declare Function ClosePrinter Lib "winspool.drv" _
(ByVal hPrinter As Long) _
As Long
Public Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" _
(Destination As Any, _
Source As Any, _
ByVal Length As Long)
' constants for PRINTER_DEFAULTS structure
Public Const STANDARD_RIGHTS_REQUIRED = &HF0000
Public Const PRINTER_ACCESS_ADMINISTER = &H4
Public Const PRINTER_ACCESS_USE = &H8
Public Const PRINTER_ALL_ACCESS = (STANDARD_RIGHTS_REQUIRED Or _
PRINTER_ACCESS_ADMINISTER Or PRINTER_ACCESS_USE)
' constants for DEVMODE structure
Public Const CCHDEVICENAME = 32
Public Const CCHFORMNAME = 32
Public Type PRINTER_DEFAULTS
pDatatype As String
pDevMode As Long
DesiredAccess As Long
End Type
Type PRINTER_INFO_2
pServerName As Long
pPrinterName As Long
pShareName As Long
pPortName As Long
pDriverName As Long
pComment As Long
pLocation As Long
pDevMode As Long
pSepFile As Long
pPrintProcessor As Long
pDatatype As Long
pParameters As Long
pSecurityDescriptor As Long
Attributes As Long
Priority As Long
DefaultPriority As Long
StartTime As Long
UntilTime As Long
Status As Long
cJobs As Long
AveragePPM As Long
End Type
Public Const ERROR_INSUFFICIENT_BUFFER = 122
Public Const PRINTER_STATUS_BUSY = &H200
Public Const PRINTER_STATUS_DOOR_OPEN = &H400000
Public Const PRINTER_STATUS_ERROR = &H2
Public Const PRINTER_STATUS_INITIALIZING = &H8000
Public Const PRINTER_STATUS_IO_ACTIVE = &H100
Public Const PRINTER_STATUS_MANUAL_FEED = &H20
Public Const PRINTER_STATUS_NO_TONER = &H40000
Public Const PRINTER_STATUS_NOT_AVAILABLE = &H1000
Public Const PRINTER_STATUS_OFFLINE = &H80
Public Const PRINTER_STATUS_OUT_OF_MEMORY = &H200000
Public Const PRINTER_STATUS_OUTPUT_BIN_FULL = &H800
Public Const PRINTER_STATUS_PAGE_PUNT = &H80000
Public Const PRINTER_STATUS_PAPER_JAM = &H8
Public Const PRINTER_STATUS_PAPER_OUT = &H10
Public Const PRINTER_STATUS_PAPER_PROBLEM = &H40
Public Const PRINTER_STATUS_PAUSED = &H1
Public Const PRINTER_STATUS_PENDING_DELETION = &H4
Public Const PRINTER_STATUS_PRINTING = &H400
Public Const PRINTER_STATUS_PROCESSING = &H4000
Public Const PRINTER_STATUS_TONER_LOW = &H20000
Public Const PRINTER_STATUS_USER_INTERVENTION = &H100000
Public Const PRINTER_STATUS_WAITING = &H2000
Public Const PRINTER_STATUS_WARMING_UP = &H10000
Function CheckPrinterStatus(PrinterName As String) As String
Dim hPrinter As Long
Dim ByteBuf As Long, BytesNeeded As Long
Dim PI2 As PRINTER_INFO_2
Dim PrinterInfo() As Byte
Dim result As Long, LastError As Long
Dim tempStr As String
Dim NumJI2 As Long
Dim pDefaults As PRINTER_DEFAULTS
CheckPrinterStatus = ""
pDefaults.DesiredAccess = PRINTER_ALL_ACCESS
'Call API to get a handle to the printer
result = OpenPrinter(PrinterName, hPrinter, pDefaults)
If result = 0 Then
'If an error occured, display an error and exit sub
MsgBox "Cannot open printer " & PrinterName & ", Error: " _
& Err.LastDllError & "-" & Err.Number
Exit Function
End If
'Init BytesNeeded
BytesNeeded = 0
'Clear the error object of any errors
Err.Clear
'Determine the buffer size needed to get printer info
result = GetPrinter(hPrinter, 2, 0&, 0&, BytesNeeded)
'Check for error calling GetPrinter
If Err.LastDllError <> ERROR_INSUFFICIENT_BUFFER Then
ClosePrinter hPrinter
Exit Function
End If
'Due to a problem with GetPrinter, we must allocate a buffer as
'much as 3 times larger than the value returned by the initial
'call to GetPrinter.
ReDim PrinterInfo(1 To BytesNeeded * 3)
ByteBuf = BytesNeeded
'Call GetPrinter to get the status
result = GetPrinter(hPrinter, 2, PrinterInfo(1), ByteBuf, _
BytesNeeded * 3)
'Check for errors
If result = 0 Then
'Determine the error that occured
LastError = Err.LastDllError()
ClosePrinter hPrinter
Exit Function
End If
'Copy contents of printer status byte array into a
'PRINTER_INFO_2 structure to separate the individual elements
CopyMemory PI2, PrinterInfo(1), Len(PI2)
'Check if printer is in ready state
If PI2.Status = 0 Then
CheckPrinterStatus = "Ready"
Else
CheckPrinterStatus = PI2.Status
End If
'Close the printer handle
ClosePrinter hPrinter
End Function
I try using this code on my command button
Code:
Dim PrinterName as String
PrinterName = "\192.10.200.1120011"
MsgBox CheckPrinterStatus(PrinterName)
When I Run code above, I'm get msgbox "Cannot Open Printer \192.10.200.1120011". BUT IF I'm Using Printer Server, the code above will run (offcourse with different shared name and IP).
Can anybody help me, please ?? maybe there is another function ??
Thank you..
Access To Network Shared Folders
Hello, I need to access to network shared folders using VB. These folders have permissions for local users, and i want to authenticate this users using VB code, for example:
Access to \PC1folder1
user:user1(PC1 user)
password:****
How can i do it?
Thanks
Creating A Shared Network Printer
Using the AddPrinter API I an creating printers and all of the fields that I need (comment, location, share name, etc... ) are there but even though I am providing a share name it is not automatically sharing the object.
Can anyone provide any insight?
Thanks,
Jim
Accessing Network Shared Drives In VB!!
Hello!!
I need to write a program to backup files from shared hard disks on my local LAN. I dont know though how to look at files on remote computers, given their IP etc. Can anybody help me with this?
Thanks in advance!
Connect To Shared Network Drive?
One little thing that might be a big thing. I'm getting ready to deploy an app at work which will connect to a shared network drive
Path = H:MfgSharedMachinetime.mdb
At home I have an "H" drive on a second hard drive as a partition. So obviously I can connect to it no problem.
Problem?
I made the ASS U ME tion" If I can connect to it with Explorer from my workstation at work..........."
Question:
Will I have difficulties at work when the drive is not mapped the same way? Or will I need to have somthing like the ODBC string below?
oConn.Open "Driver={Microsoft Access Driver (*.mdb)};" & _
"Dbq=H:\MfgSharedMachinetime.mdb;" & _
"Uid=admin;" & _
"Pwd="
If you invite abuse, it's impolite not to accept it.
Hawkeye Pierce to Frank Burns. MASH c.1980
I try not to invite abuse these days!
Accessing Network Shared Folders
I am new in VB, and trying to learn... i have difficulty in writing a file residing on a network shared folder. I used:
Open "\org3org est.dat" For Random As #1 Len = Len(MyRecord)
I figure the problem is that the folder is password protected... and although I know the password for full network access, i do not know how to parse this password through VB. It will be no problem if i first logon into the shared drive before executing my VB code... but that is not what i want.
Pls Help...
Shared Folder?
Hello!
I would like shared a folder in VB?
(WInnt and win98)
How can i do?
THank's !
Cybercool
Shared Folder
Hello!
I would like share a folder in VB source code.
How can i do?
Thank
Cybercool
Shared Folder
Hi
Does anyone know how to unshare a path through API?
Thanks in advance
Washington
Log On To Shared Folder With Api?
Hi,
I need to fetch a file from a shared folder via a vb app. The app is on win98, and the remote machine will be win98, but may be win2k in the future. I will use the FileSystemObject to search and find it, then I'll either be doing FileCopy to bring it local or just Open it remotely to read it, but I get an error because I haven't logged onto the shared folder--it is password protected. How do I use code (some api perhaps?) to log on in code to this folder?
Thanks,
--Jsteph
How To Log Onto A Shared Folder
Greetings guru's!
My problem is that I need to log onto a remote share so that my client apps can see my shared database. At present, I have to log onto the share through explorer. Is there a way to do this in vb? Has anyone done it or seen an article on it? If so, please point me in the right direction.
Thank you all
Running An Application Thru Shared Directory Over Network
Hello,
1st of all, I'm a newbie to VB...
I've compiled my VB6 project to .exe thru Make Project.exe
My plan of the system is to be able to share my project.exe over the network, so that everyone can run the application by mapping my server's directory.
However, after mapped drive is done, upon clicking the project.exe, an error of Class not registered came out.
Error is as attached....
Please help
Schedule To Send Email On A Shared Network Pc
Hi all,
i have tried to do a search on this one but to no avail. pls help me
i am using a shared network pc with ms outlook and exhange server installed. i have an administrator account for this pc.
my question is can i schedule this pc to automatically send an email daily? i would used ms schedule tasks to run a vb app which will do some computation and generate a report by email. can it be done?
Browser Control & Network Shared Paths?
Hey ya..
OK, To the point ..
If my application files, are on say:
E:ProgrammingFilesDefault.htm
The browser control loads it up, when i start the app.
If it is on a path like:
\Studentdata 000000filesdefault.html
it wont load up?
stays on a white screen..
any how, what i need to know, is there an "Issue" with the browser control and Network Drives?
Using Crystal Report 8 In A Network Shared Environment
hello, i have an vb application using ms access n crystal report
8. i have shared the application in a network of around 6 pcs
and it works well with the application part. But when it comes
for reporting we cannot access the report from other machines
except from the one where the application is installed. So, i
just wanted 2 know how to go about in such a situation. Pls help
me
Listing Shared Folders In A Network Resource
I'm about to write a program listing files in shared folders in network resources.
I've listed all the nodes in the domain using the WNetOpenEnum and WNetEnumResource API's, but I can't figure out how to list the shared folders
Please help me out, someone
Connect To A Shared Folder
I would like to access network shares using something like the FileListBox. The FileListBox seems to work for network shares, but not if they are password protected. How can I allow the user to enter in the password to be able to display the folders contents?
Shared Folder Sessions
In Windows XP, if you right click My Computer, and click manage - then "Shared Folders", and then Sessions - it shows if a user is connected to any of the shares on the local machine...
Is there an API to "grab" this collection of information from VB?
I need to be able to read this collection in my VB application, and I'm not sure if there is an API that does it, or what code I need to do it...
Any help is greatly appreciated!
-Dave
Turnning Off/on A Shared Folder
I do not want the users to see or access the backup folder on the backup computer durning the day.
On the back computer: at 1 am turn on shared folder, then at 5am turn off shared folder.
Durning this time slot the PCs will backup their data.
Any thoughts?
Maybe VB-Script ?
Shared Folder... Permissions! ??
Hi everyone!
I am using JoshT code to share a folder on a computer with 2000 or xp.... and it works really good. Now.. the only thing is that this code gives permissions to everyone... and I need to give permissions only to a determined user.
So here is the code
VB Code:
'THIS CODE IS FOR NT/2000'5-3-2001 by JoshT Option ExplicitOption Base 0 Private Const STYPE_DISKTREE As Long = 0 'disk drivePrivate Const STYPE_PRINTQ As Long = 1 'printerPrivate Const STYPE_DEVICE As Long = 2Private Const STYPE_IPC As Long = 3 Private Type SHARE_INFO_2 shi2_netname As String 'LPWSTR shi2_type As Long 'DWORD shi2_remark As String 'LPWSTR shi2_permissions As Long 'DWORD shi2_max_uses As Long 'DWORD shi2_current_uses As Long 'DWORD shi2_path As String 'LPWSTR shi2_passwd As String 'LPWSTREnd Type 'NetShareAdd returns 0 if no error''lpwstrServerName As Any, --the computer to create the share on,' NULL for local computer,' otherwise must begin with "\"'ByVal dwordLevel As Long, -- specifies the type struct that contains the data' 2 for SHARE_INFO_2 Struct' 502 for SHARE_INFO_502 Struct'ByVal lpbyteBuf As Any, -- pointer to the struct who type was specified above'lpdwordParmErr As Long, -- if an error in the struct, the number of the struct's parameter' that caused the error (0 is no error) Private Declare Function NetShareAdd Lib "netapi32.dll" _ (lpwstrServerName As Byte, _ ByVal dwordLevel As Long, _ ByVal lpbyteBuf As Long, _ lpdwordParmErr As Long) As Long Private Sub TestIt() Dim si2 As SHARE_INFO_2 Dim retval As Long Dim parmerr As Long Dim compname() As Byte parmerr = 0 'compname = vbNullString compname() = "\COMPUTER7" & vbNullChar si2.shi2_netname = "Test2C" & vbNullChar 'the name of the share si2.shi2_type = STYPE_DISKTREE 'the share is on the disk si2.shi2_remark = "Testing Out NetShareAdd VB API" & vbNullChar 'the comment si2.shi2_permissions = 0 'this should be ignored si2.shi2_max_uses = -1 'unlimited connections si2.shi2_current_uses = 0 'I don't think this is applicable si2.shi2_path = "C:TEMP" & vbNullChar 'the path to the share si2.shi2_passwd = vbNullString 'NULL, the password 'this should be ignored retval = NetShareAdd(compname(0), 2, VarPtr(si2), parmerr) End Sub Private Sub Form_Load() TestItEnd Sub
I think I need to work around si2.shi2_permissions or si2.si2_permissions.... but I am lost.
PD. Have I told you how MSDN search sucks?
Making A DSN Through FTP Or Shared Web Folder
Guys:
We are developing application which is based on Client server functionality.WE have a database which is built in MS Access that is reside on server side .
I want to create DSN through which I can access this data base remotely at client side .will it be possible through making a DSN through shared web folder(WAN)? or there are any other suggestion to solve this problem.
thxs & regds.
Vikrant
Hidden Shared Folder
Hello All,
I want to do somthing like ... a file which is shared on the LAN and when any client run that shared file then he will redirected to a hidden shared folder with $ on my pc and have read only permission.
Thanks for reading.
Regards,
Hunaid ( munnobhai ).
Creating A Shared Folder In VB6
Hi all!
is there any way to create a network shared directory from VB?
i know how to create a "normal" directory, but how do i "share it" from VB?
WinNT 4 Shared Folder.
Can someone please tell me how can I access a file, any kind of file(data base), from a shared folder in NT4.
Thanks in advance!
Make A Shared Folder
I asked this question yesterday, but i didn't get a very clear answer...
How do i make a directory that is shared in a network??
|