Click here to Skip to main content
15,902,938 members
Home / Discussions / Mobile
   

Mobile

 
AnswerRe: eVC++ 4 - userdraw list box question Pin
malk0lm23-Jan-09 12:53
malk0lm23-Jan-09 12:53 
Question(nhibernate problem ) how i can one talbe(database table ) step across to access other talbe Pin
chenli051320-Jan-09 1:35
chenli051320-Jan-09 1:35 
AnswerRe: (nhibernate problem ) how i can one talbe(database table ) step across to access other talbe Pin
malk0lm23-Jan-09 12:25
malk0lm23-Jan-09 12:25 
QuestionCreate an Excel sheet from compact framework Pin
Ola E20-Jan-09 1:15
Ola E20-Jan-09 1:15 
AnswerRe: Create an Excel sheet from compact framework Pin
Lance Milleson21-Jan-09 8:32
Lance Milleson21-Jan-09 8:32 
QuestionHow to switch to existing instance of program Pin
Gregg Church19-Jan-09 5:37
Gregg Church19-Jan-09 5:37 
AnswerRe: How to switch to existing instance of program Pin
Joel Ivory Johnson19-Jan-09 12:33
professionalJoel Ivory Johnson19-Jan-09 12:33 
QuestionHow to use BeginInvoke and Asynchronous Calls on XBOX 360 Pin
Walter Dias18-Jan-09 10:52
professionalWalter Dias18-Jan-09 10:52 
Hi.

I try to Run the fallow pice of code above on my xbox 360 and I get a Compact Framework error saying the XBOX 360 is not compatibily with Asynchronous Calls.

Probably my code has some kide of error because the xbox has the method Guide.BeginShowKeyboardInput and Guide.BeginShowStorageDeviceSelector who as Asynchronous.

What I'm doing wrong?


CODE:
------------------------------

using System;
using System.Threading;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Storage;

namespace GameTest
{
public class GameTestProgram : Game
{
private bool flag = false;
private event EventHandler AsyncEvent;

public GameTestProgram()
{
AsyncEvent += new EventHandler(GameTestProgram_douglas);
flag = true;
}

void GameTestProgram_douglas(object sender, EventArgs e)
{
throw new NotImplementedException("Finaly BeginInvoke Works");
}

protected override void Update(GameTime gameTime)
{
base.Update(gameTime);

if (flag)
if (AsyncEvent != null)
AsyncEvent.BeginInvoke(null, null, null, this);

flag = false;
}
}

static class Program
{
static void Main(string[] args)
{
using (GameTestProgram game = new GameTestProgram())
{
game.Run();
}
}
}
}

Thx for help
AnswerRe: How to use BeginInvoke and Asynchronous Calls on XBOX 360 Pin
Joel Ivory Johnson19-Jan-09 4:51
professionalJoel Ivory Johnson19-Jan-09 4:51 
QuestionSoftware Required To Develop Mobile Applications Using VB.net 2005 Pin
VikashGohil16-Jan-09 20:11
VikashGohil16-Jan-09 20:11 
AnswerRe: Software Required To Develop Mobile Applications Using VB.net 2005 Pin
Hurricane300017-Jan-09 4:45
Hurricane300017-Jan-09 4:45 
GeneralRe: Software Required To Develop Mobile Applications Using VB.net 2005 Pin
Joel Ivory Johnson17-Jan-09 6:58
professionalJoel Ivory Johnson17-Jan-09 6:58 
AnswerRe: Software Required To Develop Mobile Applications Using VB.net 2005 Pin
Joel Ivory Johnson17-Jan-09 6:07
professionalJoel Ivory Johnson17-Jan-09 6:07 
AnswerRe: Software Required To Develop Mobile Applications Using VB.net 2005 Pin
daniel9729-Apr-09 20:57
daniel9729-Apr-09 20:57 
QuestionWM5 development C++ - set up GUI Pin
uzziah016-Jan-09 11:22
uzziah016-Jan-09 11:22 
AnswerRe: WM5 development C++ - set up GUI Pin
Joel Ivory Johnson19-Jan-09 4:44
professionalJoel Ivory Johnson19-Jan-09 4:44 
GeneralRe: WM5 development C++ - set up GUI Pin
uzziah021-Jan-09 8:43
uzziah021-Jan-09 8:43 
GeneralRe: WM5 development C++ - set up GUI Pin
uzziah023-Jan-09 6:44
uzziah023-Jan-09 6:44 
GeneralRe: WM5 development C++ - set up GUI Pin
uzziah023-Jan-09 7:08
uzziah023-Jan-09 7:08 
QuestionWindows Mobile dll import error Pin
first_vvs77716-Jan-09 8:55
first_vvs77716-Jan-09 8:55 
QuestionRun application on WM6 based PDA startup Pin
kaushik_Manoj16-Jan-09 1:36
kaushik_Manoj16-Jan-09 1:36 
AnswerRe: Run application on WM6 based PDA startup Pin
Chaser9216-Jan-09 2:05
Chaser9216-Jan-09 2:05 
GeneralRe: Run application on WM6 based PDA startup Pin
kaushik_Manoj18-Jan-09 22:36
kaushik_Manoj18-Jan-09 22:36 
AnswerRe: Run application on WM6 based PDA startup Pin
Joel Ivory Johnson16-Jan-09 4:37
professionalJoel Ivory Johnson16-Jan-09 4:37 
GeneralRe: Run application on WM6 based PDA startup Pin
kaushik_Manoj18-Jan-09 22:34
kaushik_Manoj18-Jan-09 22:34 

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.