R
Ron Weiner
I have a VB.Net Pocket PC application that needs to be able to move files it
generates to a \\Server\Share for additional processing. The devices
connect to our network via WiFi. I am currently using code like:
strFiles = Directory.GetFiles(strSearchPath, "*.wav")
j = 0
For Each strfile In strFiles
File.Copy(strfile, Path.Combine(strNewDirName,
Path.GetFileName(strfile)), True)
j += 1
txtChanged.Text = "Saving Wave File " & j
Next
Works Great! But :-(
The first time that the Pocket PC does this A dialog pops up looking for the
user to enter their Username and Password for access to the Share. Sure as
Day follows the night our users are complaining about having to errorlessly
tap in their network credentials. Is there any way I can alleviate their
plight and programmatically provide a valid set of credentials (with
appropriate permissions) before I start the file copy procedure?
generates to a \\Server\Share for additional processing. The devices
connect to our network via WiFi. I am currently using code like:
strFiles = Directory.GetFiles(strSearchPath, "*.wav")
j = 0
For Each strfile In strFiles
File.Copy(strfile, Path.Combine(strNewDirName,
Path.GetFileName(strfile)), True)
j += 1
txtChanged.Text = "Saving Wave File " & j
Next
Works Great! But :-(
The first time that the Pocket PC does this A dialog pops up looking for the
user to enter their Username and Password for access to the Share. Sure as
Day follows the night our users are complaining about having to errorlessly
tap in their network credentials. Is there any way I can alleviate their
plight and programmatically provide a valid set of credentials (with
appropriate permissions) before I start the file copy procedure?