LloydM_APFM's Q&A profile
Visual C++ Forward Declarations, Templates, STL
Is it possible to forward refence a class that is in namespace std I know how to forward reference templates that I declare myself, but I am having trouble forward referencing classes that are part of namespace std. For my own templates, code such as the following works: namespace MyNamespace { template< typename T > class CTestTemplate; } class CTestClass { public : CTestClass(My ...Show All
.NET Development Post XML request and get response
Hi all, I am developing a web appliaction in C# .net. I have to integrate UPS rate and service. For this it is required to post an XML to UPS server and get reponse from same. To my plight I did the entire coding using AJAX "assuming" XMLHTTPrequest to across domain might work. IE gives permission denied if the security settings are not set to prompt for cross domain. Can anyone help me out with C# code to simply place a r ...Show All
Visual Studio Release of a DSL for the Gamma et al. Design Patterns
Hi folks, I have written a DSL for the Gang of Four design patterns. If any of you are interested in taking it for a spin, you can get the source and doc from: http://www.clipcode.biz/workshops/dsl.html Enjoy, Eamon O'Tuathail Clipcode Knowledge Services mailto:eamon.otuathail@clipcode.biz http://www.clipcode.biz Awsome! This is excellent, Eamon. Gave me also new thoughts of finding my way th ...Show All
Windows Forms Icons in a datagrid
Hi, I want to add icons in the first column of a datagrid.The other columns are populated from the database and when I click on a row the icon should change. Please help me!. Manish K ...Show All
Smart Device Development Compatibility of .NET 2003 app. in Windows Mobile 5.0
Helo, can I run a .NET 2003 Pocket PC application in Windows Mobile 5.0 Pocket PC edition I have to use SQL Server Mobile database in the device. So when I am trying to add a reference to System.Data.SqlServerCe.dll, the following error message is displayed: "A reference to 'D:\Program Files\Microsoft Visual Studio 8\SmartDevices\SDK\SQL Server\Mobile\V3.0\System.Data.SqlServerCe.dll could not be added. This is not a ...Show All
Visual Studio Tools for Office Custom Properties in Outlook
Hi I'm developing, some features which includes adding some unique reference numbers to all outgoing mail items. This works fine and I can add the number in the new message event. The number is both added to the message body and the UserProperties collection. The GUID is only added to the UserProperties collection: //instatiate proxy ExchangeService. Exchange exchangeProxy = new ExchangeService. Exchange (); string [] refNumber ...Show All
Visual Studio Team System How To Monitor TFS Build server activity
Hello, I would like to now if it is possible to get the same flavor of build activity with Team Foundation Server as with CruiseControl.Net which offer a portal listing all build types and indicating their current state. If it does not come with the product, do I have means to create one Thanks Eric Hi Eric - We don't have such a portal out of the box in Team Build, however it should be fairly straightforward to build a porta ...Show All
Visual Studio Express Editions Visual Web Developer Express does not recognise ASP code in source view?
We still have to work on some ASP pages at work so I use VS 2003 to open the ASP pages and work on them. I have found Visual Web Developer Express 2005 to have a superior design environment to that of VS 2003. Our ASP pages are in mixed code format where the code is mixed with the html. My problem is, I noticed the source view in Visual Web Developer Express does not recognise the VB code that is mixe ...Show All
SQL Server User Hierarchies and key
In looking over the "Project Real" project, I see there are many User Hierarchies and not all of them end with the dimension key. Has anyone come across information regarding why they did this or something explaining when it is important to end with the key or not. In Analysis Services 2005, the cube space is made up entirely by the attribute hierarchies. The user defined hierarchies are only there to help th ...Show All
.NET Development Help plz!
How do i read data on the same row but on a different column from a mdb file using visual basic studio 2005. so far i got : somethingDataSet.Tables(NameofTable).Rows.Find("StudnetID").Item("Name") For example: student ID Name 1 John 2 Matt So if user put 1 it then the name should be John. And if 2 it should be Matt. However everytime i put 2, it gives me John. Could you guys help ...Show All
Visual Studio URGENT: Error with Microsoft.Reporting.WebForms.LocalReport.InternalRender
Brian We are experiencing some internal errors with the reporting services engine in the local mode. It seems to be working fine on all our dev boxes but seems to blow up in our production sites. Here are some messages found in the System Event log. Let us know if something pops up as you see the message. Basically, the code does the report render is given below. Call me stupid, i must have put a try/catch around the render method as it is ...Show All
.NET Development Import a text file in web page using stream
Hello,all. I am working on a project in which I have to import file(s) containing email addresses and put these email addresses in a text files using streams. My situation is that when a button is clicked the code should run and pick the data(email addresses) from some other file(s) and put them (email addresses) in text file(s) using streams. can anyone help please. I need it urgently. Thanks in advance. I would suggest asking this questio ...Show All
Smart Device Development Win CE.NET Systray Icon
Hello... I want to make a form that has an icon in systray. In Windows Forms I use NotifyIcon Class but this is not available in WinCE.NET. Can anyone give me a solution Many thanks! Hello... I found a solution ( http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnnetcomp/html/messagewindow.asp ). The only thing that does not work is the fact that the icon is invisible but it is there becose the space is cre ...Show All
Visual Studio System.MissingMethodException: Method not found: 'Microsoft.Office.Core.CommandBarControl EnvDTE.Command.AddControl
Hi, I'm trying to add a command into a commadbar, I believe the code is correct but when i run the code i get the following exception: Exception recieved System.MissingMethodException: Method not found: 'Microsoft.Office.Core.CommandBarControl EnvDTE.Command.AddControl(System.Object, Int32)'. Anyone know why We need a bit more context. What OS, what SKU of VS, what SDK version What are you trying to do, a ...Show All
Visual C++ new to VC++ 2005, have a few problems
1-In VC++6.0 i could compile a single file by just opening a c++ source file(workspace less) and press the build button. But in vC++ 2005, if i open a c++ source file, the build command is unavalible. i tried to do it by creating an empty project and adding a c++ source file to it. well i can run the code succesfully, but i can not debug it. How can i do it 2-How can i want to add a template to my project: template<class TYPE> class ...Show All
