|
-
Dec 30th, 2007, 02:41 PM
#1
Thread Starter
New Member
Dialup Access of Text file in PocketPC
Hi,
how can i access a text file on my PC to a PocketPC through dialup ?
-
Dec 30th, 2007, 02:57 PM
#2
Re: Dialup Access of Text file in PocketPC
Welcome to the forum!
There is a mobile area on the forum here - maybe a MOD can move this thread...
How is the PPC connected - via it's docking station?
What kind of PPC?
-
Dec 30th, 2007, 03:06 PM
#3
Thread Starter
New Member
Re: Dialup Access of Text file in PocketPC
I am using an iMate mobile with Windows Mobile 2003 installed
thanks
-
Dec 30th, 2007, 04:46 PM
#4
Re: Dialup Access of Text file in PocketPC
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum. 
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it! 
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6 
-
Dec 31st, 2007, 10:16 AM
#5
Frenzied Member
Re: Dialup Access of Text file in PocketPC
Hi,
how are you connected to the PC from the pocketpc? Do you want to read the file on the PC, or copy it to the PPC?
You can use FTP or RAPI, or even a shared folder, if you are connected via a cradle.
-
Dec 31st, 2007, 02:18 PM
#6
Thread Starter
New Member
Re: Dialup Access of Text file in PocketPC
The PC is in a remote Location and i want to connect it through a dial-up connection (Telephone line) to read the text file located in PC. Is it possible ?
-
Jan 1st, 2008, 10:55 AM
#7
Frenzied Member
Re: Dialup Access of Text file in PocketPC
You can access shared folder by using uri like "\\xxx.xxx.xxx.xxx\My_Shared_Folder\".
So, provided you are connected to the network on the PC, try
Code:
Dim sr As System.IO.StreamReader
Try
sr = New System.IO.StreamReader("\\acerduo\acershared\test.txt")
Catch ex As Exception
MessageBox.Show(ex.ToString)
End Try
Dim fileContents As String
fileContents = sr.ReadToEnd
sr.Close()
MessageBox.Show(fileContents)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|