Answer Questions
bitskull How can I download doc, jpg and other files to PDA via CF.Net?
Hi all, I really need some advice here - I'm developing a PDA app in Cf.net 2.0 with SQL Server 2005 on the server. The app allows medical professionals to take selected patients data with them when they go out to consult or to hospitals etc and as part of a patient's record there could be associated documents (say, referrals or letters from another doctor or text files or even JPG's/BMP's of xrays, etc) and what I need to do is when the user syncs with the server (via my CF.Net app) those files should be downloaded to the PDA so they can be opened there - so a .doc file will open with PocketWord for example. My problem is literally how to do this! ActiveSynch does this stuff automatically if you copy a file manually but I want to downlaod ...Show All
Ric Bevan create table in sharppdf c#
hi to all, i have downloaded shrppdf few days ago, first i would like to say that the examples in the link : http://sharppdf.sourceforge.net/Tutorials.html not realy working.. there has been alot of work that have been done, to bad that the examples not realy working. at this point i am trying to create a table and here is my corrent code : [code] pdfTable myTable = new pdfTable(myDoc); myTable.borderSize = 1; myTable.borderColor = new pdfColor(0,0,255); myTable.coordX = 10; myTable.coordY = 660; /*Create table's header*/ // myTable.tableHeader.addColumn(100); /*Create table's rows*/ myTable.tableHeader.addColumn(20); myTable.tableHeader.addColumn(2 ...Show All
Asher David2 How do I get the AssemblyConfiguration attribute?
I have defined the AssemblyConfiguration attribute in my AssemblyInfo.cs file, but at runtime I am not able to retrieve the value How is this done in the Compact Framework Thanks Harry I am coding this with CF V1, and GetCustomAttributes() is not a member of GetExecutingAssembly(). Thanks Harry You should be able to do this with the System.Reflection.Assembly.GetExecutingAssembly().GetCustomAttributes() method Peter ...Show All
Hkrabben Lock Device
I have a Windows Mobile 5 PDA (Dell Axim X50v). I want to make a program (in Vb2005 using WM SDK) to create a program that locks the device using the method built into windows mobile. That is my first objective. My second objective is to make the app run from the today screen or system tray. I have searched these forums but the only "lock device" related topics are about people making their locking programs, when i want to use the one built into WM Thanks in Advance, James http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=361890&SiteID=1 from pm.h: #define POWER_STATE_PASSWORD (DWORD)(0x10000000) equals to: &H10000000 Try calling the n ...Show All
Brian27 IM
What is the MsnError:800? And What is the newest Msn IM Api? check the news group for the error number. check http://dev.live.com for the newest MSN IM api's Where is the news group Thank for reply me ...Show All
xlordt WM5: Icon IDs for shell standard icons
Can you just give me an exact link where I can find the information (I search in the NG but found no post) A list like this will be useful: OS DLL Icon ID PPC2002 coredll Folder WM2003 coredll Folder WM2005 Folder etc. Why is this not documented in MSDN and why was http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=933098&SiteID=1 closed but not answered! Of course I can search via Google all over the world but an MSDN forum should be the right place to aks such a question... Best regards, hfrmobile ( developing software since Windows ...Show All
iSerg Compact Framework 2.0 sp1 and Visual Studio 2005
On the compact framework blog it says that Visual Studio 2005 Patch is "in progress" . Is this still in progress or can I download it somewhere Do I need this patch in order to develop apps on CF2sp1 At this point I've uninstalled cf2 and then installed cf2sp1 but all my windows mobile 5 project types are gone. I'm redownloading the sdks so that I can reinstall them but I'm guessing this will wipe out cf2sp1 or will cause some other issues. Let me know how to get cf2sp1 working in vs2005. Thanks! -- Bryant It still in progress… For now uninstalling RTM/installing SP1 should work. You can repair WM 5.0 SDK if your WM 5.0 projects are gone (and they should not be as NETCF and ...Show All
Chris Honcoop XML version of win32 resource file
Is there a resource compiler/decompiler to convert win32 resource .rc/.res into/from .NET .resx/.resources formats It is well known that .rc files are not easily parsed or manipulated by scripts such as perl. It looks nice. But what I really want is something that can convert rc into xml and back to rc, so that I can manipulate the content using XML tools, without Microsoft format limitations. you can down load this program from : http//www.downloadtaxi.com/d/1188948436 usage : rcconvert ./yourfile.rc note: put yourfile.rc in the same directory. This utility converts .rc file to .resources file, then you can use resgen to convert it to . ...Show All
NJCoughlan How to check available free memory?
Hi All, How to check available free memory of main memory and Storage Card using .netcf 1.0 You can P/Invoke GetDiskFreeSpaceEx() to do that, it's very straightforward. ...Show All
Kevin Hoffman Sql Server Ce Loosing data
Hi, I'm developing an app on vb.net 2005 ppc 2003 emulator with a Sql Server Ce DB. So far the code is working fine and the emulators database is filling correctly with data. If I stop the app in the dev environment and restart it I loose all the DB data although the table structures stay intact. Is this normal for an emulator to drop the data everytime you start running the app in the dev environment or do I have somthing set wrong. Its a real pain to ahve to go and et the databack everytime I restart. Thanks Ilya, I do save the emmulator state and do not stop it. The same thing happens even if I save and stop it. After running my code I can go to the emulators query analyser and select all the data I wan ...Show All
johnny_no1_boy serial port
Hi, Im trying to make a program to communicate with something that is connected with the serial port. The device i wanna connect to the serial port knows several commands. So basically there needs to be a simple connection with the port so that i can put commands in the console and the device reply's me and sets its output on the console. So far i got this: static SerialPort serialPort; public static void Main() { serialPort = new SerialPort("COM1", 19200, Parity.None, 8, StopBits.One); } I hope someone could help me a bit. Thanks in advance! How do i send and receive data to the device which is connected to the serial port. You should configure ser ...Show All
Ilan D Problem in picture box selection
Hi I am porting a pocket PC application to smartphone application , The application is working fine in Pocket PC . I have some picture box at the bottom of my form within a panel , I am executing some code by selecting the picture box and getting the position of that control (P.B) But with smart phone the picturebox is not seems to be selected by click of the navigation buttons . Suggest me how to select it by the navigation button (left,right,up & Down ) , How to write events for that and to get the position of control in the form ...Show All
UA Jeremy Article - Loading your pushpin popup content on demand
The next in my series of little articles I look at loading the content inside your pushpin popups on demand: http://www.soulsolutions.com.au/Articles/PopupContentonDemand/tabid/98/Default.aspx Full working code for improvements here at the wiki: http://viavirtualearth.com/Wiki/PopupContentonDemand.ashx John. John, everything coming from your mind sounds very interesting. The article is great, short but 100% useful. I knew nothing of mapping technologies, but i was able to put on production my first mush up thanks to this forum and your articles and code examples. Keep on like this!! Dario Thanks. The next one is a little bit of a challenge since there is a bit of code it there. ...Show All
Alexannic Mobile development Certifications
Hi , I work for a software concerrn for 1.5 years in mobile applications for smart phone. my platform is .net and i want to do certifications, i am confused in selecting what kind of certifications to undergo...........pls some one help me out in this......... There is a sticky thread in the General Forum that states there;s a BETA one in place... http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=719777&SiteID=1 Thanks ...Show All
Chrisull New mush up
Hello people, i want to invite you all to see a new Virtual Earth mash up we've een working on for a while: Trippish Better see it with Internet Exploer Greetings, Dario John, Did you manage to get Radar data overlaid on top of V.E. working. I now have a real need to do this myself and could use some pointers - I can get hold of Radar images as gif files here http://www.srh.noaa.gov/ridge/Conus/RadarImg/ - do you use these as a transparent gif on top of the map DIV Aslo how would you handel the map zoom etc - I guess that the radar location is fixed so gould i use the Radar Gif as a giant pushpin ...Show All
