Where is the handler to the event? Guess you are missing that.
Arjun Marwaha
Posts
-
Getting null event in delegate -
mobile programming tranningCheck this: http://www.google.co.in/search?hl=en&q=mobile+training+%2B+india&meta= Regards, ~Arjun
-
unzipp files on a pocket pc with Visual Sudio .net 2003 C#Check this: http://www.google.co.in/search?hl=en&q=zip+files+through+code+%2B+compact+framework&meta= Regards, ~Arjun
-
find the size of download data...You can use FTP for transferring files and also get the size of the file by sending the SIZE command to the FTP server. ~Dave
Dave Traister Software Engineer ComponentOne LLC www.ComponentOne.com
-
System.Runtime.InteropServices.COMException (0x80040112):Is this application converted from vb6 to .Net? Do you receive the mentioned error on all the machines or just this specific? ~Dave
Dave Traister Software Engineer ComponentOne LLC www.ComponentOne.com
-
Connect Device emulator to networkUse the Device Emulator Manager application, and right-click on the PocketPC emulator in its treeview, and pick "Cradle". That will form an activesync connection to the emulator, as if it was a hardware device. ~Arjun
Dave Traister Software Engineer ComponentOne LLC www.ComponentOne.com
-
Regarding Activex ControlCheck the following link: http://www.c-sharpcorner.com/UploadFile/dsandor/ActiveXInNet11102005040748AM/ActiveXInNet.aspx ~Dave
Dave Traister Software Engineer ComponentOne LLC www.ComponentOne.com
-
Getting started with WinCE 5.0 .netTry these to get started: http://msdn.microsoft.com/en-us/embedded/aa731296.aspx http://www.microsoft.com/technet/archive/wce/evaluate/revgde.mspx?mfr=true http://www.wirelessdevnet.com/channels/pda/training/vcce.html ~Dave
Dave Traister Software Engineer ComponentOne LLC www.ComponentOne.com
-
In Compact Framework Can I use Parent formThe concept of MDI forms does not exist in the CF, so you cannot. You can declare a main form, and open it. Then do a showdialog() on the other forms, or a show() to show them. ~Dave
Dave Traister Software Engineer ComponentOne LLC www.ComponentOne.com
-
NullReferenceExceptionSeems like one of the variables being used in the event handler does not have any value assigned to it. The reason it's not occurring in debug mode is that it gets the required time to get the value and therefore no exception is thrown. You can also check for the variables and their values at the time when the exception occurs which can give you a hint for the cause of the exception. ~Dave
Dave Traister Software Engineer ComponentOne LLC www.ComponentOne.com
-
How to resolve this ERROR?It would be hard to guess the exact cause without looking at the code. However the WSACancelBlockinCall exception generally happens when you stop listening as Listen is a blocking method. Call the Close method to close the connection. ~Dave
Dave Traister Software Engineer ComponentOne LLC www.ComponentOne.com
-
PDA DevelopmentSeems you have not set the MDIParent of the child form to the main form. Childform.mdiparent=this; ~Dave
Dave Traister Software Engineer ComponentOne LLC www.ComponentOne.com
-
How populate a DataGrid (C.F 2.0 and VB.net)You would need to create an ArrayList, add any number of classes having n number of properties you want to the ArrayList and bind it to DataGrid. To bind an Arraylist to a DataGrid, refer the link below: http://www.c-sharpcorner.com/UploadFile/mahesh/ArrayListBinding10212005102338AM/ArrayListBinding.aspx ~Dave
Dave Traister Software Engineer ComponentOne LLC www.ComponentOne.com
-
FTP IN C#About your first question I am not sure where this information would help you. This is handled by the protocol itself and if there is an error/exception, it would be shown. However if you still want the information, you can use any ftp client like Filezilla etc and enable tracing capabilities (to create a trace log) which would show you the data sent and received. For OTPS command, please refer the RFC. http://apps.mrochek.com/rfc/rfc2389.html#sec-4 ~Dave
Dave Traister Software Engineer ComponentOne LLC www.ComponentOne.com
-
Active X Control in VB.Net 2005Check this: http://www.vbdotnetheaven.com/UploadFile/dsandor/ActiveXControlInVBdotNET04112005081747AM/ActiveXControlInVBdotNET.aspx Regards, Dave
Dave Traister Software Engineer ComponentOne LLC www.ComponentOne.com
-
About "Windows XP Embedded Image Difference Engine"?Try this: http://www.microsoft.com/downloads/details.aspx?familyid=dacd1722-256b-48c5-91c1-af6062340efc&displaylang=en ~Dave
Dave Traister Software Engineer ComponentOne LLC www.ComponentOne.com
-
'SetKMode()' active in Windows Mobile 6.0Tony, You can get the list of Privileged APIs in the Windows Mobile 6 SDK documentation. Just search with "Privileged APIs" and you shall get the list. On MSDN: http://msdn.microsoft.com/en-us/library/aa919335.aspx ~Dave
Dave Traister Software Engineer ComponentOne LLC www.ComponentOne.com
-
VB.NET Handheld PDA - Input box not displaying textNot sure what text are your referring to by the line " the textbox is shown on the screen but the text message isn't". Are you talking about the Prompt, Title or the Default text? The code below worked for me: str = InputBox("Prompt", "Title", "Default text in the textbox") Regards, Dave
Dave Traister Software Engineer ComponentOne LLC www.ComponentOne.com
-
play video files on Windows Mobile 5.0 Pocket PCI am not sure what you mean by "But on this way I do not use the WMPlayer SDK". Why would you not like to use the Windows Media Player to open the media files? To run windows media player to open a file, use the code below: System.Diagnostics.Process.Start("\Windows\wmplayer.exe", """\My Documents\My Music\new song.mp3""") Regards, Dave
Dave Traister Software Engineer ComponentOne LLC www.ComponentOne.com
-
'SetKMode()' active in Windows Mobile 6.0It depends. The Setkmode API function is flagged as OEM meaning it would depend on the manufacturer whether this function is supported on the device or not. MSDN link: ms-help://MS.WindowsMobile.6/WindowsMobile6SDK/html/15be1603-7903-433f-a9ae-f2c2ea511df4.htm Regards, Dave
Dave Traister Software Engineer ComponentOne LLC www.ComponentOne.com