Answer Questions
Martin Schmidt LIBCMTD.pdb linker warning + "RTTI gotcha" post SP1
Hello, After installing VS2005 Service Pack 1, the linker started to warn me about not being able to find "libbmtd.pdb". Here are two of those warnings... (I get these warnings with ".exe" and ".lib" projects, but not with every project that I have). Linking... Creating library Windows Mobile 5.0 Pocket PC SDK (ARMV4I)\Debug/<PROJECTNAME>.lib and object Windows Mobile 5.0 Pocket PC SDK (ARMV4I)\Debug/<PROJECTNAME>.exp LIBCMTD.lib(gshandlereh.obj) : warning LNK4099: PDB 'libbmtd.pdb' was not found with 'D:\Program Files\Microsoft Visual Studio 8\VC\ce\lib\ARMV4I\LIBCMTD.lib' or at 'f:\<PROJECTDIRECTORY>\Windows Mobile 5.0 Pocket PC SDK (ARMV4I)\Debug\libbmtd.pdb'; linking object ...Show All
lord_8 Close TabPage by Tap & Hold on TabPage's Node (Head)
Hello, A few days back I posted a question here:http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=703875&SiteID=1 that how to detect Tap and Hold, I thank Alex that he provided an easy solution. I'm done with that. Now I want to use it on TabControl, I have many pages on the TabControl and I want that when I Tap and Hold on any Node (Head) of the TabPage it should open up menu showing "Close Tab", I click it and that TabPage may Close. The Problem I'm facing is that, When I put context menu on tab page, it shows up only one the page area of it is Tapped and Holded but not the Head . And if i put context menu on the TabControl then it doesnot show up altogether because it doesnot have MouseDown event Can anybod ...Show All
David Graton "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. I think what would be good Joe, is for an event handler similar to the HTMLcapture event handler... 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 ha ...Show All
ALFKI Check for land / disable zoom
Hey I have 2 questions, that I'm hoping you can help me with. 1. Is it posible to determine if a specific position is land or water 2. Is it posible to disable the mouse wheel zoom function Or just disable zoom 1. You should be able to use the MapPoint web service method "GetLocationInfo" to figure out if a given location is over land or water given the "Entity" it returns. Not a built in VE function, but still pretty easy to use. 2. Can you trap the mouse wheel event at the page level in a page and cancel the bubble I'm not a Javascript guru, but I thought this might be possible Regards, Dave Hi Bart I haven't got the time to work on it yet, so I'm st ...Show All
ACCOUNTINGONLINE.US Convert a bitmap to an icon in compact framework for ppc2003
Hi Everyone, I am trying to convert a imagelist image (a bitmap) to an icon so that I can use the graphics class to draw it with transparency. However I cannot work out how to convert a bitmap into an icon - I've found samples like this: Bitmap bitmap = new Bitmap(16, 16); [..] Icon icon = Icon.FromHandle(bitmap.GetHicon()); But this doesn't work as GetHicon is not supported in the CF. Any suggestions Regards Mike Oleary And yet it’s probably better than a hack you’ve been about to introduce. Not to mention that hack could not possibly work even on desktop since after icon is converted to bitmap transparency mask is lost and converting bitmap back to icon won’t restore it. Anyway, ...Show All
DaveThompson how to send SMS on compact framework
how to send SMS on compact framework hi, look this sample how to send sms using .net compact framework using Phone API. best regards, If you are using a Windows Mobile 5.0 device, use the class SmsMessage . Hi huzaifa, in this case, you don't need compact framework. You will need to connect the phone to the PC by USB or serial port, and then from your desktop application connect to the phone and use it as GSM Modem to send the SMS you want, but you must know how to connect to the phone by means of AT commands, or just use a 3rd party free component from the internet to do this for you. i did this before with my Nokia 6150 cell phone before, and it worked. Regards, if th ...Show All
Xiame VB.net mobile 5.0 application Cab File...please help!!!
All of a sudden when i build my app, then I build my Cab File the Cab file itself is over 2mb...it used to be under 1...and it does not work has anyone else had this happen...is there a fix... cannot deploy new vrsions.... thanks in advance Mase Thanks for responding...I am going to re-phrse this issue... One minute i compile my app and the cab file is 768kb... then i go in and write a few lines f code, compile the app and the cab file is over 2mb...it is not copiling correctly...has any had this issue...thanks Sorry, that does not help at all, no useful information again. You did not even mention how you're creating the CAB and which version of VS you have and that is rather important. NETCF V2 CAB is over 5 MB ...Show All
Subtle Suppress Incoming Call
Hi all, I have an application that can dial and receive calls. Dialing is working and OK. When receiving a call, my app receives a incoming notification and also the usual phone shows me the incoming notification. the phone notification is of higher precedence than my application notification. I am unable to go to my application and answer the call. I want to supress phone notification of incoming call. If anyknow the solution, please help me I am blocked because of this. Thanks, Ramsarvan. This forum is primarily monitored by Visual Studio for devices group. Please check this link for more appropriate forum for this type of queries. http://forums.microsoft.com/MSDN/ ...Show All
gfhyang stopwatch on compact framework
hey guys i am doing a stopwatch for an app on windows mobile 5.0 who has 2.0 .NET CF, am trying with the qeryperformancecounter() and queryperformancefrequency() and didnt get all the results i want, and came across thru this in the namespace system.diagnostics there is a class stopwatch, on msdn site .NET Compact Framework Supported in: 2.0 but i cant use it. i am programming on visual studio 2005. any help is thanked... does this class really exists You should use both and fall back to Environment.TickCount if QPC data does not make sense. Ilya Tumanov wrote: It’s possible what CPU goes into power saving mode with lower CPU clock. If you’re using QueryPerf ...Show All
ByteRider TabControl and focused control per tabpage
Hello everyone, I have a TabControl with a number of pages each having a number of controls. When I switch back to a page that previously had a control focused (for instance a TextBox) this control is not focused anymore, there are no focused control at all. Are there no support in the CF to track the focused control per tabpage If I have to do this myself, how do I get the currently focused control on a TabPage (or the entire Form) TIA Lars Something like that: public Control GetFocusedControl(TabPage page) { foreach(Control ctl in page.Controls) { if (ctl.Focused) { return ctl; } } return null; } Aren't there any better way ...Show All
Craigton How to continue using an application whilst waiting for a function to execute repetitively on a fixed interval
Hi i am ruuning the following extract of coding from visual basic 2005: __________________________________________ Dim start, finish As Double Do While DateTime.Now.Hour < 17 start = Microsoft.VisualBasic.DateAndTime.Timer ' Set end time for 30-second duration. finish = start + 30.0 Do While Microsoft.VisualBasic.DateAndTime.Timer < finish ' Wait a while before doing next action Loop call_a_function() ' Go off and do something then come back Loop ______________________________________________________ While the program falls into the "wait state" (2nd do while loop) the program stops me accessing anything else on the active form, like using a drop dow ...Show All
selva_kumar How I create Word Document using c#
Dear sir I want create one Word Document with Html Format. Please give me some suggestion Vijil Bangalore You could always just write a text file and name it as a word doc. That way when word opens it through association it will add the proper encoding when the user saves it the next time. Take a look at System.IO.File for the methods to create this file. ...Show All
Jean-Pierre Fouche Map Control: What is legal?
We are having a bit of trouble understanding the legal stuff for Virtual Earth. What we want is a very small internal system that simply displays a map with pushpins/custom icons. The system has a very small number of transactions daily. By internal system, we mean used by 3 people internally in a company. The site must not be accessible to the public. Can we do this free, or will we have to purchase a license That is really disappointing in MS. I understand they don't want to deal with small companies but not when Partners are not allowed to supplied licensing to small companies. Currently there is no reseller plan in place they tell me. If there was I could offer you a per user per month license tha ...Show All
ycjj drawtext, drawstring or something like that??
please guys.. How can I use Drawtext, drawstring, etc for CF because drawtext on SmartDevice different with windowsForm. I can't find it.. many thanks before.. I've answerd on NG: http://groups.google.com/group/microsoft.public.dotnet.framework.compactframework/browse_frm/thread/53db1f0ee08af438/67b8207f4bd09730 hl=en#67b8207f4bd09730 ...Show All
icarous Getting the tic tac toe example
Where do I get the entire Tic Tac Toe example mentioned in the SDK TIA Ok, it works fine. Thank you very much for your help!! :) R.P. English is my mother language either, funny to have a conversation in English then . To test the activity, you and your friend both need an XML file called msgrp2p.xml in your Messenger directory. Please see the Testing an Activity page for more information. J-Thread wrote: And here you go. I haven't got a good server to host it on at the moment, so if somebody would be so kind as to place the file on his website and post the link here This link is again a temporal one, so you must downlo ...Show All
