Answer Questions
swg Trouble with Threading on Motorola Q Smartphone
I'm having some trouble with threading on a Motorola Q Smartphone which runs WM5 as you know. I have a C# program that I've been running under XP quite successfully. When I recompile it (with a different UI of course) for the Q, the threads to not start. Here's a code snippet... _thread = new Thread(new ThreadStart(Receiver)); _thread.Start(); which is executed in the main thread and where Receiver is: private void Receiver() { ... } I have some debug output that dumps messages to a text box on the display. The message dumped by the thread when it first starts never makes it to the display. Any ideas why this simple code would work under XP but not on a Q Thanks, FM Pro ...Show All
gve2002 [Vista] + Device Emulator + Mobile Device Center
Hello, I have just migrated to Windows Vista. Everything is working (for now :-) ), I only have some problems with cradling VS 2005 Pocket PC Device Emulator. (to be more specific, i would like to share Internet between my computer and my Virtual Pocket PC.) I learned, that Active Sync was changed with Windows Mobile Device Center and that the WMDC should install via Windows Update (i run everything and checked in control panel, but WMDC was not there). Next information I received was the following one: Your Windows Mobile device must be connected to the computer for Windows Update to be able to detect the driver update and install the update. The problem is, that I don't have a physical device, I am o ...Show All
Biocide Stock Por sample "How tro write an ActiveSync Service provider"
Can anyone tell me how to get the StockPor device application to load on one of the devide emulators in VS2005 It would really help me to learn what the code is doing much faster it I could trace the code.. I have tried to load it on every emulator(I think) in the device manager in vs2005 with no luck. What version of Pocket PC is it written for Thanks Jon Stroh It is for whatever OS version the SDK itself is. What is the error you see I hope I am giving you the right info here. What I found in the readme file was Windows Mobile Pocket PC Version 5.0 SDK. I am only pursueing the StocPor sample because I need to learn to write a ActiveSync Service provider, is it true that RAPI and C# there is no way to accomplish acces ...Show All
LISA86 CreateToolhelp32Snapshot Windows Mobile 5
have struggled with getting the Sample app 'pviewce' to work under Windows Mobile 5, on an Imate Jamin (QTEK S200). For some reason CreateToolhelp32Snapshot(); Returns an INVALID_HANDLE_VALUE Now it gets even more weird, GetLastError() r== 8 Which means : "Not enough storage is available to process this command. " I still have 19MB of free RAM, and other applications that use CreateToolhelp32Snapshot (exe files) seem to work. Security is switched off. I am using "Windows Mobile 2005 SDK" for the PocketPC Any clues Thanks ... I have exactly the same problem on Windows Mobile 5.0 (Pocket PC) calling CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0) from a DLL It returns a ...Show All
Trish AutoPostBack Property in .net compact framework
Hi All, i am using dropdown list for my project in which i want to set AutoPostBack property to true. But i dont see it in forms property. Can anyone help me in setting autopostback property true. Note:: I am working on .net Compact framework (C#). Thanks man!!! finally i did it in other way AutoPostBack is an ASP.NET property, and not present in Windows Forms either on the desktop or Compact frameworks. Peter ...Show All
ELDHOSE_BABY_a06ce9 Javascript question (how to pass strings with white space?)
Although this is a javascript question, it's related to VE because I'm writing a webservice function which writes javascript on the server-side. I have a simple question. I want to pass a string value (in my case a tag), to a javascript function: So I have someting like the following: <pre> tagCloud.Append("<a href=# onclick=SetTag("" + tag + "") >" + tag + "</a> "); </pre> eventually this is rendered to screen where I have the typical tagcloud that allows a user to click tags and filter stuff. The problem is that when the value "tag" contains whitespace the javascript breaks. I thought by putting " I would solve this... but it's obviously not workin ...Show All
Pintoo Khaira no exe in task manager
Hello, I have the strange phenomen that my cf2.0 application is not show in the windows task manager. (PocketPC 2003/SE and Windows Mobile 5) Can someone tell my why Thanks Karin In most cases developers are trying to _not_ show application in task manager, so I would guess blank application shows it. You can create new blank application and replicate whatever it does on to your application. Your right, I didn't set the this.Text property of the form with a text. It was blank, but now I set it in the first shown form. But their isn't an entry in the task manager. My forms are maximized. Could that influent the task manager Here are some properties I set on the first shown form: this.AutoScal ...Show All
su45937 .net compact framework won't install on my mobile 2003 arm pocket pc.
Error says it isn't compatible with my device. I need this in order to run my most useful software on the pocket pc. The latest revision of my software (myOffice.net) requires the .net compact framework. Any clues why this isn't working More info: toshiba 350, intel PXA255. Thanks. Please, someone respond. I believe that version 2.0 is what is needed, although i haven't received an answer yet from the software developer yet. Their installer stalls when trying to install their updated versionof the software as it requires the .net framework runtime from their site. I tried to install the package from microsoft and got the same errors. Not sure of your specific question ...Show All
Cody21 Using Device Emulator to support non-local WinMobile users
Greetings, I'd like to use the DE to support multiple WM devices, all apart from my physical location. Ideally, I'd like each emulator image to run the same ROM image as the deployed device and have the same appearance. From the emulator's help file, it seems I can extract a run-time image from a connected physical device, so it looks like I can handle the first desired item. I've looked high and low for emulator skins without luck. Barry Bond's August 06 link http://msdn.microsoft.com/mobility/downloads/Emulator/default.aspx,%20lists is not found any longer. Lastly, I have downloaded, via Verizon & UT Starcom, the AKU 2.2 update for its XV-6700. The ROMS are in .nbf. Any development tools to make them usable with the emula ...Show All
aliasx How do you print a bird's eye view in Local Live?!
How do you print in windows local live ! I've tried numerous times, but have come up empty! Why can't I simply do file:print Why does windows only allow me to print an aerial or a road map It's stupid! I'm going to Google Earth. Do you still need help with this if so email me at storms1151@hotmail.com and put in the subject "Birds Eye View" and i'll give you some Ideas. It's kind of tedious but I've printed some good pics. AAAAAAAAAAAAAAAAAAAAAAAAHHHHHHHH wrote: How do you print in windows local live ! I've tried numerous times, but have come up empty! Why can't I simply do file:print Why does windows only allow me to print an aerial or a road map It's stupid ...Show All
capitapicard TextBox, KeyDown and Enter
Hi all, I have written a tiny application with a TextBox on a form, where the TextBox has a KeyDown event handler like this: private void textBox1_KeyDown( object sender, KeyEventArgs e) { if (e.KeyCode == Keys .Enter) { e.Handled = true ; MessageBox .Show( "You pressed Enter!" ); } else if (e.KeyCode == Keys .Escape) { e.Handled = true ; MessageBox .Show( "You pressed Esc!" ); } } When I run this program on a Windows Mobile 2003 device (a Psion Workabout Pro), it works just fine. However, when I run the same program on a Windows Mobile 5.0 device (an Intermec CK61) the Enter key doesn't work. Esc pops up the message, but Enter just beeps and nothing happ ...Show All
Marcelo Hern&#225;n Ruiz Is msn search api good for my purpose?
hi there you know, i plan to wrtie an application that will be sensitive to the news that contain some certain keywords from about 20 known web sites. First of all these news websites are not in english and use an other language . Seconed the sites publish news every 3-4 hours. My question is that if i can use msn search api in my application to get to these goals or i have to write my own web crawler Please help me find a best solution for this application. and if you know any other solution other than above please let me know. thanks in advance. Vahid hey frank, thank you. Acctually i myself agree with you. If you are only needing results from 20 kno ...Show All
TheViewMaster How can I use contact list in my aplication?
How can I use contact list in sdk 1.0 aplication You have to use POOM. If you are using the compact framework your best option is buying Peter Foot's wrapper at: http://www.inthehand.com/PocketOutlook.aspx Is there any other way to use contact list without POOM Not that I have read... I have some POOM examles and does n't it work ...Show All
Sabrecat Robot Invaders Contest Winners
It's time to annouce the winners for the Robot Invaders contest. The contest ran from May 15th to September 15th and in the end 53 Messenger bots were accepted as valid entries in the contest ( per the how to compete guidelines ). Each entry to the contest was judge by three judges separately using the Judging Criteria outlined on the How to Compete page and then the judges scores were averaged. There were a lot of great robot's submitted but here's the winners: Title Prize LiveBot Grand Mother Nature 1st Spleak 2nd Mobile Record bot 2nd Virtual Secretary 2nd Dr Phile Knowledge 2nd Comtec Travel Bot 2nd Search Bunny 3rd ...Show All
Helen Cool Granny User Control data binding
Hi! I am trying to bind a UserControl Text property to SqlCeResultSet: Binding b = new Binding("Text", myResultSet, "DateDataEntered"); b.Parse += new ConvertEventHandler(ParseCtrlValueToDate); b.Format += new ConvertEventHandler(FormatToDateCtrlValue); myUserControl.DataBindings.Add(b); I overridden Text property fro my UserControl, but could not specify [Bindable(true)] attribute - it looks like it is not supported by compact framework (yaks...). It looks like my control displays value from the first row in the data table, but not parsing value back to database.All other bound controls on the form transfer data back and force without problems. How can I properly bind UserControl I ...Show All
