Click here to Skip to main content
15,917,793 members
Home / Discussions / Mobile
   

Mobile

 
QuestionReceiving error after adding InputPanel in Smart Device Application.. [modified] Pin
yrishi9-Feb-09 18:58
yrishi9-Feb-09 18:58 
QuestionTrilemma Pin
rastaVnuce8-Feb-09 8:56
rastaVnuce8-Feb-09 8:56 
QuestionHow to Rename a registry keyname using RAPI Pin
Frank.Zhu7-Feb-09 21:48
Frank.Zhu7-Feb-09 21:48 
Questionmobile video conference Pin
milapjp7-Feb-09 20:30
milapjp7-Feb-09 20:30 
QuestionFile transfer from Windows mobile application to Desktop machine Pin
Member 29344947-Feb-09 1:29
Member 29344947-Feb-09 1:29 
AnswerRe: File transfer from Windows mobile application to Desktop machine Pin
Joel Ivory Johnson8-Feb-09 7:54
professionalJoel Ivory Johnson8-Feb-09 7:54 
Question"Keybord" hide my form... Pin
Ola E5-Feb-09 23:27
Ola E5-Feb-09 23:27 
AnswerRe: "Keybord" hide my form... Pin
Ola E6-Feb-09 2:10
Ola E6-Feb-09 2:10 
I anage to find out how to do this...

open the form like this:
frm_ManualRotary frm = new frm_ManualRotary();
frm.Dock = DockStyle.None;
frm.FormBorderStyle = FormBorderStyle.None;
frm.AutoScroll = true;
frm.ShowDialog();

in Load form event I handling the folowing events: textBox1.LostFocus += new EventHandler(textBox1_LostFocus);
SIP.EnabledChanged += new EventHandler(SIP_EnabledChanged);

And finaly the event handlers
void SIP_EnabledChanged(object sender, EventArgs e)
{
if (SIP.Enabled)
this.Height = 268 - SIP.Bounds.Height; //268 = Total height of my screen.
else
this.Height = 268;
}


void textBox1_LostFocus(object sender, EventArgs e)
{
//When leaving text box hide SIP
SIP.Enabled = false;
}

void textBox1_GotFocus(object sender, EventArgs e)
{
//When entering text box, show SIP and autoscroll so textbox is above SIP.
SIP.Enabled = true;
this.AutoScrollPosition = new Point (Math.Abs(this.AutoScrollPosition.X), textBox1.Top + textBox1.Height);
}
QuestionNeed to display battery status in smart device application [modified] Pin
yrishi3-Feb-09 23:37
yrishi3-Feb-09 23:37 
AnswerRe: Need to display battery status in smart device application Pin
Rupesh Kumar Swami4-Feb-09 0:45
Rupesh Kumar Swami4-Feb-09 0:45 
GeneralRe: Need to display battery status in smart device application Pin
yrishi8-Feb-09 18:05
yrishi8-Feb-09 18:05 
GeneralRe: Need to display battery status in smart device application Pin
Rupesh Kumar Swami8-Feb-09 20:16
Rupesh Kumar Swami8-Feb-09 20:16 
GeneralRe: Need to display battery status in smart device application Pin
yrishi8-Feb-09 21:33
yrishi8-Feb-09 21:33 
GeneralRe: Need to display battery status in smart device application Pin
Rupesh Kumar Swami8-Feb-09 21:37
Rupesh Kumar Swami8-Feb-09 21:37 
GeneralRe: Need to display battery status in smart device application Pin
yrishi8-Feb-09 22:07
yrishi8-Feb-09 22:07 
QuestionAlign colum data Pin
lavleon3-Feb-09 11:00
lavleon3-Feb-09 11:00 
QuestionNew to Mobile Applications Using C#.net Pin
don dre2-Feb-09 5:09
don dre2-Feb-09 5:09 
AnswerRe: New to Mobile Applications Using C#.net PinPopular
Joel Ivory Johnson2-Feb-09 6:06
professionalJoel Ivory Johnson2-Feb-09 6:06 
QuestionPushing the video stream to the Server Pin
Harshil_Gunchala1-Feb-09 17:07
Harshil_Gunchala1-Feb-09 17:07 
QuestionUniversal Remote Control for PDA Pin
gauravxxx1-Feb-09 4:00
gauravxxx1-Feb-09 4:00 
AnswerRe: Universal Remote Control for PDA Pin
Joel Ivory Johnson2-Feb-09 6:03
professionalJoel Ivory Johnson2-Feb-09 6:03 
GeneralRe: Universal Remote Control for PDA Pin
gauravxxx2-Feb-09 15:59
gauravxxx2-Feb-09 15:59 
QuestionERROR Pin
milapjp30-Jan-09 19:24
milapjp30-Jan-09 19:24 
AnswerRe: ERROR Pin
zahedonline1-Feb-09 3:42
zahedonline1-Feb-09 3:42 
GeneralRe: ERROR Pin
milapjp1-Feb-09 17:48
milapjp1-Feb-09 17:48 

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.