Click here to Skip to main content
15,904,024 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow does CListCtrl Arrange work? Pin
Anonymous30-Mar-04 19:49
Anonymous30-Mar-04 19:49 
AnswerRe: How does CListCtrl Arrange work? Pin
Anonymous31-Mar-04 16:31
Anonymous31-Mar-04 16:31 
Generalabout sockets Pin
amir_iiui30-Mar-04 19:21
amir_iiui30-Mar-04 19:21 
GeneralRe: about sockets Pin
22491730-Mar-04 19:31
22491730-Mar-04 19:31 
GeneralOnOK() Pin
ykg888@yahoo.com30-Mar-04 18:55
sussykg888@yahoo.com30-Mar-04 18:55 
GeneralRe: OnOK() Pin
Prakash Nadar30-Mar-04 20:26
Prakash Nadar30-Mar-04 20:26 
GeneralRe: OnOK() Pin
David Crow31-Mar-04 2:37
David Crow31-Mar-04 2:37 
GeneralTAPI related Pin
Ahmed Jahanzeb30-Mar-04 17:58
sussAhmed Jahanzeb30-Mar-04 17:58 
I am Working on TAPI 2.0 and I develop a Software like Predictive Dialer IN Visual C++ 6 and
Facing Some Problems.

Problem 1: Problem is that I want to Detect Any Tone e.g(Fax Tone, Ringing Tone, Busy Tone.....)
Problem 2: My program also skip few Events (Ringning, Accepted).

I Used these Steps

Line Initialize:
----------------
	 lparams = new LINEINITIALIZEEXPARAMS;
	 lparams->dwOptions =LINEINITIALIZEEXOPTION_USEHIDDENWINDOW;
	 lparams->dwTotalSize = sizeof (LINEINITIALIZEEXPARAMS);
	 lparams->dwNeededSize =  sizeof (LINEINITIALIZEEXPARAMS)*2;
	 lparams->Handles.hEvent = MyCallBack;

1>lineInitializeEx(&hLineApp,hcurr,MyCallBack,szAppName,&no,&ApiVersion,lparams)
	.....(Few Line of Code)

2>lineOpen(hLineApp,dwDeviceID,&hLine, ApiVersion,0, (DWORD)MyCallBack,
	  LINECALLPRIVILEGE_MONITOR,LINEMEDIAMODE_INTERACTIVEVOICE  , 0)
	......(Few Line of Code)

Select Device
------------- 
       lineGetDevCaps(hLineApp,i,dwAPIVersion,0,lpLineDevCaps)
	.....(Few Line of Code)

Dial Number
-----------
	lineMakeCall(hLine,&lphCall,lpsz ,0,NULL);

On Event Line_Reply
-------------------
	lineSetCallPrivilege(*lphCall,LINECALLPRIVILEGE_MONITOR);

On Event LINECALLSTATE_CONNECTED
--------------------------------
	LINEMONITORTONE LineTone[10]; 

	LineTone[0].dwAppSpecific		= CallBackInst; 
	LineTone[0].dwDuration			= 750;
	LineTone[0].dwFrequency1		= 400;
	......(Few Line of Code)

	lineMonitorTones(lphCall,LineTone,0);


I Use MODEM
       Maze InterNal 56k Fax Modem ITU-T V.92/90

GeneralRe: TAPI related Pin
Michael P Butler30-Mar-04 21:59
Michael P Butler30-Mar-04 21:59 
GeneralRe: TAPI related Pin
Filomela5-May-04 5:18
Filomela5-May-04 5:18 
GeneralInteresting problems Pin
FlyingDancer30-Mar-04 15:08
FlyingDancer30-Mar-04 15:08 
GeneralRe: Interesting problems Pin
Maxwell Chen30-Mar-04 16:24
Maxwell Chen30-Mar-04 16:24 
GeneralRe: Interesting problems Pin
FlyingDancer30-Mar-04 18:45
FlyingDancer30-Mar-04 18:45 
GeneralRe: Interesting problems Pin
ohadp30-Mar-04 19:16
ohadp30-Mar-04 19:16 
GeneralRe: Interesting problems Pin
FlyingDancer30-Mar-04 21:39
FlyingDancer30-Mar-04 21:39 
GeneralRe: Interesting problems Pin
Maxwell Chen30-Mar-04 22:20
Maxwell Chen30-Mar-04 22:20 
GeneralRe: Interesting problems Pin
Paul Ranson31-Mar-04 1:57
Paul Ranson31-Mar-04 1:57 
GeneralRe: Interesting problems Pin
FlyingDancer31-Mar-04 13:30
FlyingDancer31-Mar-04 13:30 
GeneralC to Visual C++.Net Pin
gyrogearloose30-Mar-04 15:04
gyrogearloose30-Mar-04 15:04 
GeneralRe: C to Visual C++.Net Pin
Christian Graus30-Mar-04 15:14
protectorChristian Graus30-Mar-04 15:14 
GeneralRe: C to Visual C++.Net Pin
Maxwell Chen30-Mar-04 15:37
Maxwell Chen30-Mar-04 15:37 
GeneralRe: C to Visual C++.Net Pin
Christian Graus30-Mar-04 15:38
protectorChristian Graus30-Mar-04 15:38 
GeneralRe: C to Visual C++.Net Pin
Maxwell Chen30-Mar-04 15:46
Maxwell Chen30-Mar-04 15:46 
GeneralRe: C to Visual C++.Net Pin
gyrogearloose31-Mar-04 13:23
gyrogearloose31-Mar-04 13:23 
GeneralRe: C to Visual C++.Net Pin
gyrogearloose31-Mar-04 14:03
gyrogearloose31-Mar-04 14:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.