Click here to Skip to main content
15,886,017 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi ,
I am developing a Windows Mobile app that has a page where user sends some Data to server. The thing is.. ! Application Works Perfectly Fine in Enumerator and also when i m debugging it in my mobile using Visual Studio using a Cable wire Connected.. but when i use the app in phone without any wire or something else app is crashing at a specific Navigating Button .. if i debugg with a wire checking with VS it works fine !!! my colleague says i haven't seen suck king of thing so far and this is not a memory allocation issue because the app is not closing after the Page load ..
how can i solve this .. Any Kinda Suggestions Appreciated
Posted
Updated 19-Mar-15 0:25am
v2
Comments
Joan Magnet 19-Mar-15 7:09am    
Show the piece of code that throws the error.
Aditya_Goud 19-Mar-15 8:42am    
there is no code that throws error.. everything works fine in emulator and when debugged on mobile with a cable wire .. !
it sucks only when the installed app is used on mobile ..
Aditya_Goud 30-Mar-15 2:16am    
public void lpChannels_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
try
{

Recipients selectedItem = (sender as ListPicker).SelectedItem as Recipients;

strSelectedRecipientId = string.Empty;
strSelectedRecipientId = selectedItem.RecipientID;


// check recipient id , if id is -1 disable sub channels list
if (strSelectedRecipientId != "-1")
{
lpSubChannels.IsEnabled = true;
}
else if (strSelectedRecipientId == "-1")
{
lpSubChannels.IsEnabled = false;
}

ShowProgressBar();
tbProgressText.Text = "Please wait..., getting information";
callClentAdminService(strSelectedRecipientId);

}
catch (Exception)
{

}
Aditya_Goud 30-Mar-15 2:17am    
the app crashes at
strSelectedRecipientId = selectedItem.RecipientID;
Joan Magnet 19-Mar-15 10:06am    
Maybe you should use another Dispatcher.

https://msdn.microsoft.com/en-us/library/cc190259%28v=vs.95%29.aspx

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900