VinceAnguiano's Q&A profile
Visual C++ Convert Class to BYTE* vice versa
We are facing a problem in serializing the CString variable. If you have any idea to solve is the issue, please help us. struct temp { CString name; CString desc; }; temp obj; //Object stroed with values obj.name = "dfjdsflsdkjf"; obj.desc = "fjdsfj"; // Converted to byte array BYTE *x = new BYTE(len); temp *j=new temp(); // Byte arracy converte ...Show All
Visual Studio 2008 (Pre-release) C# 3.0 Feature Suggestion - symbols
I was playing around with ruby the other day and was reminded of the ":" symbol as in "abc".send(:length), although ruby doesn't care if the :length symbol actually exists on the target, it gave me the idea that we could really use a language feature that would have compile time checking for class members to be used as an alternative to passing around field/property names as strings that are later used in reflection apis, O/R ...Show All
Visual Studio MSBuild conditional import and Visual Studio IDE
Hi all, First of all, apologies if this is the wrong group - the problem I'm experiencing seems to be in the MSBuild hosted in the VS IDE, rather than the command-line MSBuild. I have vcproj files with conditional imports (to pull in MSBee build rules for a FX1.1 build). These build fine from the command line with the relevant conditional parameters set - I use a condition of: Condition=" '$(Platform)' == 'Win32 (.NET 1.1)'" so I can i ...Show All
Software Development for Windows Vista How
i want to order a vista dvd, how can I get one ...Show All
Visual C++ STL binary search - C2784 in debug only?
I'm porting a Visual C++ 6 project to Visual Studio 2005 and ran into something I don't understand with STL. Below code compiled and worked for debug and release modes in VC6, compiles and works in release mode for VS2005, but won't compile in debug mode under VS2005. The call to lower_bound isn't identifying the second operator < for some reason. -- Market.h---------- #ifndef __MARKET_H__ #define __MARKET_H__ #include <vector> ...Show All
.NET Development Having problems running a web service in Visual Studio 2005
I created a web service following the steps laid out in http://msdn2.microsoft.com/en-us/library/87h5xz7x.aspx I have encountered several problems. 1. When I open the project I get the following. "The site http://localhost /BriConvert1 has not been configured for use with ASP.NET 2.0. Microsoft Visual Studio has been designed for use with ASP.NET 2.0. If not configured some features may make incorrect assumptions, and pages desi ...Show All
Smart Device Development About smartphone's menu editor
I couldn't believe that vs2005 can not provide a whole menu editor actually. Should I go back to evc http://forums.microsoft.com/msdn/ShowPost.aspx PostID=89556 I write some RCDATA in the rc2 file: IDR_MAINFRAME SHMENUBAR DISCARDABLE BEGIN IDR_MAINFRAME, 2, I_IMAGENONE, IDOK, TBSTATE_ENABLED, TBSTYLE_BUTTON | TBSTYLE_AUTOSIZE, IDS_OK, 0, NOMENU, I_IMAGENONE, IDM_MAIN_MENU, TBSTATE_ENABLED, ...Show All
Smart Device Development 2005 C/C++ codegen vs eVC4
Hi, I'm in the middle of porting a high performance 3d app to a CE 4.2 device, I'm currently using eVC4. Would using Visual Studio 2005 (with the plugin) give me better code generation than eVC 4 At the moment I am unable to do inline asm (__asm) for ARM4I using eVC4. Would this be possible in 2005 Many thanks, Steven Haggerty. Is there a way I can send a mouse/stylus click to a control ...Show All
Architecture A good second book about arquitecture
Hello I have finished "pro scalable application in .net 2.0" which was nice. Now I want to read another book about architecture. What do you recomend I think Domain-Driven Design: Tackling Complexity in the Heart of Software is a good option, do you know another Thanks. I haven't read this one - but I really disliked his other book (Service-Oriented Architecture : A Field Guide to Integrating XML and Web Services) Th ...Show All
Visual Studio VBE online-book
I cannot find nowhere the the full-text electronic books from Microsoft Press announced on the registration benefits site. ( Microsoft Visual Web Developer 2005 Express Edition: Build a Web Site Now! - by Jim Buyens and Microsoft Visual Basic 2005 Express Edition: Build a Program Now! - by P atrice Pelland). Could anyone tell me the path Thank you. Hey Eber, I forwarded this on to our team to see what the issue is for the book ...Show All
Visual Studio 2008 (Pre-release) DLINQ vs DataTable,TableAdapter, etc
Hello, I may not understand DLINQ fully, but what are the advantages of it vs. just using a datatable, dataset etc Thank you! Edited -Changed LINQ to DLINQ I've not played around with it myself but from my understanding the syntax and ability to manipulate is greatly improved and more intuitive (especially to those with prior sql background). ...Show All
SQL Server How to Delete Files on Maintenance Plan
Hello, I am creating a Maintenance Plan in SQL Server 2005. The 'Back Up Database Task' has the choice 'Create a sub-directory for each database' as SQL Server 2000 does. But when I add a 'Maintenance Cleanup Task' I do not see a choice to delete files on subdirectories. Looks like it only deletes the files from the directory I specify. So, looks like SQL Server 2005 is removing some functionality already available in SQL Server 2000. ...Show All
Visual FoxPro Questions regarding connecting to an ADP server
I would like to use VFP as a frontend to reach in and pull data from our company's ADP server. I know the addressing ( IP and port ) used by the ADP client software and have administrative access on the User level ( I'm the sys admin), but am unsure where to begin. I do see a Reflection for Unix and Digital OLE control listed... is this related The goal is to be able to automate the execution of ADP english statement scripts to extract dat ...Show All
Visual C++ Visual C++ windows Application Executable file Crash
I have a problem, i created a windows application in visual C++ with which i made an executable file and when i open the executable it crashes. Does anyone know how to solve this problem Lilly Compile your application under the debug configuration, and run by pressing F5. the Visual C++ debugger should take you to the source code line where the crash occurs. At that point, diagnose the bug and fix it. ...Show All
.NET Development creating sequential access file
i need to know how to create a sequential access file A good PDF is found here: http://arxiv.org/pdf/cs.PF/0502012 ...Show All
