active questions tagged compact-framework - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T07:34:21Z http://stackoverflow.com/feeds/tag/compact-framework http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1938042/which-way-to-save-custom-types-to-a-file-on-a-mobile-device 0 Which way to save custom types to a file on a mobile device? Euclid 2009-12-21T03:39:36Z 2009-12-21T04:41:29Z <p>I have a list of custom types, they need to be saved/loaded to/from a file on a mobile device (Windows Mobile 6) what method would be the most suited, taking into account the limited resources of the device? EDIT: The data file will be around 2-5mb</p> http://stackoverflow.com/questions/587387/does-the-ado-net-entity-framework-support-compact-framework 0 Does the ADO.NET Entity Framework Support Compact Framework Dylan Vester 2009-02-25T19:11:14Z 2009-12-20T22:34:54Z <p>Well does it?</p> http://stackoverflow.com/questions/1933881/windows-mobile-emulator-error 0 Windows Mobile - Emulator Error Lennie De Villiers 2009-12-19T19:18:12Z 2009-12-19T19:18:12Z <p>Hi, I'm getting the error below when trying to use the Windows Mobile 6 emulators please advise how I can fix:</p> <p><hr></p> <h2>Microsoft Visual Studio</h2> <h2>The operation could not be completed </h2> <h2>OK </h2> <p>Using Windows 7, VS.Net 2008, WinMobile 6 Pro SDK</p> http://stackoverflow.com/questions/1806059/possible-to-render-html-in-a-compact-edition-mobile-6-phone-form 0 Possible to render html in a compact edition mobile 6 phone form? chobo2 2009-11-26T23:07:30Z 2009-12-19T17:14:36Z <p>Hi</p> <p>I am wondering does anyone know if it is possible to render html in a mobile 6 form? The only way I can think that may work is the internal web browser control.</p> <p>I am wondering is there a better way? I am thinking if I go the path of web browser control I will have to generate an html file then insert the code I want into this file.</p> <p>I need something like this because I am pulling in some text that can possibly be formatted with html stuff such as font weight.</p> http://stackoverflow.com/questions/1930308/sql-server-compact-edition-create-database-tables 0 SQL Server Compact Edition - Create Database Tables Lennie De Villiers 2009-12-18T19:45:34Z 2009-12-18T21:43:17Z <p>Hi, I got it right to create a SQL Server CE database table using the code below:</p> <pre><code>string connectionString = "DataSource=\"test.sdf\"; Password=\"mypassword\""; SqlCeEngine en = new SqlCeEngine(connectionString); en.CreateDatabase(); </code></pre> <p>But how do I create my database tables and insert data? I've got the SQL created statements stored in the application Resource location.</p> http://stackoverflow.com/questions/1924197/sql-ce-limiting-rows-returned-in-the-query 0 SQL CE: Limiting rows returned in the query Diakonia7 2009-12-17T20:00:30Z 2009-12-18T16:45:47Z <p>In <strong>SQL Compact Edition 3.5</strong> , note that it is the <strong>Compact Edition</strong> I am talking about- Is there a way to limit the amount of rows to only 2? Something like using LIMIT or TOP. I <strong>really don't want</strong> to use anything with a SqlCEDataReader, or SqlCEResultSet. I want to do all the limiting <strong>in the query</strong>. Is this possible now? I have looked around and it doesn't seem so.</p> <p>EDIT- </p> <p>In response to Dave Swersky's request for data and using Min()/Max() on some columns as a means to get the top 2 lines, here is some sample (sterilized) data:</p> <pre><code>Line Site Function Status 1010 Las Vegas new 4 1020 DC send 1 1030 Portland copy 1 1040 SF copy 1 1050 Portland copy 1 1060 DC send 1 </code></pre> <p>*There are more columns than this but these are the significant ones.</p> <p>Sorry for the lack of intuitive data (but the actual data is even less intuitive!), but for security i need to change the data. </p> <p>So- i need to determine: <strong>what site the record was at in the preceding line to determine where it needs to be picked up.</strong> </p> <p>The <strong>site</strong> on any given line (<strong>except</strong> the first line with <strong>function = 'new'</strong>) <strong>corresponds to where the item is going next.</strong> So simply grabbing that site off the same line wont tell me where it came from. The status will always be 1 or 4. The 4 corresponds to a where it has been delivered already and so i dont want to include those records in the result. But it might be useful in getting the pickup site.</p> <p>For this table of data i want the query to return the site corresponding to the line just above the first line with status 1. So- for this it would be Las Vegas.</p> http://stackoverflow.com/questions/1924334/how-can-i-know-when-a-form-is-shown 0 How can I know when a form is shown? VansFannel 2009-12-17T20:27:02Z 2009-12-18T14:27:44Z <p>Hello.</p> <p>I'm developing a <strong>Windows Mobile 5.0 or above</strong> with <strong>.Net Compact Framework 2.0 SP2</strong> and <strong>C#</strong>.</p> <p>I have a WinForm that only has a Custom Control. I want to call a method of that custom control when the form has finished loading and display the control.</p> <p>Now I using Activated Event, but these event is thrown everytime when I close a messagebox.</p> <p>Is there an event thrown in that moment?</p> <p>Thank you.</p> http://stackoverflow.com/questions/1927952/7-zip-problem-for-windows-mobile 0 7-Zip Problem for windows mobile Solitaire 2009-12-18T12:30:56Z 2009-12-18T13:35:44Z <p>Hi,</p> <p>i am trying to build the 7zip code, which i can use in my windows mobile project.. does any one know how to build 7zip code and use the same in windows mobile application..</p> http://stackoverflow.com/questions/1222352/how-can-i-create-a-finger-scrollable-textbox-in-wm-6-5 0 How can I create a finger scrollable Textbox in WM 6.5? Papajohn 2009-08-03T13:27:42Z 2009-12-18T07:00:02Z <p>Hi everybody.</p> <p>I just noticed something weird in WM 6.5 emulators. Unlike 6.1 where finger panning kind of worked, the only way to scroll a Textbox appears to be through scrollbars.</p> <p>This behaviour is in contrast to what they have done for comboboxes: they are now gesture-friendly without the programmer's intervention. I.e. the user can select a choice from a standard drop down menu by panning and scrolling. Previously, you had to use the embedded scrollbar. The combobox's case implies that MS took some measures to provide standard gesture support for classic finger gestures, yet I cannot see something similar for textboxes. This makes me ask the following:</p> <ul> <li>Is there anything that can be done to make textboxes finger scrollabe easily?</li> </ul> <p>Note that I refer to managed .NET CF development. It is my understanding that in native development I could use the new Gestures API to achieve the scrolling effect. Yet, I am not sure if there is an easier and more straightforward method that I have missed.</p> http://stackoverflow.com/questions/245566/net-compact-framework-4-0 2 .net Compact Framework 4.0 Daniel 2008-10-29T02:00:58Z 2009-12-17T20:49:32Z <p>Will their be a new release of the compact framework with VS2010 and .net 4.0 and if so what new features will it include? WPF? linq to SQL? etc</p> http://stackoverflow.com/questions/1923344/net-compact-framework-signature-drawing-gui-element 0 .NET compact framework signature drawing GUI element OTisler 2009-12-17T17:34:43Z 2009-12-17T17:53:35Z <p>Is there a way to allow a user to draw with their stylus (a signature in my case) in a Windows Form? Something like <code>InkCanvas</code> in WPF. </p> <p>I don't think I can use WPF in a compact framework project, or maybe I'm setting it up wrong.</p> <p>thanks</p> http://stackoverflow.com/questions/1923039/netcf-datagrid-scroll-row-into-view 0 NETCF DataGrid scroll row into view? eidylon 2009-12-17T16:44:56Z 2009-12-17T16:44:56Z <p>Quick question regarding the Compact Framework DataGrid. How can I scroll a particular row into view? We have an application that displays scans in a datagrid. If the user scans a new item I add it to the grid, but if they scan an existing item, I'd like to scroll that item into view. Is there any way to do this?</p> <p>I tried using the following methods: </p> <pre><code>grid.CurrentRowIndex = findRowIdxByScan() </code></pre> <p>and </p> <pre><code>grid.Select(findRowIdxByScan()) </code></pre> <p>I am definitely finding the row index, which I verified with a step-through, but it doesn't seem to actually scroll the row into view.</p> http://stackoverflow.com/questions/1919129/c-compact-framework-show-a-specified-image-from-a-list-of-image-in-new-control 0 C# compact framework : Show a specified Image from a list of Image in new control Thyphuong 2009-12-17T02:30:11Z 2009-12-17T02:30:11Z <p>I have a list of Images on a mobile form. When I press Enter, I want to show the specified Image in a new form(or some control) with its real size. it will show on that control upon the form containing the Image list and focus in the control(like some Image Viewer Apps). So which control should I use because it seems not be able to change the size of a new form to fit with the image and show upon the old form in a mobile app.</p> http://stackoverflow.com/questions/1633119/i-cant-load-bitmaps-on-wince 0 I can't load bitmaps on WinCE Qwertie 2009-10-27T19:28:05Z 2009-12-17T00:44:39Z <p>I wrote a small project that displays icons on the screen on WinCE. The icons are 28x28 16-color BMP files, placed in the main resource file (Resources.resx) (the resx for the main Form has the same problem, and GIF files don't work either).</p> <p>The first time I try to get any bitmap from the resources, an exception of type Exception with Message "Exception" is thrown from Microsoft.AGL.Common.MISC.HandleAr, which was called from System.Drawing.Bitmap._InitFromMemoryStream.</p> <p>I have two WinCE devices. This error only occurs on one of them; the other works fine. Other than this one problem, the app works on both devices. The app also uses some native code that involves DIBs, and that works fine. Any ideas?</p> <p>Update: The same error occurs if I try to load a bitmap from a file. I also tried 1-bit (black &amp; white), 8-bit and 24-bit bitmaps to no avail (WinCE framebuffers are most commonly 16-bit, but I have no image editor that can produce 16-bit bitmaps.)</p> http://stackoverflow.com/questions/1901456/linq-to-sql-in-compact-framework 2 LINQ To SQL in Compact Framework gtas 2009-12-14T15:12:37Z 2009-12-16T17:01:28Z <p>Im on to design my Data Access for a new solution i create. That solution though contains Compact Framework Device Application and libraries besides Desktop. All .NET 3.5. Desktop will handle all Data Access basically. I need the Data Objects to have in CF too, Desktop will communicate with SQL and then with Mobile and give the appropriate data...</p> <p>I love LINQ, and more i love LINQ 2 SQL. There is a lot of hype out there and i don't buy internal Microsoft politics about recommending EF. For now EF is too heavy and too complex for someone to choose it besides it still evolving and EF 4 will have major changes when it comes in a few months. But i cant wait for months to create a project as every developer in here, i want something now! After that said i want to use LINQ 2 SQL, my problem is that i cant just copy the generated dbml and use the generated classes. I don't need the DataContext cause i don't intend to use CRUD or any operations on a database with the Mobile App. i Just want the Objects. Anyone ever came in a situation like this? The whole point is not to write all classes representing the tables by hand. Cause i need them for further LINQ to Objects manipulation.</p> <p>Basically an ORM supporting CF would do the job! But i don't know any incompatibilities i would meet.</p> http://stackoverflow.com/questions/1726241/support-for-compact-framework-in-subsonic-3-0 0 Support for compact framework in subsonic 3.0? MattDotNet 2009-11-12T23:52:41Z 2009-12-16T08:26:26Z <p>I was wondering when support for compact framework and sql server compact edition will be added to the <a href="http://subsonicproject.com/" rel="nofollow">Subsonic 3.0 project</a>?</p> http://stackoverflow.com/questions/623952/different-mscoree-dll-entry-points-on-the-desktop-on-a-device 0 Different mscoree.dll entry points on the desktop & on a device? Andreas Huber 2009-03-08T17:27:18Z 2009-12-16T02:39:24Z <p>In a <strong>smart device project</strong> I'm trying to Pinvoke a function that should supposedly be available in mscoree.dll. The associated definition is as follows:</p> <pre><code>[DllImport("mscoree.dll", EntryPoint = "#29")] internal static extern int Object_GetHashCode(object obj); </code></pre> <p>You'll find this with Reflector in the internal class EE in mscorlib.dll. Note that this function is called from Object.GetHashCode().</p> <p>I have a <strong>smart device test project</strong> that indirectly invokes Object_GetHashCode. When I run it on the desktop everything works fine. When I run it on an emulator, then I get the following error:</p> <p>System.MissingMethodException: Can't find an Entry Point '#29' in a PInvoke DLL 'mscoree.dll'.</p> <p>Why does this happen? Doesn't exactly the same mscorlib.dll run on the emulator and on the desktop? It seems so because when I look at the implementation of Object.GetHashCode() that comes with mscorlib.dll distributed inside the NETCFv35.ppc.armv4.cab then I see that it also calls EE.Object_GetHashCode(). Why can mscorlib.dll call into mscoree.dll and I can't?</p> <p><strong>EDIT</strong>:</p> <p>The mscorlib reference in the Visual Studio project points to the following file,</p> <p>C:\Program Files\Microsoft.NET\SDK\CompactFramework\v3.5\WindowsCE\mscorlib.dll (210kB)</p> <p>but by default Reflector shows the contents of the following file:</p> <p>C:\Program Files\Microsoft.NET\SDK\CompactFramework\v3.5\Debugger\BCL\mscorlib.dll (920kB)</p> <p>These files have different implementations for System.Object.GetHashCode(). The former is simply <strong>empty</strong> while the latter looks as follows:</p> <pre><code>public virtual int GetHashCode() { return EE.Object_GetHashCode(this); } </code></pre> <p>In fact all methods in the former file seem to be empty and the much smaller size seems to hint into the direction that the former file is just a placeholder, so that VS can reference something?</p> <p>Lastly, I tried to find mscorlib.dll in the files on the emulator but failed. The Installer log file says the install location is \Windows but there's no mscorlib.dll anywhere. Where is this stuff?</p> <p>In general, I have a hard time Googling for answers when it comes to the CF, not sure why?</p> <p>P.S. I'm trying to find an answer to the <a href="http://stackoverflow.com/questions/470044/-net-compact-framework-gethashcodeobject-equivalent">this</a> question.</p> http://stackoverflow.com/questions/1907912/net-library-to-read-pdf-on-windows-ce 0 .net library to read pdf on Windows CE william 2009-12-15T14:42:29Z 2009-12-15T14:58:33Z <p>Hello, is there any .net library to make small app to read pdf on Windows CE ?</p> <p>thanks</p> http://stackoverflow.com/questions/1906408/drawing-controls-with-gdi-on-compact-framework 0 Drawing controls with GDI on Compact Framework penyaskito 2009-12-15T10:12:04Z 2009-12-15T13:30:14Z <p>I need to draw a textbox in a Compact Framework app, but using directly a Graphics object.</p> <p>I've found the Control.DrawToBitmap method, which I could use for drawing with GDI, but it's not available on Compact Framework.</p> <p>Any hints?</p> http://stackoverflow.com/questions/1906447/is-it-possible-to-write-an-activex-control-in-c-net-cf-for-windows-mobile 0 Is it possible to write an ActiveX control in C# .NET CF for windows mobile? Daan 2009-12-15T10:19:54Z 2009-12-15T12:45:54Z <p>We have a piece of legacy code in C# .NET, targetted for the Compact Framework. We would like to turn this code into an ActiveX control, which has to run on the .NET Compact Framework under Windows Mobile 5. Is it possible to implement such a control? If so, can anyone provice a good resource that explains how this can be done?</p> <p>I have already searched a lot, but have not yet found a definitive answer or resource. </p> <p>It would seem that this is perfectely doable on the full .NET Framework. I have also found that it is not possible to launch such a control from an unmanaged context. But otherwise, I cannot find the exact answer to my question.</p> http://stackoverflow.com/questions/1880133/how-to-allocate-memory-in-another-process-for-windows-mobile 0 How to allocate memory in another process for windows mobile Serafeim 2009-12-10T10:41:16Z 2009-12-15T08:39:14Z <p>I'd like to read the contents of another process listview control in windows mobile. To do this, I need a pointer to some free memory to that process in order to put the values there (and then read them from my process). This can be done in normal Windows or Win32 with the <a href="http://msdn.microsoft.com/en-us/library/aa909179.aspx" rel="nofollow">VirtualAllocEx function</a>. </p> <p>However, this function is not supported in windows mobile ! Can you recommend me a way to allocate that memory? </p> http://stackoverflow.com/questions/1889056/is-an-event-thrown-when-a-custom-control-gets-its-final-size-net-compact-frame 0 Is an event thrown when a custom control gets its final size? (.NET Compact Framework). VansFannel 2009-12-11T16:06:29Z 2009-12-14T15:14:46Z <p>Hello.</p> <p>I'm developing a Windows Mobile 5.0 or above with .Net Compact Framework 2.0 SP2 and C#.</p> <p>I have a custom control called PullDownMenu (it inherits from System.Windows.Form.Control). This is the code that I use on a WinForm to show it:</p> <pre><code>PullDownMenu menu = new PullDownMenu(); menu.Location = new Point(0, 0); menu.Dock = DockStyle.Fill; this.Controls.Add(menu); </code></pre> <p>I've noticed that it size changes during this process. How can I know when it gets its final size?</p> <p>Yes, I know I can check OnResize event but this event it is called serveral times and I think it can downgrade the perfomance.</p> <p>Is there an event that is thrown when the control is completely displayed? or when it is added to its parent (on this line: <code>this.Controls.Add(menu);</code>).</p> <p>Any adviced?</p> http://stackoverflow.com/questions/1438679/using-httputility-htmldecode-method-with-net-compact-framework 1 Using HttpUtility.HtmlDecode method with .NET Compact Framework? Zanoni 2009-09-17T12:50:29Z 2009-12-14T12:32:43Z <p>A project using .NET Compact Framework does not allow use System.Web library.</p> <p>How can I do to HTMLDecode a string using .NET Compact Framework?</p> <p>I didn't found any class that do that.</p> http://stackoverflow.com/questions/831393/efficient-way-to-swap-any-given-two-colors-in-image-using-net-compact-framework 0 Efficient way to swap any given two colors in image using .NET Compact Framework CJCraft.com 2009-05-06T19:46:08Z 2009-12-14T12:00:10Z <p>Is there an efficient way to take and image and be able to replace a given color with another given color using .NET Compact Framework?</p> <p>For example, to replace white with black or vice versa?</p> http://stackoverflow.com/questions/654105/how-to-detect-plugin-usb-in-compact-framwork 0 how to detect plugin usb in compact framwork 2009-03-17T12:53:29Z 2009-12-14T12:00:10Z <p>I want to attach a tracking box that has a serial port, with a serial to usb lead to a windows mobile. Is there anyway to detect usb plugin when i connect windows mobile device with tracking box through USB?</p> http://stackoverflow.com/questions/1120753/windows-mobile-app-play-stream-over-mms-protocol 1 Windows Mobile App - Play Stream Over MMS Protocol? mkmurray 2009-07-13T16:59:13Z 2009-12-13T13:05:00Z <p><strong>NOTE:</strong> This question is being reasked because I accidentally clicked Community Wiki in the previous one, and obviously that didn't provide enough incentive in the form of reputation for people to answer it. Here is a link to the old question, please do not duplicate those answers (they weren't exactly helpful anyway):</p> <p><a href="http://stackoverflow.com/questions/1106947/windows-mobile-app-play-mms-stream">Link to Original Question</a></p> <p>Now here's the question...</p> <p>I'm trying to write a Windows Mobile app targeting Windows Mobile 6.x that will stream an internet radio stream delivered via MMS protocol (just one feature among other things).</p> <p>Does the .NET Compact Framework have built-in controls or API's that will do this? Or would I need to start looking for a third-party library?</p> <p>I'm a little confused why this wouldn't be supported in the .NET Compact Framework? I mean MMS is Microsoft's proprietary Windows streaming protocol.</p> <p><hr /></p> <p>I'm actually not sure how to stream MP3 over http either. I have tried this, but it was unsuccessful:</p> <p><a href="http://msdn.microsoft.com/en-us/library/dd562692(VS.85).aspx" rel="nofollow">Some MSDN Article about using WMPLib.dll</a></p> <p>In fact, it is unsuccessful if I navigate to the mobile's Windows Media Player itself and give it the same URL I am trying to stream programmatically. However, this same URL does work from the Windows Media Player on my desktop computer. And yes, it is typed in correctly.</p> <p>I have actually come across another idea to play an MP3 file on Windows Mobile in my custom app, but it doesn't have the ability to stream on the fly. Instead it downloads the entirety of the file before playing it on the mobile device. Here is some code:</p> <pre><code>string url = @"http://blahblah.com/blahblah.mp3"; string tempFilePath = Path.GetTempPath() + "tempFile.mp3"; HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(url); using (HttpWebResponse response = (HttpWebResponse)request.GetResponse()) { byte[] buffer = new byte[1024]; int bytesRead = 0; using (Stream responseStream = response.GetResponseStream()) { using (FileStream fs = new FileStream(tempFilePath, FileMode.Create, FileAccess.ReadWrite)) { while ((bytesRead = responseStream.Read(buffer, 0, buffer.Length)) &gt; 0) { fs.Write(buffer, 0, bytesRead); } } } } SndPlaySync(tempFilePath, 0); </code></pre> <p>And here is the DllImport:</p> <pre><code>[DllImport("aygshell.dll", SetLastError = true)] private static extern IntPtr SndPlaySync(string Path, uint Flags); </code></pre> <p>Does anyone have any advice for how to stream the MP3 instead?</p> <p>Thank you in advance.</p> http://stackoverflow.com/questions/1895935/throwing-events-through-objects 0 Throwing events through objects VansFannel 2009-12-13T08:37:36Z 2009-12-13T10:18:37Z <p>Hello!</p> <p>I'm developing a <strong>Windows Mobile 5.0 or above</strong> application with <strong>.Net Compact Framework 2.0 SP2</strong> and <strong>C#</strong>.</p> <p>I have a Winform (<strong>Form1</strong>) with a control (<strong>Control1</strong>) that contains another control (<strong>Control2</strong>). For example, a winform with a panel and inside this panel there is a button, but in my case <strong>Control1</strong> and <strong>Control2</strong> are custom controls.</p> <p><strong>Control2</strong> has an event, <strong>Click</strong>, that is thrown when the user does click over it. This click event must be handled by <strong>Form1</strong>. To do it, first I handle the event on <strong>Control1</strong> that throws a new event that is handled on <strong>Form1</strong>. This my code:</p> <p><strong>On Control1:</strong></p> <pre><code>public event EventHandler Control2Click; private void control2_Click(object sender, EventArgs e) { if (Control2Click != null) { Control2Click(sender, e); } } </code></pre> <p><strong>On Form1:</strong></p> <pre><code>private void control1_Control2Click(object sender, EventArgs e) { // Do something interesting. } </code></pre> <p>Is there a better way to handle Control2_Click directly in <strong>Form1</strong>? I don't know if my way has a bad performance and this kind of events can be handled better.</p> <p>Thank you!</p> http://stackoverflow.com/questions/1895952/an-application-design-question 0 An application design question. VansFannel 2009-12-13T08:55:06Z 2009-12-13T09:14:38Z <p>Hello!</p> <p>I'm developing a <strong>Windows Mobile 5.0 or above</strong> application with <strong>.Net Compact Framework 2.0 SP2</strong> and <strong>C#</strong>.</p> <p>I have to libraries: one to access SQL Server CE and the other with Custom Controls.</p> <p>When I retrieve data from SQL Server I use structs to return them. These structs are defined on library one.</p> <p>My problem is that these data is used with some Custom Controls on library 2. How can I fix?</p> <ol> <li>Referencing library1 on library2. I can do that but library1 is specific to this project and library2 can be used and must be used in another projects that don't use library1.</li> <li>Creating another library to store this structs?</li> <li>??</li> </ol> <p>What do you think?</p> http://stackoverflow.com/questions/1879558/sqlceresultset-problem 0 SqlCeResultSet Problem Vlad 2009-12-10T08:46:05Z 2009-12-11T20:52:33Z <p>Hello,</p> <p>I have a SmartDevice project <em>(.NetCF 2.0</em>) configured to be tested on the <em>USA Windows Mobile 5.0 Pocket PC R2 Emulator</em>. My project uses <em>SqlCe 3.0</em>. Understanding that a SmartDevice project is "more carefull" with the device's memory I am using <em>SqlCeResultSets</em>. The result sets are strongly typed, autogenerated by Visual Studio 2008 using the custom tool <em>MSResultSetGenerator</em>.</p> <p>The problem I am facing is that the result set does not recognize any column names. The autogenerated code for the fields does not work. In the client code I am using</p> <pre><code> InfoResultSet rs = new InfoResultSet(); rs.Open(); rs.ReadFirst(); string myFormattedDate = rs.MyDateColumn.ToString("dd/MM/yyyy"); </code></pre> <p>When the execution on the emulator reaches the rs.MyDateColumn the application throws an <em>System.IndexOutOfRangeException</em>.</p> <p>Investigating the stack trace </p> <pre><code> at System.Data.SqlServerCe.FieldNameLookup.GetOrdinal() at System.Data.SqlServerCe.SqlCeDataReader.GetOrdinal() </code></pre> <p>I've tested the <em>GetOrdinal</em> method (in my autogenerated class that inherits <em>SqlCeResultSet</em>):</p> <pre><code> this.GetOrdinal("MyDateColumn"); // throws an exception this.GetName(1); // returns "MyDateColumn" this.GetOrdinal(this.GetName(1)); //throws an exception :) </code></pre> <p><hr></p> <p><strong>[edit added]</strong></p> <p>The table exists and it's filled with data. Using typed DataSets works like a charm. Regenerating the SqlCeResultSet does not solve the issue, the problem remains.</p> <p>The problem basically is that I am not able to access a column by it's name. The data can be accessed trough <pre><code>this.GetDateTime(1)</code></pre>using the column ordinal. The application fails executing <pre><code>this.GetOrdinal("MyDateColumn")</code></pre>.</p> <p>Also I have updated Visual Studio 2008 to Service Pack 1. Additionaly I am developing the project on a virtual machine with Windows XP SP 2, but in my opinion if the medium is virtual or not should have no effect on the developing.</p> <p>Am I doing something wrong or am I missing something?</p> <p>Thank you.</p> http://stackoverflow.com/questions/1882556/emulating-animation-with-panels-on-net-compact-framework 0 Emulating animation with panels on .Net Compact Framework. VansFannel 2009-12-10T17:19:20Z 2009-12-11T19:54:12Z <p>Hello!</p> <p>I'm developing a <strong>Windows Mobile 5.0 or above</strong> with <strong>.Net Compact Framewor 2.0 SP2</strong> and <strong>C#</strong>.</p> <p>I'm trying to "animate" five panels changing their locations on a Timer_Tick event but these panels move very bad. They move like jumping.</p> <p>What I'm doing wrong?</p> <p>Thank you.</p>