Click here to Skip to main content
16,016,760 members
Home / Discussions / Mobile
   

Mobile

 
GeneralRe: "Button-bar" like in the CE-Addressbook Pin
João Paulo Figueira6-Mar-03 4:41
professionalJoão Paulo Figueira6-Mar-03 4:41 
GeneralRe: "Button-bar" like in the CE-Addressbook Pin
Frank S.6-Mar-03 5:04
Frank S.6-Mar-03 5:04 
GeneralRe: "Button-bar" like in the CE-Addressbook Pin
João Paulo Figueira6-Mar-03 5:37
professionalJoão Paulo Figueira6-Mar-03 5:37 
GeneralWinCE.NET driver development Pin
Mike Zinni6-Mar-03 3:43
Mike Zinni6-Mar-03 3:43 
GeneralPull/Push data using either OracleLlite(Wireless Technology Edition) or SQL Server CE Pin
AKSIVAKUMAR4-Mar-03 18:45
AKSIVAKUMAR4-Mar-03 18:45 
GeneralRe: Pull/Push data using either OracleLlite(Wireless Technology Edition) or SQL Server CE Pin
João Paulo Figueira5-Mar-03 5:36
professionalJoão Paulo Figueira5-Mar-03 5:36 
GeneralRe: Pull/Push data using either OracleLlite(Wireless Technology Edition) or SQL Server CE Pin
AKSIVAKUMAR5-Mar-03 20:24
AKSIVAKUMAR5-Mar-03 20:24 
GeneralRe: Pull/Push data using either OracleLlite(Wireless Technology Edition) or SQL Server CE Pin
João Paulo Figueira5-Mar-03 23:14
professionalJoão Paulo Figueira5-Mar-03 23:14 
Siva,
You don't send anything explicitly through RAS. Instead, you use RAS to set up a TCP/IP connection over which your data packects will be sent and received. Think of RAS as connecting your PDA to a TCP/IP network. When your RAS connection is active, you can use HTTP, FTP or other protocol to exchange data. Handling RAS itself is not very complex, and involves the use of the RAS* APIs and the WM_RASDIALEVENT message. This message is used as a notifier to a specific window to help monitor RAS dialing events. If you are using MFC, handle it like this:
LRESULT CDlgRas::WindowProc(UINT message, WPARAM wParam, LPARAM lParam) 
{
	//
	// Special check for WM_RASDIALEVENT message
	//
	if(message == WM_RASDIALEVENT)
	{
		return OnRasDialEvent(wParam, lParam);
	}
	return CDialog::WindowProc(message, wParam, lParam);
}

Here is an outline of the sequence to dial through a RAS connection:
RasEnumConnections checks if there are any open RAS connections (you can only have one). If there is a connection open, check if it is the one you want with RasGetConnectStatus. To open the RAS connection, use RasGetDialParams, followed by RasDial. In this API, use the window that will receive the WM_RASDIALEVENT messages. To close the RAS connection, use RasHangUp.
If you want to read some serious discussion on how RAS works under Windows CE 3.0, read "Windows CE 3.0 Application Programming" by Nick Grattan and Marshall Brain, from Prentice Hall.
Good luck!
GeneralMultiple Toolbars Pin
#realJSOP4-Mar-03 10:49
professional#realJSOP4-Mar-03 10:49 
GeneralRe: Multiple Toolbars Pin
João Paulo Figueira4-Mar-03 12:03
professionalJoão Paulo Figueira4-Mar-03 12:03 
GeneralRe: Multiple Toolbars Pin
#realJSOP5-Mar-03 5:42
professional#realJSOP5-Mar-03 5:42 
GeneralRe: Multiple Toolbars Pin
João Paulo Figueira5-Mar-03 6:21
professionalJoão Paulo Figueira5-Mar-03 6:21 
GeneralRe: Multiple Toolbars Pin
#realJSOP14-Mar-03 5:29
professional#realJSOP14-Mar-03 5:29 
GeneralRe: Multiple Toolbars Pin
João Paulo Figueira14-Mar-03 11:14
professionalJoão Paulo Figueira14-Mar-03 11:14 
GeneralRe: Multiple Toolbars Pin
João Paulo Figueira14-Mar-03 11:45
professionalJoão Paulo Figueira14-Mar-03 11:45 
GeneralRe: Multiple Toolbars Pin
João Paulo Figueira17-Mar-03 3:10
professionalJoão Paulo Figueira17-Mar-03 3:10 
GeneralRe: Multiple Toolbars Pin
#realJSOP17-Mar-03 5:22
professional#realJSOP17-Mar-03 5:22 
GeneralRe: Multiple Toolbars Pin
#realJSOP17-Mar-03 6:04
professional#realJSOP17-Mar-03 6:04 
GeneralRe: Multiple Toolbars Pin
João Paulo Figueira17-Mar-03 6:21
professionalJoão Paulo Figueira17-Mar-03 6:21 
GeneralRemoving Annunciators from Taskbar Pin
#realJSOP3-Mar-03 5:16
professional#realJSOP3-Mar-03 5:16 
GeneralRe: Removing Annunciators from Taskbar Pin
João Paulo Figueira3-Mar-03 5:59
professionalJoão Paulo Figueira3-Mar-03 5:59 
GeneralRe: Removing Annunciators from Taskbar Pin
AKSIVAKUMAR3-Mar-03 22:26
AKSIVAKUMAR3-Mar-03 22:26 
GeneralRe: Removing Annunciators from Taskbar Pin
#realJSOP4-Mar-03 4:59
professional#realJSOP4-Mar-03 4:59 
GeneralRe: Removing Annunciators from Taskbar Pin
João Paulo Figueira4-Mar-03 5:11
professionalJoão Paulo Figueira4-Mar-03 5:11 
GeneralRe: Removing Annunciators from Taskbar Pin
#realJSOP12-Mar-03 5:54
professional#realJSOP12-Mar-03 5:54 

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.