I resubmitted it and at least for now it seems to be working again. :-D
CJCraft com
Posts
-
Issue with Article I just posted -
Issue with Article I just postedPlus I can't modify it. It doesn't show who created it. And I think it should show it's path as being under a certain category. I just this if I try to modify: You do not have permission to edit this article
-
Issue with Article I just postedhttp://www.codeproject.com/useritems/Popfly.asp[^] Articles by CJCraft.com says I have posted 4 articles, but this article does show show up. Plus it does not show up in the http://www.codeproject.com/silverlight/[^] And if I try to report it as a broken link I get the following: Report Article Issue Unable to retrieve article information. Can anyone help? :(
-
Running a Compact Framework App on a desktop PCYou have to have a new version of the .NET Framework on the desktop for the Compact Framework functionality to work. Also, if you use anything like SQL CE, or hardware P/Invokes.
-
Free printer libraries for Windows CE?You could try the HP mobile printing SDK: http://www.hpdevelopersolutions.com/mobile/index.cfm
-
what is Symbian OS?Maybe you came across this article: http://www.sonyericsson.com/developer/site/global/newsandevents/latestnews/newsnov03/p_news5112.jsp The product is AppForge's CrossFire: http://www.appforge.com/products/enterprise/crossfire/index.html It looks good but I would be hesitant to try it at this early stage.
-
FindFirstFlashCard/FindNextFlashCardHi, FindFirstFlashCard and FindNextFlashCard would be very difficult to P/Invoke in the .NET Compact Framework. But there is an answer on this here: http://www.cjcraft.com/DesktopDefault.aspx?tabid=38 Q. How do I find any removable storage devices that may be installed on the Pocket PC device in the .NET Compact Framework. DirectoryInfo rootDir = new DirectoryInfo(@"\"); FileAttributes attrStorageCard = FileAttributes.Directory | FileAttributes.Temporary; foreach( FileSystemInfo fsi in rootDir.GetFileSystemInfos() ) if ( (fsi.Attributes & attrStorageCard) == attrStorageCard ) //Found storage card
-
SD Card corruptionEventually SD card's cannot retain new writes. But this is after a very large number of writes. If you were reading and writing to the SD card continuosly I suppose you could have reached that point. Have to tried reading and writing to the device's memory instead of the SD card to confirm that it is indeed a problem with the SD card. Do you have another SD card you could try? Or another device you could test the card on?