Calling Card application using C# .ne for PocketPC

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • JayaseelanVaiyapuri
    New Member
    • Jul 2008
    • 16

    Calling Card application using C# .ne for PocketPC

    Hi to all,

    In PocketPC sdk 5.0, there is a sample application called Callingcard.

    Which is developed usinf Win32 C++ and the output was dll.

    Now i would like to develop the same app in C# .net for PocketPC.

    How to do it?

    All the ideas and suggestions are welcome?

    Waiting for reply ASAP..
  • RedSon
    Recognized Expert Expert
    • Jan 2007
    • 4980

    #2
    The source is available in the samples directory. Just open up the project and port it to c#... it shouldn't be that difficult.

    Comment

    • JayaseelanVaiyapuri
      New Member
      • Jul 2008
      • 16

      #3
      Hi,

      Can you please explain how to port the CallingCard Win32 dll application into C# coding..

      Its very urgent and am new to this..

      Waiting for your reply soon...

      Thanks in advance..

      Comment

      • markmcgookin
        Recognized Expert Contributor
        • Dec 2006
        • 648

        #4
        Originally posted by JayaseelanVaiya puri
        Hi,

        Can you please explain how to port the CallingCard Win32 dll application into C# coding..

        Its very urgent and am new to this..

        Waiting for your reply soon...

        Thanks in advance..
        Please do not double post. Your other post has been removed. If you are having trouble with a problem, try to solve it then come here for some advice with your code.

        Comment

        • RedSon
          Recognized Expert Expert
          • Jan 2007
          • 4980

          #5
          Originally posted by JayaseelanVaiya puri
          Hi,

          Can you please explain how to port the CallingCard Win32 dll application into C# coding..

          Its very urgent and am new to this..

          Waiting for your reply soon...

          Thanks in advance..
          You look at the Win32 code and you try to find the equivalent code in C#. For example when you see printf() you can use String.Format() . You will need to use the MSDN documentation.

          Comment

          Working...