Nige PJ's Q&A profile
Smart Device Development VS 2005 beta2 - Referenced package not found
I have just installed VS 2005 beta2. I created a smartphone application with a simple textbox and when I try to run (F5) using emulator I get a deploy error. The output log shows: SMP1 -> C:\dev\SMP1\SMP1\bin\Debug\SMP1.exe ------ Deploy started: Project: SMP1, Configuration: Debug Any CPU ------ Referenced package not found. ========== Build: 1 succeeded or up-to-date, 0 failed, 0 skipped ========== ========== Deploy: 0 succeeded, 1 failed, 0 skipped ========== Any ideas Hi, try to rename directory C:\Documents and Settings\<user name>\Local Settings\Application Dat ...Show All
Visual J# Reference to vjslib.dll fails after RTM Framework 2.0 installation
After installing Framework 2.0 from MSDN subscriptions my previously working reference to a J# assembly fails with 'Could not load file or assembly 'vjslib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.' The assembly is COM interfaced, strong typed and is being called from an ASP page. This also occurred when using an early beta of 2.0 and was reported, but assumed it would be fixed by RTM. The site is using 1.1.4322 As previously stated, this same assembly ran fine before 2.0 was installed. after installation of R ...Show All
Visual Studio Express Editions Where exactly is MSDN Express Library?
Does anyone know the link for the MSDN Express Library I downloaded all the VS and SQL express editions but I can't seem to find where we're supposed to be dowloading the documentation. The Express home page mentions "optional components like the MSDN Express Library" but doesn't have a link to where we could download it. http://msdn.microsoft.com/vstudio/express/ I have downloaded and installed Visual Web Developer Express Library and found that the .cab files for my MSDN 2005 Express Library are corrupt. I have tried downloading it from the MS site twice now. I have ext ...Show All
Visual C# Deleting a file
Hi, What is the easiest way to delete a text file Thanks, Bruce ...Show All
Smart Device Development Windows 2000 freeze with ACTIVEsync 3.8 & DeviceEmulator
Hi My Problem is, the computer freezes when trying to to connect over active sync I start ActiveSync, I start the Emulator then I start the device manager and tell him to "cradle" the device ActiveSync gehts a connection shortly after this -> Freeze! On which plattforms runs the Emulator (We have w2000 with SP 3) Do I need XP regards Norbert Thanks for the answer I simple gave up using the emulator on this particular PC Regarding your info about activeSync I have this problem with the Active Sync connectivity: following Setup: App1 runs on PC, App2 runs on PPC App2 connects via TCP (over ActiveSync) to App1 ...Show All
Windows Forms close window if no user interaction
I am completely new to windows programming. I would like to close a form if there is no user interaction after certain time, how should I do it Could someone help me Thanks! Hi, I read your informative post describing application timeout options. What i wanted specifically was if i try to implement option 1 i.e. Application_Idle event. In that cas ...Show All
Visual C++ symbols (*, #, %, @, etc)
If you will, list or explain the nature, language rules, and-or syntax of symbols used in C++ code. ...fine yet, I find your refusal to directly answer extremely irritating (I would prefer you answer directly, and then, if you will to do so, list any references as additional references, rather than implying whatever presumption you might; or don't reply at all, exceptions being when such refrences as you might give link directly to the answer or are described pertaining to such) but, yes, I found an answer for the "identifier name" question, via search engine ...Show All
Smart Device Development about VS2005 compatible Smartphone 2003 SE localized emulator images
Are those images available now Thanks. Is this you are looking for http://www.microsoft.com/downloads/details.aspx familyid=8fe677fa-3a6a-4265-b8eb-61a628ecd462&displaylang=en -Thanks, Mohit ...Show All
Visual Basic image backcolor (VB.NET 2005)
I intend to draw a picture and save to a file. However the backcolor of the image is black (although the backcolor of the pictureBox is white). I want a white backcolor. Does anyone know how The code is: Dim bm As Image = New Bitmap(PictureBox1.Width, PictureBox1.Height) bm.Save( "c:\a.bmp" , System.Drawing.Imaging.ImageFormat.Gif) Thanks. I like VB too! I'm not an expert on graphics. I've had a little experience in this area. Here's what I've learned. Very often if you don't parametrically sample the contents of an image and just move the sample into a container, there may be losses of image qualit ...Show All
Visual C# Emulating Multiple Inheritance
I often miss the MI from C++, but I have a suggestion of how to emulate it in C#, given the following: interface IFoo { void FooIt(); } class Foo : IFoo { public void FooIt() { Console.WriteLine("Foo-ing!"); } } interface IBar { void BarIt(); } class Bar : IBar { public void BarIt() { Console.WriteLine("Bar-ing!"); } } class BaseClass { // More BaseClass methods here. } One could use a new construct: class Baz : BaseClass, Foo as IFoo, Bar as IBar { // More Baz methods here. } And that would be the same as writing the following forwarding methods: class Baz : BaseClass, IFo ...Show All
SQL Server OLEDB Connection Dynamic Password?
Hi, How can i set a oledb connection password dynamically The password option doesn't shows up in the expressions options.... So how can this be done My idea was to use the Package Configuration to set some variables with information and set afect some connections with that variable values...But the password is the only place i can't seem to find a way to change it's value. Best Regards, Luis Simoes ...Show All
SQL Server SQL Server 2005 Installation Problem?
I'm having problem with installing Microsoft SQL Server 2005 Evaluvation Edition. I have removed all beta and other SQL files but the installation still fails. summary.txt looks like this: Microsoft SQL Server 2005 9.00.1399.06 ============================== OS Version : Microsoft Windows XP Professional Service Pack 2 (Build 2600) Time : Fri Nov 25 22:42:40 2005 P2 : The current system does not meet recommended hardware requirements for this SQL Server release. For detailed hardware requirements, see the readme file or SQL Server Boo ...Show All
Visual Studio Team System Cyclomatic Complexity
Hi, How can I view the 'Cyclomatic complexity' using VSTS tools Thanks, Praveen Praveen, I'm not sure if this is exactly what you are looking for, but the new Code Analysis Tool included with Visual Studio Team System can check your code to make sure that the cyclomatic complexity of any function does not exceed a specific threshhold. If this is what you are looking for, just post back here and I can help you will running code analysis rules on your project. Thanks, Ian ...Show All
Visual Studio 2008 (Pre-release) LensEffectPanel causes PresentationFontCache to bog down
I've written a WrapPanel that does a lens effect on the controls as you move the mouse over. You can see it in action here: http://150.101.100.238/~john/LensUniformWrapPanelTester/Swordfish.WinFX.LensTesterWeb.xbap and download the source here: http://150.101.100.238/~john/LensUniformWrapPanelTester/Swordfish.WinFX.LensTesterWeb.zip I have the problem that when running it in debug over and over it gets slower and slower. I've traced the problem down to PresentationFontCache.exe, and if I kill this process before running again my app returns to full speed. I'm wondering what I can do to avoid this problem. I noticed that having ...Show All
SQL Server How to implement split and merge?
I need to implement following flow: [Source] - > [Split] - [IF TRUE] -> [DO SOMETHING] - [OUTPUT TO C] - [IF FALSE] -> [DO SOMETHING ELSE] - [OUTPUT TO C] The issue is to come back to the same destination after conditional split. In other words, is there something opposite to "Multicast" I looked at Union and Merge - but it looks like it's not for this kind of things. Thanks. That sounds like a UnionAll to me...Why do you think UnionAll is not for this kind of thing Do the two output (true output and the false output) downstr ...Show All
