 |
|
 |
Would you so fantastic if you can incorporate a method/property for unused drive letter.
While we wait... hope you don't mind I modify your code
|
|
|
|
 |
|
 |
Your site not active???
Please send new address?
|
|
|
|
 |
|
 |
how can i use this code for vb6????
please help me................ Peaxce
|
|
|
|
 |
|
 |
anyway to make it work under limited ac?
|
|
|
|
 |
|
 |
logon failure: unknown user name or bad password but my User name and password are correct
|
|
|
|
 |
|
 |
Helped me to solve my problem
|
|
|
|
 |
|
|
 |
|
 |
You made my day. I was having so much trouble trying to do this from an ASP .Net WebSite to access a remote server shared folder, but your code simply save me a lot of headaches, I really want to thank you. Well done.
|
|
|
|
 |
|
 |
Can anybody tell me were I can found last version of aejw?
Thanks
|
|
|
|
 |
|
|
 |
|
|
 |
|
 |
Anyone know how to get ahold of the updated version of this software. the new version has a couple of features that I need and the programmers website has been down for a long time.
|
|
|
|
 |
|
 |
thank you soooo much ..that is exactly what i was looking for..
|
|
|
|
 |
|
 |
Hi, does anyone know how to expand a mapped drive path? Say for example there is a drive "x:" that maps to "\\SomeServer\Apps\Data" and I have a path "x:\file.txt". How can I find out what x: is mapped to, so that I can return the string "\\SomeServer\Apps\Data\file.txt" ?
Thanks
Sparky
|
|
|
|
 |
|
 |
Note that he is up to build 28 (this is 15) on his site. It claims to correct some bugs. His site is down but the google cached copy is there.
|
|
|
|
 |
|
 |
Hi!
Great article!
Theres a tiny bug in LPT1 mapping. If you try to map LPT1: your code converts it to the L drive letter...
A quick and dirty fix is the following:
public string LocalDrive
{
get { return (ls_Drive); }
set
{
if (value.ToUpper() == "LPT1:" || value.ToUpper() == "LPT1")
{
ls_Drive = "LPT1:";
}
else if (value.Length >= 1)
{
ls_Drive = value.Substring(0, 1) + ":";
}
else
{
ls_Drive = "";
}
}
}
I guess there's a better way but it works for me.
Greetings,
DM
|
|
|
|
 |
|
 |
Looking for just like thing
5
|
|
|
|
 |
|
|
 |
|
 |
Hi just recently moved these codes to my server 2003 and i'm getting these errors. Any ideas how i can fix this problem??
"This network connection does not exist"
[Win32Exception (0x80004005): This network connection does not exist]
aejw.Network.NetworkDrive.zUnMapDrive(Boolean pfForce) +373
aejw.Network.NetworkDrive.UnMapDrive() +50
EyeModInfo._Default.img1btn_Click(Object sender, ImageClickEventArgs e) +1315
System.Web.UI.WebControls.ImageButton.OnClick(ImageClickEventArgs e) +98
System.Web.UI.WebControls.ImageButton.RaisePostBackEvent(String eventArgument) +161
System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +29
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2981
|
|
|
|
 |
|
 |
FYI: Tried to get the latest from your website but it's been down for at least a week or so.
"failed to init xml file 'aejw/data/portal.config' - Root element is missing. "
I'm sure you know about it. Is it on purpose?
|
|
|
|
 |
|
|
 |
|
 |
The code works correctly on my WinXP development workstation. When I copy the compiled exe to a Windows 2003 Server machine, I get the following exception:
System.ComponentModel.Win32Exception: Attempt to access invalid address
Is there something that I need to register on my server machine?
|
|
|
|
 |
|
 |
This error tends to occur when the drive letter set is already in use or set incorrectly.
- aejw.com
|
|
|
|
 |
|
|
 |
|
 |
Do I have to map the drive on every page that needs access? Can I just map once for a server? If so, where/how do I do it?
I have just downloaded and it says Build 015 Modified 14/05/2004. Is this the latest?
Thanks.
--kk
|
|
|
|
 |