Answer Questions
raq Custom domain and mailboxes
Hello, I like the idea for the custom domains and the mailboxes you can add. But the thing I'm missing is support for multiple mail addresses for 1 box. Now my question is.. did I overlook an option (or is it in the SDK) for this Is this option to be implemented I did find the "send as" part, but not the recieve part (the most important one imho). DJM You are referring to a mail alias feature. For example, having mail to sales@mydomain.com end up in john@mydomain.com 's mailbox. This is a popular request and we're working on this feature to release in a later version. Brian ...Show All
Edi-Mobixell Problem creating NDISUIO handle
Hi I am having a problem creating a handler for pocket pc. Below is a snippet of the code i am using. It works perfectly in WinXP but not in Windows Mobile5.0(Dell Axim X51V) I had changed the pinvoke to use coredll.dll for pocket pc. private const string NDIS_FILE_NAME = @"\\.\\Ndisuio"; DriverHandle = CreateFile(NDIS_FILE_NAME, GENERIC_READ | GENERIC_WRITE, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, INVALID_HANDLE_VALUE); DriverHandle returned is -1 which is INVALID_HANDLE_VALUE. After the create file i got error code 161 which is "ERROR_BAD_PATHNAME - The specified path is invalid." Is my path to Ndisuio incorrect Or anyone know what is wrong Thanks in advance. It menti ...Show All
jwellsntr Adding a GeoRSS layer from a local file
Hello All, I would limke to add a GeoRSS layer from a local file as oppsed to a web server. function OnPageLoad() { map = new VEMap( 'myMap' ); map.LoadMap( new VELatLong(43.85828, -79.3821), 10 , 'r' , false ); AddMyLayer(VELayerType.GeoRSS, "file:///C:/geolayer.xml" , "test" ); } function AddMyLayer(type, source, layerid) { var veLayerSpec = new VELayerSpecification(); veLayerSpec.Type = type; veLayerSpec.ID = layerid; veLayerSpec.LayerSource = source; veLayerSpec.Method = 'get' ; map.AddLayer(veLayerSpec); } However, I get an error when I do that. If I specify http://loaclhost/geolayer.xml or something like that for the LayerSource property then i ...Show All
Pak Lui 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
X4U Fit all pushpins with correct zoom
Hello, I have a question on how to figure out correct zoom so that all pushpins will be visible Let's say i have pushpin on CA and pushpin in NY. How to tell(calculate) to the map to have zoom, so both pushpins will be visible Thanks Albert I guess i found it. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=565430&SiteID=1 ...Show All
martona Where to download "Code Clip" used in PlatformBuilder
When I watched a video of basic using the PB,it seems that the author use a software named Code Clip.And where to download it Thanks. Sorry, This forum is dedicated to questions related to Device Emulator. You may want to post your question to microsoft.public.windowsce.platbuilder. -Thanks, Mohit ...Show All
Andrea Pagliano Single Sign On into AdCenter
Hi, I was wondering if AdCenter has plans to support Single Sign on If so what would be the time frame Thx Gautam Hi Gautam, Maybe you can expend a bit on what it is that you're trying to achieve Thanks, Shai ...Show All
g0nzo Add-in API is never ever enabled in Messenger 8.0 and 8.1?
I can see the add-in UI after the registry tweak, but can't make the add-in works ever. In 8.1 beta, Messenger could load the add-in but never call the event handler I registered. In 8.1 release version, the add-in is never loaded. It doesn't matter whether I register my add-in to the GAC or not... The name of the assembly should match the fully qualified add-in class name, e.g. if your class name is MyCompany.MessengerAddIns.MyAddIn, then the assembly name should be MyCompany.MessengerAddIns.MyAddIn.Dll. Can you confirm that Of course, the same class should implement IMessengerAddIn interface. Andrej Yes, I already used "Add to messenger" button to add my add-in. But I didn't s ...Show All
Amos Soma Live and Netmeeting
Hi. Is there anyway to get the new Live Messenger to work more like the dying Netmeeting, with more than one person in a video call w/o using multiple windows/calls Thanks! The purpose of this forum is to discuss MSN and Windows Live application development using the Messenger Activity API, and Windows Live Bots. If you have technical support questions about using MSN Messenger or Windows Live Messenger, please check the following resources... Messenger Technical Support is available on the Messenger newsgroup: http://support.microsoft.com/newsgroups/ dg=microsoft.public.msn.messenger&cat=en-us-msn&lang=en&cr=US&ln=en-us nntp://microsoft.public.msn.messenger Get the ...Show All
Luke Yang Full screen application and notification bubble
Hi all! I have a CF application that runs in full screen mode. If I use a Notification object, when the notification bubble is shown, also the title bar and the bottom menu bar appear. It is possible to prevent these bars to show up on the screen Thanks in advance. Marco Minerva, marco.minerva@tiscali.it This is a limitation in the design of the shell, they are built on the assumption of the normal titlebar and menu being used. Your only workaround would be to use your own notification e.g. by placing a panel over the top of your window as a notification popup Peter ...Show All
n3sachde map.GetRoute flags and numbers
Hello everyone, I found map.DeleteAllPushpins(); removes the flags and numbers on the route path, is there any way I can prevent it Yuki Thats why we'd recommend storing the ID's somewhere after their stuck on the map ok .. so there is no way for me to find out the element ID for the pins on the route Yuki Thanks Derek, From my understanding .. deleteRoute() is suppose to delect the flags and numbers on the path . because if you remove the onendzoom event. it deletes everything on the route . but with the event , as you said all the flags are disappeared because the map zoomed and the function to delete all pins, now you DONT move the map, and click on a ...Show All
Wolfen Developing Messenger bot
Hi. I'm developing Messenger bot. It will be based on .NET 2.0 and be using DotMSN library to handle messenger protocol. I'm trying to enable activities handling in this bot. Right now I'm able to get data from activity sent using SendData method of Channel. But I need to send data to activity client from my bot. Could anyone help on this I've sniffed messenger packets and it seems that there is direct TCP connection for data exchange. Is there any docs on that protocol Thanks. You should make your own Activity or you could use an existing activity to do it. I know there's one for the BuddyScript SDK that you could use (search the forums for that), or there's also one for the incesoft ...Show All
rodniko map.GetRoute flags and numbers
Hello everyone, I found map.DeleteAllPushpins(); removes the flags and numbers on the route path, is there any way I can prevent it Yuki ok .. so there is no way for me to find out the element ID for the pins on the route Yuki Call it before you add your route Someone else was looking at custom direction popups on this forum, I beleive they stored the data from the route request an put there own pins down, you could do something similar. Or keep track of your other pins ID and just delete those John. Yuki Chen wrote: Thanks Derek, heheh ... the thing is I need the auto zooming on the route .. and as well as DeleteAllPushpins onendzoom .. t ...Show All
Arin George app behaves differently in debug mode from release mode
something seems weird to me. My app works fine while running in debug mode. how ever when i disconnect my PPC from the craddle and run the app, the program is not work well. basically i emulate a terminal. i requested data (very big) from a controller. in debug mode it works just fine. but with the app running by itself, i got incomplete incoming data. how why basically this how i did to received the data: somewhere is my complexe code there a event to trigger the ReadReceivedData(). At his turn this function triggers the PrintToTerminalDelegate() and passing the incoming data as a string. do you see any which cause tha app to fail in release mode public delegate void CDDelegate(string data); private vo ...Show All
Sweeps78 SSL
Hi, I posted this once before but until now I haven't found any solution. I need secure socket in Compact Framework and I have found www.mentalis.org but this library isn't for CF. Thanks for any help. The library you found is available in source code. What about porting the SSL part to .NET CF yourself ...Show All
