Answer Questions
fstester unresolved external symbol __CxxFrameHandler3 or __ArrayUnwind
I am building my application targeted for the PocketPC platform. The app builds for Win32 fine. I get one linker error when I build now: LIBCMTD.lib(ehvccctr_ce.obj) : error LNK2005: "void __cdecl __ArrayUnwind(void *,unsigned int,int,void (__cdecl*)(void *))" ( __ArrayUnwind@@YAXPAXIHP6AX0@Z@Z) already defined in ccrtrtti.lib(ehvecdtr.obj) If I remove the LIBCMTD.lib by adding it to the ignore libraries, then I get this err ...Show All
PhilDWilson Pocket PC error: "Unable to connect to the remote server"
I have developed a Pocket PC 2003 app in Visual Studio .NET and am getting an unusual problem i can't get to the bottom of. My VB.NET Pocket PC App tries to call a simple web method on my webservice from the device using the webserver's IP or Machine name and receives the error " Unable to connect to the remote server". Yet if i point the device's IE browser to the location of the webservice asmx file (i.e. http://192.168.1 ...Show All
dkbryan Installation of Compact Framework 2.0 failed. Why?
Hi all, can somebody tell me why my installtion of the cf 2.0 on an HP 2490 PDA failed Log file of installation: 26/02/2006 23:14:42: Entered Install_Init(). First Call: Yes Previously Installed: No Installation folder is: '\Programme\.NET CF 2.0'. 26/02/2006 23:14:42: Build 2.0.5238.00 26/02/2006 23:14:42: Device CPU: 'ARMV4I', 05020000 (84017152) 26/02/2006 23:14:42: PocketPC 5.01 26/02/2006 23:14:42: Our trust lev ...Show All
Lakusha add control problem with multiple framework
Without the stackform, everything works perfect but when I add a toolbar I get an error at line this.Controls.Add(this.toolBar1); ,if I comment all lines with toolBar everything works perfect error: $exception {System.Exception: Exception at Microsoft.AGL.Common.MISC.HandleAr() at System.Windows.Forms.Control._SetParent() at System.Windows.Forms.Control.set_Parent() at ControlCollection.Add() at DeKangoeroe.KMaankomst.Ini ...Show All
jaycee Adding a new WinCE emulator to VS.NET 2003
Hello, I've developed a new emulator platform using Platform Builder 4.2: now I would like to use this emulator in order to test and debug my applications written using the compact framework: how can I add the new emulator to the VS.NET 2003 environment I've found no way till now... Thanks in advance and Kind regards Severino Hi again Daniel and thanks for your answer, I didn't considered the fact that instal ...Show All
Glenno Using VS2005 for WinCE 5.0 development
I have a native C++ Windows XP app that I need to migrate to a WinCE 5.0 ARM platform. My project is currently in VS2003. I hear that VS2005 can be used to develop native WinCE 5,0 apps. That is great for me, because I could easily move my existing code from 2003 to 2005, and then it should be easy to keep my WinXP and my WinCE code in sync since they will use the same IDE and compiler front-end. Do I need a particularr edition of ...Show All
Jesper Lund Stocholm VS.NET 2005 - Howto override WinCE include folders (for using STLport)
.Welcome { font-size:x-small; margin-top:15px; } .Welcome p { font-size:80%; } .Welcome ul { font-size:80%; } If I want to use any external library instead of a built-in library (eg. STLport instead of the built-in STL) in Visual Studio then I just add the libaries include folder above the default include folders under Tools -> Options -> Directories. But this doesn't work for Smart Devices (WinCE 5.0). My include folders (eg. ...Show All
MarkGrant Microsoft SQL Server management studio
Hi.. Can any1 tell me how to fix the error below prompted by Microsoft SQL Server management studio Unable to cast COM object of type 'System.__ComObject' to interface type 'Microsoft.VisualStudio.OLE.Interop.IServiceProvider'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{6D5140C1-7436-11CE-8034-00AA006009FA}' failed due to the following error: No such interface supported (Exception f ...Show All
SideshowBob Transparent label
I have a form that contains a background image. I've placed a label on the form and set the background color to transparent, however the label gets the color of the form and not the background image of the form. How can I get the label's background to be that of the form's background image Thanks In order to support a background image, you must have already implemented code for the paint event of the for ...Show All
Ankhnesmerira TextBox, KeyDown and Enter
Hi all, I have written a tiny application with a TextBox on a form, where the TextBox has a KeyDown event handler like this: private void textBox1_KeyDown( object sender, KeyEventArgs e) { if (e.KeyCode == Keys .Enter) { e.Handled = true ; MessageBox .Show( "You pressed Enter!" ); } else if (e.KeyCode == Keys .Escape) { e.Handled = true ; MessageBox .Show( "You pressed Esc!&quo ...Show All
robmaag1 Application Verifier for wm5, where?
Where does one find this elusive creature - the fabled AppVer for wm5 - in the deep depths of msdn search Doug Boling said "real soon now", but that was a half-year back. Larry Lieberman wrote: The CE 5 test kit is available for free download at: Thanks" target=_blank>http://www.microsoft.com/downloads/details.aspx familyid=40b7cedb-dc8b-4503-8dc9-e75f8e8496c1&displaylang=en ...Show All
Nick Colebourn Custom Control with openfiledialog,filter & embbeded resource
Hello! I would like made a custom control where i can select a wav file . In my attribute file i have add this: <Editor> <Type>System.Windows.Forms.Design.FileNameEditor, System.Design,Version=2.0.0.0, Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a</Type> <BaseType>System.Drawing.Design.UITypeEditor,System.Drawing, Version=2.0.0.0, Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a</BaseType> </Editor> It w ...Show All
XenomX Setfocus caused Unhandled exception
Hi, An exception was caused When I setfocus on a listctrl.the following is the exception code: Unhandled exception at 0x80079cec in Album.exe: 0xC0000030: I don't know to catch and solve the exception. Your suggestion is appreciated! ps,windows mobile 5.0 smartphone, c++. Para This forum is intended to deal with issues directly related to the .NET Compact Framework. It appears that th ...Show All
Dancefire basic datagrid question
How to fill a datagrid I have a class Database with this method public DataSet makeDataset(string query) { DataSet ds = new DataSet(); SQLiteDataAdapter da = new SQLiteDataAdapter("query", cn); & ...Show All
Ches Weldishofer Help required handling OutOfMemory exception situation
Hi. I have a C# Smart Device application [VS2003]. I have a picturebox in it. I allow users to browse for jpeg and gif images. The selected image will be loaded into the picturebox. This works just fine. The problem starts when I try to load a camera captured image into the picturebox. It throws OutOfMemory exception when I try to do so. I understand this occurs coz the size of the image is too large. Can anyone suggest me a workaround fo ...Show All
