Prev: Speed issue creating Excel spreadsheet
Next: How can I read selected text in another application, by vb program?
From: vovan on 30 Oct 2009 20:14 My VB 2008 application uses System.IO.File.Exists method. On XP there is no problem with accessing file located on the server. On Windows 7 the file is not found. The same problem with file_reader = New System.IO.StreamReader(strSourse & "\InitialData.txt") where strSource is the string containing the path to the file on the server. Any advice please. Thank you vovan
From: Family Tree Mike on 30 Oct 2009 20:47 vovan wrote: > My VB 2008 application uses System.IO.File.Exists method. On XP there is > no problem with accessing file located on the server. On Windows 7 the > file is not found. > The same problem with > file_reader = New System.IO.StreamReader(strSourse & "\InitialData.txt") > where strSource is the string containing the path to the file on the > server. > > Any advice please. > > Thank you > vovan More than likely you are seeing folder virtualization for the first time. It did not exist in XP. Where is strSourse pointing? -- Mike
From: "Mr. Arnold" MR. on 30 Oct 2009 21:17 "vovan" <vcha(a)hotmail.com> wrote in message news:9B6BB817-8023-4420-B47B-3A4675044A1F(a)microsoft.com... > My VB 2008 application uses System.IO.File.Exists method. On XP there is > no problem with accessing file located on the server. On Windows 7 the > file is not found. > The same problem with > file_reader = New System.IO.StreamReader(strSourse & "\InitialData.txt") > where strSource is the string containing the path to the file on the > server. > Unlike XP, Vista and Windows 7 are not going to allow file access to protected areas. Where is the file located? __________ Information from ESET NOD32 Antivirus, version of virus signature database 4559 (20091030) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com
From: vovan on 31 Oct 2009 08:08 The file located on the server. Its location is something like "\\192.168.45.13\CoordData\InitialData.txt" You say Windows 7 are not going to allow file access to protected area. How do I unprotect that area or get permission to access the file? Thank you vovan "Mr. Arnold" <MR. Arnold(a)Arnold.com> wrote in message news:O6nMhfcWKHA.1792(a)TK2MSFTNGP04.phx.gbl... > > "vovan" <vcha(a)hotmail.com> wrote in message > news:9B6BB817-8023-4420-B47B-3A4675044A1F(a)microsoft.com... >> My VB 2008 application uses System.IO.File.Exists method. On XP there is >> no problem with accessing file located on the server. On Windows 7 the >> file is not found. >> The same problem with >> file_reader = New System.IO.StreamReader(strSourse & "\InitialData.txt") >> where strSource is the string containing the path to the file on the >> server. >> > > Unlike XP, Vista and Windows 7 are not going to allow file access to > protected areas. > > Where is the file located? > > __________ Information from ESET NOD32 Antivirus, version of virus > signature database 4559 (20091030) __________ > > The message was checked by ESET NOD32 Antivirus. > > http://www.eset.com > > >
From: vovan on 31 Oct 2009 08:11 What does it mean "folder virtualization"? The file exists in reality on the server in the location "\\192.168.45.13\CoordData\InitialData.txt" My program sees it and can read when it is running on XP. I can see the file via Windows Explorer as well on both Windows XP and Windows 7. Thank you vovan "Family Tree Mike" <FamilyTreeMike(a)ThisOldHouse.com> wrote in message news:eWAO3OcWKHA.3404(a)TK2MSFTNGP05.phx.gbl... > vovan wrote: >> My VB 2008 application uses System.IO.File.Exists method. On XP there is >> no problem with accessing file located on the server. On Windows 7 the >> file is not found. >> The same problem with >> file_reader = New System.IO.StreamReader(strSourse & "\InitialData.txt") >> where strSource is the string containing the path to the file on the >> server. >> >> Any advice please. >> >> Thank you >> vovan > > More than likely you are seeing folder virtualization for the first time. > It did not exist in XP. Where is strSourse pointing? > > -- > Mike
|
Next
|
Last
Pages: 1 2 3 Prev: Speed issue creating Excel spreadsheet Next: How can I read selected text in another application, by vb program? |