Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008
all groups > dotnet compact framework > february 2005 > threads for friday february 18

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28

Accessing attributes from AssemblyInfo on CF
Posted by Waldek at 2/18/2005 11:50:34 PM
Is possible to access attributes from AssemblyInfo file like "AssemblyTitle","AssemblyDescription" etc. Code below causes NotSupportedException : Dim att As System.Reflection.AssemblyTitleAttribute att = System.Reflection.AssemblyTitleAttribute.GetCustomAttribute(System.Reflectio n.Assemb...more >>


Slow loading of sqlce database from sqlserver
Posted by mikeb at 2/18/2005 10:34:56 PM
I'm trying to load a sqlce database that resides on my ppc. I'm taking records from a sql server, loading them into a dataset via a stored prcedure call, and then cycling through the dataset to load the data into sqlce. It take a very long time to load from the dataset to the sqlce - is this...more >>

How do draw an image in a disabled state?
Posted by Dan at 2/18/2005 9:53:41 PM
Hi everyone Does anyone know how to draw an image in a disabled state on the compact framework? I have created a dropdown button akin to the forward and back button in IE but I'm stuck when it comes to putting the button in a disabled state. Any help would be much appreciated. Thanks in ad...more >>

How do people get the compact .Net framework?
Posted by Ken Dopierala Jr. at 2/18/2005 9:44:42 PM
Hi, I've written a small .Net cf app. I can run it just fine on all the simulators but I can't figure out how to tell people how to use it. Is there a link I can just have them go to so they can download the correct ..Cab file which will install it for them? I've heard I should use ARMV4 bu...more >>

Dial-Up Connection
Posted by Ralf Haenel at 2/18/2005 7:51:11 PM
Hi, I am writing a programm on the compact framework. It is using a dial-up connection to the internet for transfering data from/to a server. OK But how can I establish the dial-up connection automatically from the programm without using: start->settings->Network and dialup-connections->...more >>

Error while building CAB file from VS.Net 2003
Posted by Mustafa Rabie at 2/18/2005 4:07:47 PM
Hi All, I am always getting this error when choosing "Build->Build CAB File" for my smartphone application Error : The CabWiz executable 'D:\Program Files\Microsoft Visual Studio .NET 2003\CompactFrameworkSDK\v1.0.5000\Windows CE\Smartphone\..\bin\..\bin\cabwiz.exe' could not be invoked ...more >>

C# problem updating registry
Posted by Daniel Passwater via DotNetMonster.com at 2/18/2005 4:04:51 PM
I'm trying to update the registry using C#. This seems like it should work: int SecurityInt = 1; // Open registry key. RegistryKey rk = Registry.LocalMachine; RegistryKey subKey = rk.OpenSubKey("SOFTWARE\\Microsoft\\Cryptography\\ IEDirtyFlags\\",true); // Update key value. rk.SetValue(...more >>

Confusion on elements of .NET Compact Framework
Posted by John Olbert at 2/18/2005 3:35:03 PM
I am investigating the .NET Compact Framework. We plan to develop using C# with Vs2003 (with the NetCF Addin). At present I am using the WinCE Emulator. I am confused by the many different names used to describe the Compact environment elements. I have installed the Vs2003 NetCF Addin and...more >>



Suggestions for test device
Posted by John Olbert at 2/18/2005 3:33:01 PM
I am in the process of learning the Net Compact Framework. We intend to use it with a PCB that is being fabricated but is not yet available. Could someone suggest a device running WinCE with a screen in the price range of $200 to $300 that I could suggest to my supervisor as a test platform u...more >>

Blocking GUI despite Observer Pattern (or just because that?)
Posted by Chris at 2/18/2005 2:37:30 PM
Hello, I encountered a severe Problem with a Compact Framework Program I wrote in C#. I have a Form with an ListBox Object on it. On Button-Click, a Method Object.GetData() is called which takes a relatively long time to return. The result is then given to the Listbox by: ListBox.Dataso...more >>

Why does this not work? (ComboBox.BackColor)
Posted by vbmark at 2/18/2005 2:32:41 PM
I can change the BackColor of a TextBox. However, the BackColor of a ComboBox will not change. thisComboBox.BackColor = Color.Yellow The property is there and I don't get an error when I run. So why does nothing happen? Thanks!...more >>

Font Color in Listbox
Posted by Aaron at 2/18/2005 1:55:16 PM
Anyone know how I can change the color of the text on a line-by-line basis for a listbox? If it's not possible, is there another component out there that I can achieve this with, or is there some other documentation out there which can assist me in doing so? Thanks...more >>

help hiding SIP "triangle"
Posted by Reef at 2/18/2005 1:27:04 PM
Hi all, does anyone know how to do either of the following: 1) Hide the small triangle that appears next to the SIP icon (it brings up the menu of input types or 2) Remove the "Options..." from the input selection group that pops up when you click that small triangle! I would app...more >>

