User ctacke - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T17:34:45Zhttp://stackoverflow.com/feeds/user/13154http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1937612/why-cant-you-see-textboxes-in-windows-mobile-standard/1940537#19405371Answer by ctacke for Why can't you see textboxes in Windows mobile standard?ctacke2009-12-21T14:52:15Z2009-12-21T14:52:15Z<p>It has no border and is the same color as your Form. That would explain why you don't see it. Labels and color differences often are useful for helping users know where a control is.</p>
<p>And as to the second question, I use a non-touch device (Dash 3G), so there are still some people that do.</p>
http://stackoverflow.com/questions/1939934/calling-win32-dll-api-from-c-application/1940506#19405061Answer by ctacke for calling win32 dll api from C# applicationctacke2009-12-21T14:47:01Z2009-12-21T14:47:01Z<p>The failure point is very obvious. Windows CE is Unicode. The string in C# is a wide-character array, the char[] in C is a multibyte. You're mixing the two, and that is bad, bad, bad.</p>
<p>I mean you're mixing them in the same call, sending wide headers and multibyte postData to HttpSendRequest? That certainly can't be right.</p>
<p>Change the Connect function to look like this:</p>
<pre><code>int Connect(TCHAR* lpPostData)
</code></pre>
<p>try it again, and come back with the results.</p>
<p>Of course this also means you need to change the strlen call as well.</p>
<p>As a side note, I don't understand why you would call into C++ for this call anyway. You could do it right from your C# app.</p>
http://stackoverflow.com/questions/439173/message-pumps-and-appdomains1Message Pumps and AppDomainsctacke2009-01-13T14:45:03Z2009-12-19T02:33:15Z
<p>I have a a C# (FFx 3.5) application that loads DLLs as plug-ins. These plug-ins are loaded in separate AppDomains (for lots of good reasons, and this architecture cannot change). This is all well and good.</p>
<p>I now have a requirement to show a Dialog from one of those plug-ins. Bear in mind that I <em>cannot</em> return the dialog Form to the main application and have it displayed there (the current infrastructure doesn't support it).</p>
<p>Failure 1</p>
<p>In my DLL I created a Form and called Show. The dialog outline showed up but did not paint and it doesn't respond to mouse events. I assumed that this is becasue the DLL is in a separate AppDomain and the message pump for the app is somehow unable to dispatch messages to the new Form.</p>
<p>Failure 2</p>
<p>In my DLL I created a Form and called ShowDialog, which by all rights should create an internal message pump for the dialog.. The dialog is displayed and responded to clicks (hooray), but it appears that the primary app no longer is processing or dispatching windows messages because it quits painting and no longer responds to mouse events. For some reason now it seems that the main app's message pump is not dispatching.</p>
<p>Failure 3</p>
<p>In my DLL I created a Form and called Application.Run. This will certainly create a complete second message pump. I get the same behavior as Failure 2 - the Dialog behaves, but the calling app does not.</p>
<p>Any thoughts on what exactly is going on here and how I might go about showing a dialog from the other AppDomain's DLL and have both the caller and the callee still respond and paint properly?</p>
http://stackoverflow.com/questions/1930308/sql-server-compact-edition-create-database-tables/1930797#19307970Answer by ctacke for SQL Server Compact Edition - Create Database Tablesctacke2009-12-18T21:28:40Z2009-12-18T21:28:40Z<p>How about reading <a href="http://arcanecode.com/2007/04/13/sql-server-compact-edition-with-c-and-vbnet/" rel="nofollow">this blog article</a>?</p>
http://stackoverflow.com/questions/1929021/programmatically-create-ms-sql-compact-database-file-on-a-desktop/1929900#19299000Answer by ctacke for Programmatically create MS SQL Compact database file on a desktopctacke2009-12-18T18:24:20Z2009-12-18T18:24:20Z<p>Create how? </p>
<p>From Visual Studio? Open the Server Explorer and add a new Data Connection. Select SQL Compact as the data source, give it a file name and click Create.</p>
<p>From Code? Use the SqlCeEngine class. Give it a connection string and call Create.</p>
http://stackoverflow.com/questions/1929385/c-interacting-with-existing-executables-in-windows-ce-using-compact-framework/1929893#19298930Answer by ctacke for C# Interacting with existing executables in Windows CE using Compact Framework? ctacke2009-12-18T18:22:07Z2009-12-18T18:22:07Z<p>"interacting" with an existing executable is going to greatly depend on the executable.</p>
<p>First, let me go on record as saying I'd be highly inclined to ask the device OEM if they have a way to do all of this programmatically rather than trying to kludge together some simulated user input. In this case, the app is likely setting that info somewhere in the system, so if you can do the same and avoid their app altogetehr, it's going to be a lot cleaner.</p>
<p>If that isn't available, then if the app you want to interact with support command-line options, then that's going to be the easiest. You can send those in using the Process and ProcessStartInfo classes to send in command-line arguments.</p>
<p>If it doesn't, then you have to simulate actual user input. How that would work, again, depens on the app you're trying to interact with. From your description, you're most likely you're going to have to simulate keyboard strokes by P/Invoking PostKeyboardMessage or keydb_event (the SDF has an implementation of SendKeys that simplifies this).</p>
<p>Be aware that you're going to have to make sure that the target window for the input is focused before you send those key strokes.</p>
http://stackoverflow.com/questions/1921194/suggestions-required-for-making-a-web-service-call-more-transactional-and-dealing/1922174#19221740Answer by ctacke for Suggestions required for making a web service call more transactional and dealing with network failures during the response?ctacke2009-12-17T14:32:09Z2009-12-17T14:32:09Z<p>The server inserts the data then returns teh keys to the client. The client then updates its key set. Why don't you add a final method call from the client to tell the server it has successfully updated its key, which would tell the server to commit the transaction?</p>
http://stackoverflow.com/questions/1912993/how-to-obtain-alphablending-in-wince-6-0-and-how-to-erase-background-image-in-wi/1916710#19167101Answer by ctacke for how to obtain alphablending in wince 6.0? and how to erase background image in wince 6.0?ctacke2009-12-16T18:37:05Z2009-12-16T18:37:05Z<p>Just becasue something works on the desktop doesn't mean it's going to work under Windows CE. Furthermore, since CE is a modular OS, if it works on one device it doesn't mean it will work on another.</p>
<p>Was alpha blending added to the CE image?
Does your system's display driver support alpha blending?</p>
<p>The answer to these two are going to have to be "Yes" before you can even try to move forward.</p>
<p>If the answer to them is "yes" then we need to see the code you've tried already.</p>
http://stackoverflow.com/questions/1897558/acessing-dlls-in-vb-net/1897568#18975681Answer by ctacke for Acessing DLLs in VB.NETctacke2009-12-13T20:03:14Z2009-12-13T20:03:14Z<p>What kind of DLLs? For native DLLs, you have to <a href="http://msdn.microsoft.com/en-us/library/aa446536.aspx" rel="nofollow">P/Invoke</a> (assuming the entry is public and non-decorated). For managed, just add a reference and use it.</p>
http://stackoverflow.com/questions/1806059/possible-to-render-html-in-a-compact-edition-mobile-6-phone-form/1897497#18974973Answer by ctacke for Possible to render html in a compact edition mobile 6 phone form?ctacke2009-12-13T19:42:02Z2009-12-13T19:42:02Z<p>A Browser Control is really the only way (unless you want to parse the HTML yourself and turn it into rich text for an RTF control, or worse, manually handle it all yourself).</p>
http://stackoverflow.com/questions/1896607/how-to-connect-to-webservice-on-my-pc-from-ppc-but-this-pc-not-connect-to-netw/1896747#18967473Answer by ctacke for How to connect to webService on my PC from PPC - but this PC not connect to network ? ctacke2009-12-13T14:54:45Z2009-12-13T14:54:45Z<p>If the device is connected to the PC via ActiveSync or WMDC, then you <em>do</em> have a network. Use "ppp-peer" as the network name to resolve the IP.</p>
http://stackoverflow.com/questions/1895184/remote-windows-and-windows-mobile/1896532#18965322Answer by ctacke for Remote Windows and Windows Mobilectacke2009-12-13T13:39:50Z2009-12-13T13:39:50Z<p>We need a lot more info on exactly what you need to do. For example <a href="http://msdn.microsoft.com/en-us/library/aa920177.aspx" rel="nofollow">RAPI</a> provides a <a href="http://rapi.codeplex.com/" rel="nofollow">communication interface</a> and you can write custom RAPI libraries. That gives the PC the ability to <a href="http://msdn.microsoft.com/en-us/library/aa917422.aspx" rel="nofollow">call methods on the device</a>, but it's a far, far cry from actual Remoting.</p>
http://stackoverflow.com/questions/1895914/how-to-get-computer-ip-that-connect-to-my-pocket-pc/1896523#18965232Answer by ctacke for how to get computer IP that connect to my Pocket-PC ?ctacke2009-12-13T13:36:15Z2009-12-13T13:36:15Z<p>The ActiveSync connection itself is an RNDIS network, so the device and the PC have their own addresses in that network. You can resolve "ppp-peer" to get the address of the PC in <em>that</em> network, but it won't tell you anything about the other network connection(s) of the PC. </p>
<p>To get that information, you would have to put an app on the PC that the device would talk to, and that app would provide the info you're after.</p>
http://stackoverflow.com/questions/1882556/emulating-animation-with-panels-on-net-compact-framework/1888604#18886040Answer by ctacke for Emulating animation with panels on .Net Compact Framework.ctacke2009-12-11T14:56:04Z2009-12-11T14:56:04Z<p>You're swapping on-screen panels? That's probably going to require a screen ivalidation and repaint, and that's a recipe for disaster. The device might not even have hardware acceleration (and the emulator display driver is really, really bad).</p>
<p>If you want to "animate" on a mobile device, you're going to have to draw to an offscreen buffer and then blit the result to the screen in one shot, and try to keep what you blit as small as possible.</p>
<p>MSDN has <a href="http://msdn.microsoft.com/en-us/library/aa446483.aspx" rel="nofollow">a decent article on animation</a> that you might want to look at.</p>
http://stackoverflow.com/questions/1880273/windows-ce-loginto-domain/1881161#18811611Answer by ctacke for windows ce, loginto domainctacke2009-12-10T13:59:15Z2009-12-10T13:59:15Z<p>There are no built-in CF classes for logging in, no. It can be done by P/Invoking the authentication APIs. It's something that I consider doing from time to time, but I've never hotten around to writing it up in managed code. I do, however, have the native code that would be the starting point <a href="http://blog.opennetcf.com/ctacke/2005/02/08/NTLMDomainAuthenticationInCE.aspx" rel="nofollow">in this blog entry</a>.</p>
http://stackoverflow.com/questions/1876980/how-to-test-my-application-on-a-windows-mobile-standard-sdk/1878187#18781871Answer by ctacke for How to test my application on a windows mobile standard sdk?ctacke2009-12-10T01:51:03Z2009-12-10T01:51:03Z<p>Right-click on the project and select "Change Target Platform"</p>
http://stackoverflow.com/questions/1874385/how-to-create-a-full-screen-application-in-win-ce-6-0-using-net-compact-framewor/1874591#18745912Answer by ctacke for How to create a full screen application in Win CE 6.0 using .NET Compact Framework 3.5?ctacke2009-12-09T15:20:50Z2009-12-09T15:20:50Z<p>First, you have to hide the task bar via P/Invoke. Here's the C code, which should be really easy <a href="http://pinvoke.net/default.aspx/coredll.FindWindowW" rel="nofollow">to convert</a>:</p>
<pre><code>HWND hwndTaskbar = ::FindWindow(_T("HHTaskBar"), NULL);
::ShowWindow(hwndTaskbar, SW_HIDE);
</code></pre>
<p>Once you do that, then use Screen.PrimaryScreen to determine how big your display is and resize your form to those dimensions.</p>
http://stackoverflow.com/questions/1867086/terminating-and-starting-data-connection-on-windows-mobile-6-5-in-c/1868125#18681250Answer by ctacke for Terminating and Starting Data Connection on Windows Mobile 6.5 in C#?ctacke2009-12-08T16:30:27Z2009-12-08T16:30:27Z<p>You should use the <a href="http://blogs.msdn.com/vsdteam/archive/2004/09/15/230133.aspx" rel="nofollow">ConnectionManager</a> APIs to access device connections. It will create them or hand existing connections to your application. Closing a connection is actually very difficult to do (probably becasue it's not terribly nice to tear a connection out from under another running app) and has to be done via <a href="http://rascf.codeplex.com/" rel="nofollow">P/Invoking to RAS</a>.</p>
http://stackoverflow.com/questions/1865101/c-compact-framework-load-a-png-alpha-blending-file/1866688#18666880Answer by ctacke for C# compact framework : load a png alpha blending filectacke2009-12-08T12:38:00Z2009-12-08T12:38:00Z<p>The problem is that in the CF, filling with Color.Transparent actually fills with white (see <a href="http://blog.opennetcf.com/ctacke/2009/10/26/ProjectResistanceTransparencyInTheCompactFrameworkSucks.aspx" rel="nofollow">these two</a> <a href="http://blog.opennetcf.com/ctacke/2009/10/28/ProjectResistanceDay4GraphicFixesAndMoreGesturing.aspx" rel="nofollow">blog entries</a>). <a href="http://resistance.codeplex.com" rel="nofollow">Project Resistance</a> has a very good example of how to do this blending (actually several of them).</p>
http://stackoverflow.com/questions/1863006/c-multi-method-attached-to-event-how-to-handle-return-value/1863035#18630351Answer by ctacke for C# multi method attached to event, how to handle return value?ctacke2009-12-07T21:30:44Z2009-12-07T21:30:44Z<p>You would iterate on the result from ExternalConstraint.<a href="http://msdn.microsoft.com/en-us/library/system.delegate.getinvocationlist.aspx" rel="nofollow">GetInvocationList</a> instead of just calling the Constraint delegate.</p>
http://stackoverflow.com/questions/517420/using-msmq-for-interprocessinter-application-communication-on-windows-mobile-5/1862967#18629670Answer by ctacke for Using MSMQ for interprocess(inter application) communication on Windows Mobile 5.0ctacke2009-12-07T21:21:00Z2009-12-07T21:21:00Z<p>WM_COPYDATA, sockets, memory-mapped files and point-to-point message queues are all IPC mechanisms for CE (well named events are also available). I tend to lean toward point-to-point queues or memory-mapped files. Which one depends on the nature of the data I want to share.</p>
http://stackoverflow.com/questions/1428846/vb-net-resize-an-image-jpg-gif-png-to-avoid-out-of-memory-error-in-picturebox/1862915#18629150Answer by ctacke for VB.NET: Resize an image (jpg,gif,png) to avoid out of memory error in Picturebox Control on .NETCF 2.0ctacke2009-12-07T21:12:19Z2009-12-07T21:12:19Z<p>You have to load the image into a thumbnail with <a href="http://msdn.microsoft.com/en-us/library/aa918965.aspx" rel="nofollow">IImage::GetThumbnail</a>. This is done using the Imaging library via P/Invoke. The Smart Device Framework <a href="http://www.devx.com/wireless/Article/36134/1954" rel="nofollow">has this done</a>, but the original question is asking for advice on how to do it without the SDF. Without is a bit more complex as you're going to have to deal with writing the proxy wrapper classes.</p>
http://stackoverflow.com/questions/1846832/bring-data-came-from-async-operation-to-main-thread/1847233#18472331Answer by ctacke for Bring data came from async operation to main thread.ctacke2009-12-04T14:19:39Z2009-12-04T16:03:24Z<p>You could create a COntrol in the constructor of your Library, then Invoke with it and raise the event <em>after</em> the invoke. The consumer would then get the event in the context of the thread that created your library class. If you make it a Component, it's most likely that it will be created on the UI thread, and therefore your events will raise in the UI thread.</p>
<p><strong>EDIT 1</strong></p>
<p>As an example:</p>
<pre><code>private Control m_invoker = new Control();
public event EventHandler MyEvent;
private void RaiseMyEvent(object o, EventArgs args)
{
EventHandler handler = MyEvent;
if (handler == null) return;
if (m_invoker.InvokeRequired)
{
m_invoker.BeginInvoke(new EventHandler(RaiseMyEvent),
new object[] { o, args });
return;
}
handler(o, args);
}
</code></pre>
<p>So your code would call RaiseMyEvent, which in turns migrates the call to the thread that create the current object and then raises the actual event.</p>
http://stackoverflow.com/questions/1840830/why-is-there-no-support-for-mdi-in-compact-framework/1840915#18409154Answer by ctacke for Why is there no support for MDI in Compact-Framework?ctacke2009-12-03T16:04:42Z2009-12-03T16:48:27Z<p>The CF doesn't support it because the <a href="http://msdn.microsoft.com/en-us/library/aa930455.aspx" rel="nofollow">OS itself doesn't support MDI</a> (see the Remarks section in the linked page).</p>
<p>MDI can be pretty easily faked, though, by using UserControls instead of Forms and throwing them in a container like a Frame on your "MDI Parent" Form.</p>
<p>You could also go with a Tab Control motif, and each "document" becomes a tab.</p>
http://stackoverflow.com/questions/1838863/ownerdraw-on-compact-framework-controls/1840001#18400012Answer by ctacke for OwnerDraw on compact framework controlsctacke2009-12-03T13:57:20Z2009-12-03T13:57:20Z<p>It's far from straightforward to do owner or custom drawing int he CF. Christian Helle has <a href="http://christian-helle.blogspot.com/2009/10/listview-custom-drawing-in-netcf.html" rel="nofollow">an example for the ListView in his blog here</a>.</p>
http://stackoverflow.com/questions/1839780/error-in-building-project/1839985#18399850Answer by ctacke for Error in building projectctacke2009-12-03T13:53:57Z2009-12-03T13:53:57Z<p>Sounds to me like you are targeting Windows Mobile (ARMv4i) but are pulling in a lib or DLL for an x86 target and trying to link against it. That won't work. Use the ARM version.</p>
http://stackoverflow.com/questions/1838743/how-to-convert-byte-to-lpcwstr-in-wince6-0/1839975#18399751Answer by ctacke for How to convert Byte* to LPCWSTR in wince6.0?ctacke2009-12-03T13:52:10Z2009-12-03T13:52:10Z<p>You need to read up on Unicode. Your data in your question ("MessageRequest") is not the same as in you comments (<strong>L</strong>"MessageRequest"). They are way different, and you need to understand that. Look at the memory view to see how they are layed out.</p>
<p>You've not said how you want to "display" the message, but if it's still Unicode, and the client is CE-based, then there's nothing to do. CE only uses Unicode for all of it's APIs. If its the desktop, use a Wide ("W" suffixed) API, or #define UNICODE in your app. Or convert it using wcstombs or WideCharToMultiByte.</p>
http://stackoverflow.com/questions/1839536/is-there-any-way-to-conver-byte-message-to-lpcwstr-other-than-widechartomultibyt/1839835#18398350Answer by ctacke for Is there any way to conver byte* message to LPCWSTR other than WideCharToMultiBYte()?ctacke2009-12-03T13:22:27Z2009-12-03T13:22:27Z<p><a href="http://msdn.microsoft.com/en-us/library/5d7tc9zw.aspx" rel="nofollow">wcstombs</a>?</p>
http://stackoverflow.com/questions/1836632/convert-image-to-1-bpp-bitmap-in-net-compact-framework/1837102#18371023Answer by ctacke for Convert image to 1 bpp bitmap in .net compact frameworkctacke2009-12-03T01:30:46Z2009-12-03T01:30:46Z<p>I had to do this in the past for generating black & white reports printed via Bluetooth (color or greyscale images were too large for the printer's buffer). Turned out I had to create the images using native code.</p>
<p>Here's a snippet:</p>
<pre><code>private void CreateUnmanagedResources()
{
// for safety, clean up anything that was already allocated
ReleaseUnmanagedResources();
bih = new BITMAPINFOHEADER();
bih.biBitCount = 1;
bih.biClrImportant = 0;
bih.biClrUsed = 0;
bih.biCompression = 0;
bih.biHeight = m_cy;
bih.biPlanes = 1;
bih.biSize = (uint)(Marshal.SizeOf(typeof(BITMAPINFOHEADER)) - 8);
bih.biSizeImage = 0;
bih.biWidth = m_cx;
bih.biXPelsPerMeter = 0;
bih.biYPelsPerMeter = 0;
bih.clr2 = 0xffffff;
bih.clr1 = 0x0;
hDC = Win32.CreateCompatibleDC(IntPtr.Zero);
pBits = IntPtr.Zero;
hBitmap = Win32.CreateDIBSection(hDC, bih, 1, ref pBits, IntPtr.Zero, 0);
hbmOld = Win32.SelectObject(hDC, hBitmap);
}
private void ReleaseUnmanagedResources()
{
if (hbmOld != IntPtr.Zero)
Win32.SelectObject(hDC, hbmOld);
if(hBitmap != IntPtr.Zero)
Win32.DeleteObject(hBitmap);
if (hDC != IntPtr.Zero)
Win32.DeleteDC(hDC);
}
</code></pre>
<p>I then used Graphics.FromHdc to get a managed graphics object that I could paint the report onto.</p>
<p>I did saving with a BinaryWriter, but that was in CF 1.0 days when the Bitmap class didn't have a Save, so you're free and clear there.</p>
http://stackoverflow.com/questions/1836685/debug-windows-mobile-unit-tests-in-vs2008/1837069#18370691Answer by ctacke for Debug Windows Mobile unit-tests in VS2008ctacke2009-12-03T01:22:17Z2009-12-03T01:22:17Z<p>It's simply <a href="http://msdn.microsoft.com/en-us/library/bb513875.aspx" rel="nofollow">the way the smart device unit test framework works</a>, and it sucks. <a href="http://blog.opennetcf.com/ctacke/2009/11/20/DebuggingSmartDeviceMSTESTUnitTests.aspx" rel="nofollow">I blogged about my workaround</a> just last week.</p>
http://stackoverflow.com/questions/1939934/calling-win32-dll-api-from-c-application/1940728#1940728Comment by ctacke on calling win32 dll api from C# applicationctacke2009-12-21T16:11:50Z2009-12-21T16:11:50ZThat's not going to fix the mix of wide and multibyte in his C code.http://stackoverflow.com/questions/1806059/possible-to-render-html-in-a-compact-edition-mobile-6-phone-form/1897497#1897497Comment by ctacke on Possible to render html in a compact edition mobile 6 phone form?ctacke2009-12-19T16:32:32Z2009-12-19T16:32:32ZYes, you need <i>2</i> controls for this. Just like everyone else uses.http://stackoverflow.com/questions/439173/message-pumps-and-appdomains/1931746#1931746Comment by ctacke on Message Pumps and AppDomainsctacke2009-12-19T16:31:08Z2009-12-19T16:31:08ZYes, I suggest asking this as it's own question, not as an asnwer to mine (which it clearly isn't)http://stackoverflow.com/questions/1924197/sql-ce-limiting-rows-returned-in-the-queryComment by ctacke on SQL CE: Limiting rows returned in the queryctacke2009-12-17T20:12:47Z2009-12-17T20:12:47ZWhy are you averse to using the resultset and just taking the first 2 rows?http://stackoverflow.com/questions/1912993/how-to-obtain-alphablending-in-wince-6-0-and-how-to-erase-background-image-in-wiComment by ctacke on how to obtain alphablending in wince 6.0? and how to erase background image in wince 6.0?ctacke2009-12-17T14:33:53Z2009-12-17T14:33:53ZWhat does the AlphaBlend call return? I see lots of calls and no checking of any return values.http://stackoverflow.com/questions/1895184/remote-windows-and-windows-mobile/1896532#1896532Comment by ctacke on Remote Windows and Windows Mobilectacke2009-12-17T06:05:00Z2009-12-17T06:05:00ZThen RAPI certainly will fill the bill.http://stackoverflow.com/questions/1912993/how-to-obtain-alphablending-in-wince-6-0-and-how-to-erase-background-image-in-wi/1916710#1916710Comment by ctacke on how to obtain alphablending in wince 6.0? and how to erase background image in wince 6.0?ctacke2009-12-17T06:01:48Z2009-12-17T06:01:48ZThen we need to see code.http://stackoverflow.com/questions/1912993/how-to-obtain-alphablending-in-wince-6-0-and-how-to-erase-background-image-in-wiComment by ctacke on how to obtain alphablending in wince 6.0? and how to erase background image in wince 6.0?ctacke2009-12-16T18:38:05Z2009-12-16T18:38:05ZTelling us the languae you're using would be helpful here.http://stackoverflow.com/questions/1897558/acessing-dlls-in-vb-net/1897568#1897568Comment by ctacke on Acessing DLLs in VB.NETctacke2009-12-14T01:59:39Z2009-12-14T01:59:39ZIf you don't know what "managed" and "decorated" are, then a trip to your favorite search engine is a good start. You <i>ill</i> need to know these.http://stackoverflow.com/questions/1806059/possible-to-render-html-in-a-compact-edition-mobile-6-phone-form/1897497#1897497Comment by ctacke on Possible to render html in a compact edition mobile 6 phone form?ctacke2009-12-13T20:02:07Z2009-12-13T20:02:07ZSo you want an <i>editable</i> HTML control? Why not do what SO itself does? Have a standard TextBox for editing and a browser control for the preview.http://stackoverflow.com/questions/1896607/how-to-connect-to-webservice-on-my-pc-from-ppc-but-this-pc-not-connect-to-netwComment by ctacke on How to connect to webService on my PC from PPC - but this PC not connect to network ? ctacke2009-12-13T15:13:20Z2009-12-13T15:13:20Zno fairy dust needed - just the USB cable. This is not an unreasonable request.http://stackoverflow.com/questions/1882556/emulating-animation-with-panels-on-net-compact-frameworkComment by ctacke on Emulating animation with panels on .Net Compact Framework.ctacke2009-12-11T14:53:12Z2009-12-11T14:53:12Z@Charlie: All Windows CE devices support timers down to 1ms resolution.
http://stackoverflow.com/questions/1880133/how-to-allocate-memory-in-another-process-for-windows-mobile/1887811#1887811Comment by ctacke on How to allocate memory in another process for windows mobilectacke2009-12-11T14:48:09Z2009-12-11T14:48:09ZHe's not asking about IPC, he wants to read window text from another process. A socket is completely non helpful for this.http://stackoverflow.com/questions/1879825/how-to-get-creation-timeeven-millisecond-for-file-folder-in-windows-c/1879864#1879864Comment by ctacke on How to get creation time(even millisecond) for file - folder in windows c#ctacke2009-12-10T14:00:53Z2009-12-10T14:00:53ZNot just likely - almost certain.http://stackoverflow.com/questions/1874385/how-to-create-a-full-screen-application-in-win-ce-6-0-using-net-compact-framewor/1874591#1874591Comment by ctacke on How to create a full screen application in Win CE 6.0 using .NET Compact Framework 3.5?ctacke2009-12-10T13:57:15Z2009-12-10T13:57:15ZIf you're going to write a CF app, you're going to have to learn to P/Invoke - there's no way around it. These are really simple, and I gave a link that will get you started. I'm not giving you the fish, only the fishing pole.