-
- Smart client consuming java web service
by GKN
- 14 Replies
- Last post
by Ilya Tumanov
- I am consuming a java webservice from a smart client windows application .Net CF 1.0. I included the web reference url for java webservice while i compile the application. the auto generated code gives an error.
Here is the autogenerated code:
<System.Web.Services.Protocols.SoapDocumentMethodAttribute("", RequestNamespace:=" http://ejb.sync.com ", ResponseNames
-
- Popup window without Titlebar in Javascript
by Altaf Nizamuddin
- 1 Replies
- Last post
by Omar Abid
- Hi, I have to open a popup window without titlebar in javascript, I had opened a popup window without status,menubar etc......., but i have to open it without having titlebar, is it possible. if it is yes then please let me know how to implement it. Thanks Altaf Nizamuddin
-
- Accessing local certificate store through script?
by Andy E
- 6 Replies
- Last post
by BPO11
- Is it possible to retrieve a list of certificates in a local store using JScript/WMI I'm just adding some finishing touches to my .gadget packager gadget and it would be nice if I could offer the selection of certificates.
Cheers,
Andy
-
- listview
by billqu
- 2 Replies
- Last post
by timg_msft
- how to get the listview's items which have been checked.
I use the code below:
ListView.CheckedListViewItemCollection checkedItems = m_lstContacts.CheckedItems;
There are no CheckedListViewItemCollection ˇ˘CheckedItems in the
system.windows.forms.listview.
-
- rss feed not updating properly
by rumremix
- 3 Replies
- Last post
by ToddOs
- Hello,
I've built an rss gadget using the code that Andy from Inteligroup generously offerred access to (from his Kotaku rss gadget--also the same code posted at this tutorial: http://www.windowsvistamagazine.com/US/05582469249333925566/creating-a-vista-sidebar-gadget.html ).
The problem I am having is that the gadget is not updating as quickly as it should. It is updating, but the f
-
- OT: Suggestions about gallery.live.com
by Jonathan Abbott
- 14 Replies
- Last post
by Jonathan Abbott
- Several things stand out about this site, now that people are starting to use it. So, here's some suggestions: Implement some sort of language filtering. Although I have nothing against the use of non-English and think it's actually commendable than MS allowing it, I would rather filter out Gadgets that are of no use to me. Alternatively allow multiple languages in the Gadget description, or some
-
- Its possible to Change files direct in a Image Binary?
by NetrunnerAT
- 1 Replies
- Last post
by NetrunnerAT
- I want change some open DLLs in a Image Binary. Offline!!!
Or its possible to convert a nk.nbf file to a Microsoft Emulator image Need it to develope some Translating.
-
- Screenshot Capture in Smartphone application (CF1)
by Drudkh
- 4 Replies
- Last post
by Drudkh
- Hi all, I managed to capture screenshots in Pocket PC (http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=2036023&SiteID=1) via CF2. It's easy to code in VB.Net for this instance. But I'm now trying to capture screenshots in Smartphone with CF1 and code in VB.Net. How can I do that Thanks.
-
- how to genatate proxy class for web service in .net compact framework
by dsubhashbabu
- 4 Replies
- Last post
by ChunSheng Tang - MSFT
- how to genatate proxy class for web service in .net compact framework.can u send me the steps
-
- How to get available wireless networks list / access points?
by JohnSmith TheForumGuy
- 4 Replies
- Last post
by AlexFeinman
- Hi,
I need to get the list of wireless networks. In windows vista I have the list of networks wi-fi can see in Start -> Connect To. I need to somehow get this in code on WM5. Just strings with names. Which *.lib, *.h to include Which API functions to call
-
- Remote File (and Registry) Viewer won't connect to any Emulators
by Ryan Lederman
- 2 Replies
- Last post
by Zero Dai - MSFT
- Using Visual Studio 2k5 on Vista. I'm running the WM5 Pocket PC VGA Emulator and I'd like to get the Remote File Viewer or Remote Registry Viewer to connect, but all that happens is it says "connecting to device.." and then "copying files..." and then the views become blank, and nothing else happens. Does anyone out there know some possible reasons that something like this coul
-
- will gears of war on pc connect to xbox live?
by gearshead
- 1 Replies
- Last post
by Ilya Tumanov
- i heard that it wasnt and i really want to know that truth will the windows live connect to xbox live so wen i get this game on pc i will be able to play wit my friends who have it on the 360
-
- Soap on Windows Mobile 5.0
by Stephanie Lim
- 6 Replies
- Last post
by Stephanie Lim
- Hi there,
I'm trying to develop a Windows Mobile windows form application that retrieves a file and sends it to the Soap Receiver that is based on another server machine. Does anyone have any clues if this can be achieved in a mobile environment
I have searched all over google and know that there are a type of Soap technologies, namely:
- Soap Toolkit - PocketSoap - WSE 2.0 - WSE 3.0
W
-
- Wi-Fi settings
by plastio
- 4 Replies
- Last post
by Zero Dai - MSFT
- Hi,
I should disable the Wi-Fi support when my device loads (all boot configurations).
Whats the API to block Wi-Fi driver load
I am running WM5 device CF v2.0
I guess I should PInovke the supplied API since I couldn't find any support for Wi-Fi handling
in the Compact FrameWork and my application is a managed one.
Any example will be appreciated
Thanx
Plastio
-
- UPnP (once more): linking problems
by 147cuore
- 11 Replies
- Last post
by Adrian Stephens
- Dear all,
I am writting an application for windows mobile in VC++ 2005 and when I compile my program, I get error LNK2001: unresolved external symbol IID_IUPnPDeviceFinder
and
unresolved external symbol CLSID_UPnPDeviceFinder
I included the "upnp.h" from UPnPctrl part of the MS Server Components but I get that error.
I have also included the path to upnp.h in the project p
-
- System.TimeZone.CurrentTimeZone
by harcrow
- 11 Replies
- Last post
by Ilya Tumanov
- I am writing an application for a Windows Mobile device using C# and .Net Compact framework. I need to obtain the system timezone or timezone that the user specifies in the Settings/Date and Time area. System.TimeZone is an abstract class and if I do try to call System.TimeZone.CurrentTimeZone I get a NotSupported exception. I have also tried p/invoking GetTimeZoneInformation() and also received a
-
- How memeory is collected declared in static method+memory leak
by Qiuwei
- 4 Replies
- Last post
by Qiuwei
- Hi, there; I am developing application with C#, but I am not clear how memory allocated in static method in a class is collected. For example: class myclass { public static void MyMethod(string arg) { string str1 = "bla"; Class2 obj = new Class2(); string [] str12 = new string[2]; // //Some operation...... // } } So what I mean is, will memory taken by "s
-
- Barcode reader does not see ENTER
by Jwembley
- 7 Replies
- Last post
by SeuFernao
- Using VB 2005 to create simple data entry program to run in Windows CE 5.0 on a Datalogic Memor. Reading a barcode running any program other than the one I am creating a clf is read. This tells me the scanner is working properly but program does not see the clf. Any suggestions on what might be the probelm
-
- Add Bitmaps to ImageList from local files at run time
by jbap01
- 4 Replies
- Last post
by jbap01
- Is there any way to populate an ImageList with bitmaps stored in a directory on the device at run time It seems like such a simple thing to do, but I'm finding it impossible. Any help gratefully received.
-
- Exiting the settings dialog box
by Jan Ku&#269;era
- 1 Replies
- Last post
by Jonathan Abbott
- How can I exit (either cancel or confirm) the settings dialog box from the settings javascript
-
- Why weather gadget never update itself?
by swgiant
- 1 Replies
- Last post
by swgiant
- I tried the both gadget whcih are weatherbug and weather gadget. Once retrieved the temperature, then it never update itself again... whats problem now any remedy
-
- Byte Array to Image..
by sanjay6036
- 5 Replies
- Last post
by sanjay6036
- Hi All , Can aybody tell me how i can convert Byte array to images .I do not have any idea regarding this . and how i can perform Scaling on images ....please i waiting for your reply..
-
- Unexplained NullReferenceExceptions
by xja
- 8 Replies
- Last post
by xja
- I run a CF2 application on various devices. On one particular device, the Treo 700wx, I often get a NullReferenceException error in places where there is no clear explanation as to how a null reference could exist. Often this is deep within a CF method and it is virtually never in the same method and is never repeatable. Sometimes it happens on application startup, and then when I restart with eve
-
- Need help compiling Today Screen Native Code plug-in
by Grojas1980
- 6 Replies
- Last post
by AlexFeinman
- I installed eMbedded Visual C++ 4.0 (SP3) and downloaded the samples as listed here http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnppcgen/html/TodayScrn.asp
i've been trying to follow the steps in the article but I can't get the unamanaged code to compile, I installed the Pocket PC 2003 SDK and referenced the directories for the inclulde and lib files but I get these errors
-
- Using FindWindow win32 api call in eVB
by TRamaglia
- 2 Replies
- Last post
by TRamaglia
- I have been trying to use the win32 API call FindWindow() in a eVB app to try to find a window generated by a .net app. Using FindWindow in a .net app to find a window generated by eVB works fine, but trying to find a window generated by a .net app in eVB does not, is there something with using FindWindow with .net generated windows My code is below. Thanks
public sub GetWindow()
D