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

Mobile

 
Questionhow to get the UUID (GUID) of a PDA Pin
dherrero7-Mar-03 2:09
dherrero7-Mar-03 2:09 
AnswerRe: how to get the UUID (GUID) of a PDA Pin
João Paulo Figueira7-Mar-03 3:32
professionalJoão Paulo Figueira7-Mar-03 3:32 
GeneralRe: how to get the UUID (GUID) of a PDA Pin
dherrero7-Mar-03 6:15
dherrero7-Mar-03 6:15 
Generalserial communication and bluetooth (how to communicate between PDA and mobile?) Pin
Frank S.6-Mar-03 5:14
Frank S.6-Mar-03 5:14 
General"Button-bar" like in the CE-Addressbook Pin
Frank S.6-Mar-03 4:31
Frank S.6-Mar-03 4:31 
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 
Right. Do this:
In your CChildWnd, declare the following:
protected:
    	CLetterStrip	m_wndStrip;

In the OnCreate handler, create the window. To place it on the top, just like the image on the article, use the following:
DWORD dwStyle = WS_CHILD | WS_VISIBLE;
m_wndStrip.Create(dwStyle, CPoint(0, 0), this, ID_LETTERSTRIP);

To handle the letter commands, use the following message map:
BEGIN_MESSAGE_MAP(CChildView, CWnd))
	//{{AFX_MSG_MAP(CWordList)
	...
	ON_COMMAND(ID_LETTERSTRIP, OnLetterStrip)
	...
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

In the OnLetterStrip method, use m_wndStrip.GetOption() to retrieve the selected letter. Note that the letter strip is created as a child window, not as a toolbar.
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 
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 

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.