Results 1 to 7 of 7

Thread: Dialup Access of Text file in PocketPC

  1. #1

    Thread Starter
    New Member
    Join Date
    Dec 2007
    Posts
    3

    Dialup Access of Text file in PocketPC

    Hi,
    how can i access a text file on my PC to a PocketPC through dialup ?

  2. #2
    MS SQL Powerposter szlamany's Avatar
    Join Date
    Mar 2004
    Location
    Connecticut
    Posts
    18,263

    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?

    *** Read the sticky in the DB forum about how to get your question answered quickly!! ***

    Please remember to rate posts! Rate any post you find helpful - even in old threads! Use the link to the left - "Rate this Post".

    Some Informative Links:
    [ SQL Rules to Live By ] [ Reserved SQL keywords ] [ When to use INDEX HINTS! ] [ Passing Multi-item Parameters to STORED PROCEDURES ]
    [ Solution to non-domain Windows Authentication ] [ Crazy things we do to shrink log files ] [ SQL 2005 Features ] [ Loading Pictures from DB ]

    MS MVP 2006, 2007, 2008

  3. #3

    Thread Starter
    New Member
    Join Date
    Dec 2007
    Posts
    3

    Re: Dialup Access of Text file in PocketPC

    I am using an iMate mobile with Windows Mobile 2003 installed

    thanks

  4. #4
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Dialup Access of Text file in PocketPC

    Thread Moved
    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 PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI 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

  5. #5
    Frenzied Member
    Join Date
    Oct 2005
    Posts
    1,286

    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.
    Pete Vickers
    MVP - Device Application Development
    http://www.gui-innovations.com http://mobileworld.appamundi.com/blogs/

  6. #6

    Thread Starter
    New Member
    Join Date
    Dec 2007
    Posts
    3

    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 ?

  7. #7
    Frenzied Member
    Join Date
    Oct 2005
    Posts
    1,286

    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)
    Pete Vickers
    MVP - Device Application Development
    http://www.gui-innovations.com http://mobileworld.appamundi.com/blogs/

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width