Answer Questions
hostile17 "I'm not ready to publish yet"
Is there any way for a smart content plugin to stop the publishing progress because it isn't ready yet eg it is busy doing some work to create something and hasn't completed Actually I think an exception is the right thing, although it would be better if we gave you a documented exception to throw and documented the behavior of Writer encountering that exception during GeneratePublishHtml(). I'll forward your feedback along to the appropriate people, thanks. If you could put a flag that i can set to cancel the publishing process into generatepublishhtml() that would be grand.. at the moment i have to throw an exception in there to cancel which is a bit ugly I think what would be good Joe, is f ...Show All
Duane Haas Open a File
Hi, I have this problem: In my application i have a button, and in its onclick property i have the path of the file that i want to open, so my doubt is how can i open that file automatically once i had pressed the button thanks Take a look : Open a file with it's default program like jpg thanks, it worked ...Show All
ECE Can I write my own shim engine?
The Application Verifier used the shim engine to do a lot of work. In the Memory Leak Detection presentation of MEDC2005, it is said that shim engine will be open for the developers soon. Can I write my own shim engine and is there any sample code Thanks Sorry but this might not be possible at the moment. I'm not aware of any samples or documentation on writing a shim module. ...Show All
Tamim Sadikali Deployment and/or registration failed with error: 0x8973190e. Error writing file '%csidl_program_files%\test\system.wind
hi, I have wrote a simple C# device application program intend to call the function from the managed C++/CLI Class library in the form of *.dll file. The *.dll is named as pll.dll. My procedure is added the pll.dll file as 'add reference' and i Rebuild the C# device application project concurrently. Afterthat, i tried to deploy it to the PC Pocket emulator. Somehow the deploying process failed all the time and the error is like below. Error 1 Deployment and/or registration failed with error: 0x8973190e. Error writing file '%csidl_program_files%\test\system.windows.forms.dll'. Error 0x80070070: There is not enough space on the disk. Device Connectivity Component Is there anyone can help me to solve this problem and tell me the ...Show All
lushdog Plot Multiple Trips on one map
Hi there, Furthering my saga, I need to offer driving instructions starting at A, going to B, then, going to C, then, going to D... GetRoute seems to only offer point A to B, and will delete the instructions from A to B when I request B to C, Right Any ideas on how I could accomplish this Thanks, se Hey Everyone, turns out I was full of it... it works fine so far now... se Hi Scott, can you write more info about Plot Multiple Trips Thanks in advance! ...Show All
James CACN how to start develop C#.NET application on Windows Mobile 5
i have install VS.NET and WM 5.0 SDK on my pc but i don't know how to config it to develop and run my application on my emulator what happens if you don't close the emulator it appear like this ( http://www.free4up.com/Image/51/182200164069045.png ) is i need to wait it for while full screen after it finish deploy (ready) http://www.free4up.com/Image/51/029069064202065.png i have create new project and add new form (name "Main"), in my form have 1 button and 1 textbox code (Main.cs) : using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace AdvWorksMobile { public partial class ...Show All
Tamila SAPI 5.1 with C#
i'm going to develop the application for the text-to-speech & the voice recognition in PDA Phone in Windows Mobile 2003. I've found that application with SAPI 5.1 could convert the text to speeech in WindowsXP. Could the SAPI5.1 be used in Windows Mobile 2003 If no, is there any API that can convert the text to speech in Windows Mobile 2003 Thanks~~~ No, there's no TTS on WM platform. You need to purchase, install and use 3rd party TTS engine (if it exists). i'm going to develop the application for the text-to-speech & the voice recognition in PDA Phone in Windows Mobile 2003. I've found that application with SAPI 5.1 could convert the text to speeech in WindowsXP. Could the SAPI5.1 be used in W ...Show All
Sean Connolly Help Needed - Windows Mobile and Storage card
Hello! Have a windows mobile HTC Tytn rebadged as Vodaphone Just broughta new storage card, and yet when i open windows media player on my PC it doesnt pick it up. It picks up the on board one. 'My computer' sees it. My phone knows its there, as i have stuff stored on it, but not media player. I have been into every setting, preference and option and cant seem to change anything so i can point it to the card. Any ideas Cheers This forum is smart device development related. Since your question is not related to smart device development, it's off topic here. If you’re having a hardware issue, please contact hardware manufacturer or reseller. If you having an issue with 3rd party s ...Show All
Starfish2000 How to play wav through phone line?!
I try to make a answering machin for pocket pc 2003. So I need to play wav through line when incomming call happend. How should I play wave files through lines ! You saw the answer in another thread which states it's not possible due to hardware limitations (restriction most likely mandated by carriers). By the way, the fact you can make answering machine for analog line does not mean you can make one on a cell phone. For example, some person can fly down, but that does not mean the same person can fly up. So you want to say that it is impossible to developing an Answering Machine software for Pocket PC 2003 ! Ilya Tumanov wrote: By the way, the fact you can make answering machine for analog line does n ...Show All
ideal24293 Writing EXIF Metadata in Windows Mobile 5
I have a problem for embedding EXIF metadata information to a JPEG file in a PDA (using Windows Mobile 5). There's a good example to read EXIF metadata from a JPEG: http://www.pocketpcdn.com/forum/viewtopic.php t=6211 I can easily replace the command GetPropertyItem with SetPropertyItem, but what next Because in my opinion, these commands are applied in a memory stream and we have to save it into file if we want to embed the EXIF metadata to a JPEG file. Please help! Thank you in advance. You need to use IImagingFactory::CreateImageEncoderToFile. Once you got the IImageEncoderPointer, call GetEncodeSink on it and use IImageSink::PushPropertyItems to set property items Thank ...Show All
GeneralCody Using return in a foreach statement
Hello, I faced a strange (somehow resolved) problem with an exception being thrown without much explanations. I'd like to know if someone can point me to the article or specification talking of this behavior, since I didn't find anything yet and am pretty curious about it. I was messing around with the NETCF2 PocketOulook API and wrote a simple method to retrieve a PimItem in a collection given an itemId which looked like this: public PimItem GetItem( PimItemCollection collection, int itemId) { foreach ( PimItem item in collection) { int iId = int .Parse(item.ItemId.ToString()); if (iId == itemId) return item; } return null ; } When the itemId was correct for the collection and the corresp ...Show All
sea2006 calling Form.ShowDialog() and then BeginInvoke
On my UI thread, I am calling Form.ShowDialog for one of my form objects. Later, from a different thread, I am calling form.BeginInvoke(yadayada). As soon as I call begin invoke, the VS degugger shows the ShowDialog() line of code and shows the exception: ArgumentException. "ArgumentException was unhandled". In the documentation for ShowDialog it says that an ArgumentException is generated under this condition: "The form specified in the owner parameter is the same as the form being shown.". Are you not allowed to call BeginInvoke on a form that is being shown with ShowDialog() Now I am using Control.Invoke instead of Control.BeginInvoke for an unrelated reason, but that solves this i ...Show All
Jonty-UK How to access the controls created in Main thread from a worker thread?
Hi All, I am developing an application for PocketPC in C#.NET, VS2005. It contains a form and few buttons. When the application starts, an worker thread will be created. At certain point of time during the course of execution, the worker thread will be trminated. Before terminating the thread, I have to set the 'visible' property of a button to 'false'.. When I try to do that inside the worker thread, it is raising the following Exception Control.Invoke must be used to interact with controls created on a separate thread. How can I be able to access the property of the button created in main thread from the worker thread... Hi Khan, I am not clear about your point... Can you please e ...Show All
thisiswhere setting zoom level dynamically
hello, I am having from and to locations and I am able to display the driving directions between the two locations. but the points are coming very near. How can I set the Zoom level dynamically without hardcoding the zoom level value. thanks in advance PradeepA your best bet is to use the SetMapView to dynamically set it for you, passing in your locations. http://dev.live.com/virtualearth/sdk/ref/HTML/M_Namespace_VEMap_SetMapView.htm I think that uses the same logic to set the view as the route function. The issue there a finite set of zoom levels so the next one in/out may not quite work or the algorithm is set to side on the edge of safety to make sure its visible. You could do a latlon2pixel on the two poi ...Show All
Oliver 123 VE still not working...
My VE Application is not working ... Error: Map is null or is not a object The VEiSDK still not working too... :( []'s How fast is your internet connection Is it only slow when you try to switch to 3D mode 3D mode is very hardware intensive, and requires a lot of RAM, hard drive space, a good video card, and broadband connection. If is slow just in 2D mode, I would suggest clearing your browser cache and see if that helps. If it slow only when viewing mashups (in other words, is maps.live.com slow ), then it may be some sloppy coding is causing a memory leak. Just some thoughts. Thanks, CalebT Its working for me Mauricio. When you get the dreaded map is null error it means that t ...Show All
