Click here to Skip to main content
15,885,278 members
Home / Discussions / Mobile
   

Mobile

 
QuestionHow to realize fast indexed searching in bible on mobile device? Pin
hollywood1234511-Jan-07 10:07
hollywood1234511-Jan-07 10:07 
Generalvirtual class Pin
Sinha1211-Jan-07 0:33
Sinha1211-Jan-07 0:33 
Questionmultiple inheritance Pin
Sinha1211-Jan-07 0:30
Sinha1211-Jan-07 0:30 
Generalwhich latest language is used Pin
Sinha1211-Jan-07 0:29
Sinha1211-Jan-07 0:29 
QuestionPocket PC Text To Speech Pin
Ryzhiy9-Jan-07 22:41
Ryzhiy9-Jan-07 22:41 
QuestionHow to load a dll to a fix addr in windows mobile? Pin
lockingTim9-Jan-07 22:16
lockingTim9-Jan-07 22:16 
AnswerRe: How to load a dll to a fix addr in windows mobile? Pin
Mike Dimmick16-Jan-07 0:05
Mike Dimmick16-Jan-07 0:05 
QuestionRemote to Mobile Pin
Tyler459-Jan-07 5:01
Tyler459-Jan-07 5:01 
AnswerRe: Remote to Mobile Pin
Tyler459-Jan-07 6:05
Tyler459-Jan-07 6:05 
QuestionDo not allow forms to move Pin
Ashvin Gunga8-Jan-07 20:51
Ashvin Gunga8-Jan-07 20:51 
AnswerRe: Do not allow forms to move Pin
Ashvin Gunga20-Feb-07 19:20
Ashvin Gunga20-Feb-07 19:20 
QuestionHow to read RAM information of smart or PDA device in C# Pin
02122538-Jan-07 16:35
02122538-Jan-07 16:35 
QuestionHow to remove the 'New' menu item from my PocketPC app? Pin
prcarp8-Jan-07 3:25
prcarp8-Jan-07 3:25 
AnswerRe: How to remove the 'New' menu item from my PocketPC app? Pin
prcarp8-Jan-07 4:21
prcarp8-Jan-07 4:21 
I found an answer and so I am posting the result here in case anyone else wants to do this....

First, this article was a big help:
http://channel9.msdn.com/wiki/default.aspx/MobileDeveloper.Menu[^]

So what I did was remove all instances of the CCommandBar (m_wndCommandBar) from the CMainFrame class that VS2005 automatically put in. In the CMainFrame::OnCreate() method, after the m_wndView.Init(), I added:

	SHMENUBARINFO mbi;<br />
	memset(&mbi, 0, sizeof(SHMENUBARINFO));<br />
	mbi.cbSize     = sizeof(SHMENUBARINFO);<br />
	mbi.dwFlags = SHCMBF_HMENU;<br />
	mbi.hwndParent = m_hWnd;<br />
	mbi.nToolBarId = IDR_MAINFRAME;<br />
	mbi.hInstRes   = theApp.m_hInstance;<br />
<br />
	SHCreateMenuBar(&mbi);


This had the added benefit of allowing me to rename the main menu item (popup) as well.

I am not sure of all the ramifications (portability, button access, etc.) but it seems to work fine for my PocketPC use.
QuestionIIS and .NET framework integration Pin
nilesh00741-Jan-07 23:35
nilesh00741-Jan-07 23:35 
QuestionNeed help and sample symbian C++ source code for navigation application for symbian S60 platform Pin
Member 19554781-Jan-07 4:56
Member 19554781-Jan-07 4:56 
QuestionSMS Problem Pin
nams511430-Dec-06 10:37
nams511430-Dec-06 10:37 
QuestionHow I add referense to? Pin
Agbaria Ahmad28-Dec-06 4:30
Agbaria Ahmad28-Dec-06 4:30 
AnswerRe: How I add referense to? Pin
PavanPareta10-Jan-07 19:31
PavanPareta10-Jan-07 19:31 
Questioninstall multiple cab files Pin
saud_a_k28-Dec-06 0:13
saud_a_k28-Dec-06 0:13 
QuestionBluetooth Programming with c# Pin
ozkan1327-Dec-06 12:44
ozkan1327-Dec-06 12:44 
QuestionIP configuration for mobile devices Pin
PDASensei26-Dec-06 4:56
PDASensei26-Dec-06 4:56 
QuestionSending sms using nokia 3100 or 3105 Pin
namrtihdsdsedwde23-Dec-06 7:14
namrtihdsdsedwde23-Dec-06 7:14 
AnswerRe: Sending sms using nokia 3100 or 3105 Pin
Atul238-Jan-07 22:41
Atul238-Jan-07 22:41 
QuestionIHTMLDocument in Windows Mobile 2005 C++ Pin
ilya_margoulis23-Dec-06 2:01
ilya_margoulis23-Dec-06 2:01 

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.