diff options
Diffstat (limited to 'CSharp/Ivy')
-rw-r--r-- | CSharp/Ivy/IvyPPC/IvyApplicationBinding.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyApplicationBinding.cs b/CSharp/Ivy/IvyPPC/IvyApplicationBinding.cs index 4fbc45c..9183850 100644 --- a/CSharp/Ivy/IvyPPC/IvyApplicationBinding.cs +++ b/CSharp/Ivy/IvyPPC/IvyApplicationBinding.cs @@ -114,6 +114,7 @@ namespace IvyBus public void FormatExpression()
{
//// Safely :
+#if (!PocketPC)//TODO Pocket PC doesn't have Target Member
EventHandler<IvyMessageEventArgs> temp = Callback;
if (temp != null)
{
@@ -134,7 +135,8 @@ namespace IvyBus formated_expression = string.Format(expression, args);
}
else //TODO Abnormal condition Design Time
- formated_expression = expression;
+#endif
+ formated_expression = expression;
}
|