Where do I find the "SendInput sample application"?
Posted by Benjamin Lukner at 2/18/2005 1:24:06 PM
Hi, The SendInput API help on the INPUT structure http://msdn.microsoft.com/library/en-us/wceui40/html/cerefINPUT.asp has the following remark: "This structure is used with the SendInput sample application." But where do I find that sample application? I couldn't find it on my hard disk an...more >>

SQL Server CE and Microsoft Access
Posted by Aaron at 2/18/2005 1:23:53 PM
Simple question, is it at all possible to synchronize a SQL Server CE database to Microsoft Access on the desktop. I have a client that wants this and according to the archives, this can't be done. Any further insight anyone? Thanks...more >>

Close another application programatically
Posted by Ciobanu Ionut-Georgian via DotNetMonster.com at 2/18/2005 1:01:16 PM
I would like to close another application from my own with code. Suppose we have started myApp and every 3 secs i check to see if Calc.exe (or calculator) is started. If it is, i want to close it. How can i do this? I would really appreciate. Thank you in advance. -- Message posted via http:...more >>

static vs instance classes and the GC
Posted by news.austin.rr.com at 2/18/2005 12:58:37 PM
hi, if I create a class for use as a static class (all methods and properties are static) doesn't it reside on the stack instead of the heap and doesn't that mean that GC will process faster since there are fewer objects on the heap? So is this a valid speed enhancement? I realized there are p...more >>

Application.Run() does not show Form
Posted by Jon Brunson at 2/18/2005 12:55:28 PM
Afternoon All, In the code below, when it gets to Application.Run(frmMain), it does not show the form on the device, any ideas why? If I use frmMain.ShowDialog() it works fine, but then I can't use Invoke() on the form later on, and I need to. Help? [VB.NET] Private Shared frmS...more >>

Disposing resources at application closing
Posted by maark at 2/18/2005 12:55:06 PM
Platform: WinCE 4.2, .NET CF, C# I am working on a wizard based application which consists basically of an "Engine" class which handles the creation/display/disposing of the various "wizard" forms. All the wizard forms are derived from the same base class which in turn is derived from Sys...more >>

custom component (not control) showing as gray in toolbox
Posted by news.austin.rr.com at 2/18/2005 12:42:34 PM
Hi, I have created several custom controls that i have in the toolbox and can drag and drop onto forms with no problem. However, if I create a custom component by inheriting from " System.ComponentModel.Component" and compile the runtime and design time versions, the component appears but is g...more >>

Deployment on Windows SE2003
Posted by Amirallia at 2/18/2005 12:38:27 PM
Hello I have made a setup to deploy my WinCE application (an application with SQL CE). In the Windows PocketPC 2003 version all is ok. But when I run my setup on a WinCE SE2003 I have a warning message (different version of WinCE) before installing the SQL CE cab file. My application work...more >>

Strange behavior of method overloading
Posted by Michal Rizek at 2/18/2005 9:51:10 AM
Hi, i found an interesting problem when using overloaded functions... I declare two methods: public static void ShowError(Exception exp) {...} and public static void ShowError(SqlCeException exp) {...} when i call ShowError with parater of type SqlCeException, then compiler's overload re...more >>

Windows CE 4.x PC connection properties
Posted by jayderk at 2/18/2005 9:30:09 AM
Hello All, how can I disable ActiveSync on my Windows CE 4.x device in my application? to manually disable it I go to the PC connection icon in the Control Panel and uncheck the box "Enable direct connection to the desktop computer". regards, Jay ...more >>

Kill mobile process from desktop
Posted by Helen Warn at 2/18/2005 8:01:05 AM
Is there any easy way to determine if a particular process is running on the mobile device from the desktop using RAPI, and if so, to kill it? Thx Helen -- Helen Warn, PhD Agile Software Inc. www.agile-soft.com...more >>

Copy file from device to desktop
Posted by Helen Warn at 2/18/2005 7:59:03 AM
With an Active Sync connection, what is the best way to have a program running on the mobile device copy a file to the desktop? Thx Helen -- Helen Warn, PhD Agile Software Inc. www.agile-soft.com...more >>

Touch Screen enable/disable in WinCe4.2
Posted by FlatBeach at 2/18/2005 6:27:02 AM
I am doing some programming in VB.NET and want to be able to disable/enable the touch-screen on a computer running WinCe4.2. I need to recieve the command to Enable the screen on a RS232-signal. I need to Disable the screen automaticly via a timer. Is this possible ? ...more >>

(C#.NET) Dynamically change text of a Label/Textbox at runtime
Posted by augustesen NO[at]SPAM privat.tdcadsl.dk at 2/18/2005 12:17:48 AM
Hi all I am working on a C#.NET CF program, and I have run into a problem. I have two forms. One form called "Structs" and on called "DInfo". Every 10 seconds I use a timer to call two funktions in the "Structs" form, which create a structure called "DI_Record" containing a number of strin...more >>


DevelopmentNow Blog