JerryPG's Q&A profile
Visual Studio Team System Could some one tell how to test mixed c++?
As MSDN said: A mixed project is a project that uses the /clr compiler option. This kind of a test project provides the ability to test the following production code: Static native libraries Native DLL entry points Standalone .obj files Mixed-mode DLL assemblies with methods that are callable. This does not include executable files because they contain unmanaged code, and unmanaged executable code is generally not re-base address ...Show All
Visual Studio Express Editions TreeView question #2
Hi Is there any way to get a TreeView which is being populated with Files to read the appropriate file icons for each of the files I do have a useful program (Audacity) which can rip icons from files, but I suspect that would be a rather long and laborious procedure. Is there any inbuilt function or method to do this kind of thing Even just the system file icons would do most of the job for me. It is a bit boring when I just have on ...Show All
Smart Device Development Need help on MObile Internet Explorer ..
Hi all, I have created Mobile web using Asp.net Mobile Controls. As you know, mobile phones have many different web browsers, thus I like to know more about Mobile Internet explorer's capabilities so I create more useful mobile application. I have these questions as they are very important for Mobile web application. 1.Does latest Mobile internet Explorer in Window mobile V5.0 support xhtml 2. What is the latest Html version s ...Show All
Visual C++ VC++ project hangs at startup?
Hi, I was wondering if anyone has the same problem as I do. Currently my project hangs when I startup VC++. I can not figure what is wrong with my project. I can not even open my project at all. I did not do anything different when creating the project. I started off by creating an empty new project, added 1 windows form, and couple source/file files which I added and wrote myself. I was wondering can open my project to see if they have the same ...Show All
Visual Studio Tools for Office EXCEL
DEAR SIR PLS HELP ASSISTANCE IN THE FOLLOWING: 1. HOW TO LIMIT THE EXCEL SHEET TO 100 ROWS AND 20 COLUMNS SO THAT THE USERS DONE KEEP SCROLLING UNWANTED BLANK AREAS. 2. CUSTOMIZED MENU BAR DOES NOT WORK, IF THE FILE NAME IS CHANGED AS THE MACRO PATH CHANGES ON SAVING THE FILE AS A DIFFERENT NAME. For questions unrelated to VSTO, but related to Excel's object ...Show All
SQL Server Problem with Execute SQL Task
I am having problems creating an "Execute SQL Task" which calls a stored procedure. I have tested the procedure successfully using parameters that I have hardcoded on the command line (i.e., EXEC procedure_name 1, 2). This works fine, but I'm having problems using variables(i.e., EXEC procedure_name @VAR1, @VAR2). I'm using a ConnectionType of OLE DB. When I parse the Query I get an error message that says "The query failed to parse. ...Show All
Smart Device Development Activesync fails to sync after installing vers. 4.0
Hello to all, I have upgrade activesync from version 3.7.1 to 4.0 in order to deploy my application in VS2005 beta2 to the device. After doing that, activesync stops to work: although the AS icon show connection (green) when the PDA is in the cradle, is is not possible to get the main screen of activesync ; and, when trying to explore the device, I get the following error window: " Critical communications services have failed to ...Show All
Smart Device Development Please help! PPC2003, VB.net 2005 and my app just disappears!
Hi all, I'm at my whits end. I sincerely hope you can help point me in the right direction. I'm currently writing an application in VB.net 2005 for a Pocket PC 2003. This app is pretty sophisticated in that it connects to a MySQL server via MySQLMobile, it reads information from ini files via Nini, it connects to a bluetooth printer via a serial port, and it uses many OpenNETCF controls, including 15 buttons on one form. Th ...Show All
Visual C++ Conversion of projects from Visual C/C++ version 2.0
Hi In the msdn library there is an article describing serial communications in Win32. This article includes the complete source code of a sample program called MTTTY . I use Visual C++ 2005 (beta 2) and would like to compile the source. When I run the convertion wizzard on the sample makefile I get the following message: Conversion Issues - MTTTY: Unable to open file. This appears to be a project file from a version of ...Show All
Visual Studio Text template load a file
Hi, I need to load a project file from text template and write all lines. The below code work fine, but I need to put complete "path" in property " FileSourceCode" I need to load from "current path". <# if (System.IO.File.Exists(att.FileSourceCode)) { System.IO.StreamReader sr = new System.IO.StreamReader(att.FileSourceCode); #> <