Click here to Skip to main content
16,006,432 members
Home / Discussions / Mobile
   

Mobile

 
GeneralRe: Error installing WinCE SDK Pin
Elbie12-Jan-04 3:36
Elbie12-Jan-04 3:36 
GeneralPalm Devices Pin
hxxbin8-Jan-04 8:31
hxxbin8-Jan-04 8:31 
GeneralRe: Palm Devices Pin
Ian Darling9-Jan-04 0:58
Ian Darling9-Jan-04 0:58 
GeneralRe: Palm Devices Pin
kaangonel10-Jan-04 11:21
kaangonel10-Jan-04 11:21 
GeneralSIP on PropertyPage disapear! Pin
VOlivier8-Jan-04 0:10
VOlivier8-Jan-04 0:10 
GeneralRe: SIP on PropertyPage disapear! Pin
#realJSOP8-Jan-04 5:07
professional#realJSOP8-Jan-04 5:07 
GeneralRe: SIP on PropertyPage disapear! Pin
VOlivier8-Jan-04 5:53
VOlivier8-Jan-04 5:53 
GeneralRe: SIP on PropertyPage disapear! Pin
cmk9-Jan-04 21:09
cmk9-Jan-04 21:09 
Instead of moving the SIP window I think the suggested method is to use SipShowIM or SipSetInfo.

#include "sipapi.h"

bool  FkGetSipVisible( void )
{
	SIPINFO  si;
	memset(&si, 0, sizeof(si));
	si.cbSize = sizeof(si);

	if( !::SipGetInfo(&si) )  return(false);

	return( si.fdwFlags & SIPF_ON );
}

bool  FkSetSipVisible( bool V )
{
	DWORD  v = V ? SIPF_ON : SIPF_OFF;
	return( ::SipShowIM(v) == TRUE );
	// You could also use SipSetInfo()
}

I then call these in OnSetfocus*() and OnKillfocus*() methods for any edit control.
(The OnLButtonDown() allows me to dismiss the SIP by tapping anywhere on the disalog/page outside an edit cotrol.)
e.g.
void CkPgEditInfo::OnLButtonDown(UINT nFlags, CPoint point) 
{
	CPropertyPage::OnLButtonDown(nFlags, point);
	FkSetSipVisible(false);
	SetFocus();
}

void CkPgEditInfo::OnSetfocusEdit  ()  { FkSetSipVisible(true);  }
void CkPgEditInfo::OnKillfocusEdit ()  { FkSetSipVisible(false); }



...cmk

Rosencrantz: I don't believe in it anyway.
Guildenstern: What
Rosencrantz: England
Guildenstern: Just a conspiracy of cartographers then.

Save the whales - collect the whole set

GeneralIt is possible to save a drawing? (.Net) Pin
Nick Seng8-Jan-04 0:05
Nick Seng8-Jan-04 0:05 
GeneralThis is not a programming question Pin
Nick Seng7-Jan-04 21:49
Nick Seng7-Jan-04 21:49 
GeneralRe: This is not a programming question Pin
João Paulo Figueira7-Jan-04 22:20
professionalJoão Paulo Figueira7-Jan-04 22:20 
GeneralRe: This is not a programming question Pin
Nick Seng7-Jan-04 22:34
Nick Seng7-Jan-04 22:34 
GeneralRe: This is not a programming question Pin
João Paulo Figueira7-Jan-04 22:54
professionalJoão Paulo Figueira7-Jan-04 22:54 
GeneralRe: This is not a programming question Pin
Nick Seng8-Jan-04 0:03
Nick Seng8-Jan-04 0:03 
GeneralDetect Bluetooth device Pin
Cedric Moonen7-Jan-04 4:41
Cedric Moonen7-Jan-04 4:41 
Generalcreate login page in WinCE Pin
psyclope6-Jan-04 22:35
psyclope6-Jan-04 22:35 
GeneralTruly Weird Pin
#realJSOP6-Jan-04 5:59
professional#realJSOP6-Jan-04 5:59 
GeneralRe: Truly Weird Pin
João Paulo Figueira6-Jan-04 6:36
professionalJoão Paulo Figueira6-Jan-04 6:36 
GeneralRe: Truly Weird Pin
#realJSOP6-Jan-04 6:39
professional#realJSOP6-Jan-04 6:39 
GeneralRe: Truly Weird Pin
João Paulo Figueira6-Jan-04 6:48
professionalJoão Paulo Figueira6-Jan-04 6:48 
GeneralRe: Truly Weird Pin
#realJSOP7-Jan-04 4:27
professional#realJSOP7-Jan-04 4:27 
GeneralVoice call using phone Pin
misha_grewal6-Jan-04 1:21
misha_grewal6-Jan-04 1:21 
GeneralRe: Voice call using phone Pin
João Paulo Figueira6-Jan-04 2:57
professionalJoão Paulo Figueira6-Jan-04 2:57 
GeneralRe: Voice call using phone Pin
João Paulo Figueira6-Jan-04 3:01
professionalJoão Paulo Figueira6-Jan-04 3:01 
GeneralRe: Voice call using phone Pin
misha_grewal7-Jan-04 20:27
misha_grewal7-Jan-04 20:27 

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.