0

I need to add new items to my application for sending files through phone line with no internet only simple modem.

My main language is C#.

Please help me, I'm stuck with this project for two weeks.

My Application is simple system management and my client want this new item in the new version to send image,worksheet... ext. I make this simple, i say to you the same way they asked me! We want send and receive files in phone line, for example when we want to send data. we dial:+9825362307421 in you application and Files should be send to another PC have this phone number (modem attach to this phone line (DSL or Dial Up))

Milad
  • 719
  • 1
  • 10
  • 28
  • What did you try yet? Did that include [the xmodem protocol](http://en.wikipedia.org/wiki/XMODEM) ? – Hennes Aug 30 '13 at 15:39
  • No, That's a problem,I do not anything about this kind of programming and search internet find nothing that why ask. Can you give me example or PDF,websites anything? – Milad Aug 30 '13 at 17:27
  • This might be helpful: http://stackoverflow.com/q/11157536/56778. – Jim Mischel Aug 30 '13 at 19:13
  • "*modem attach to this phone line (DSL or Dial Up)*" DSL can not "dial numbers", each end will need a regular old fashioned Dial Up modem. – Scott Chamberlain Aug 30 '13 at 19:16

2 Answers2

2

Here is a link to a TAPI tutorial: TAPI 3.0 Application development using C#.NET

Here is a sample application: Windows TAPI 3 in C#

JeremiahDotNet
  • 910
  • 4
  • 9
  • Thanks, I like to become expert in this kind of programming, Can you helping me by PDFs,Websites or anything you think can help me? – Milad Sep 04 '13 at 15:12
2

You need to do this via TAPI (Windows Telephony API). However the wrapper Visual Studio will create for you out of the box will not work. Your best option is 3rd party libraries or trying to figure out what Microsoft did in their example projects.

You may also want to look at this SO question and this question for further advice and links you could follow.

Community
  • 1
  • 1
Scott Chamberlain
  • 124,994
  • 33
  • 282
  • 431
  • Thanks, I like to become expert in this kind of programming, Can you helping me by PDFs,Websites or anything you think can help me? – Milad Sep 04 '13 at 15:15
  • I have never done TAPI myself, just the websites I linked in my answer is what I found via some quick googleing. – Scott Chamberlain Sep 04 '13 at 15:16