LuisFco's Q&A profile
Visual C++ Unresolved Token and other link errors when migrating from VC++ 2003 to VC++2005 Express
Hello all, Here is the situation. I am migrating an existing solution from Visual C++ 2003 to Visual C++ 2005 Express. I have the Platform SDK installed as well. The solution contains two mixed mode projects. One is essentially a managed wrapper dll for a 3rd party static win32 library. I do not have access to the source for the 3rd party library. The other project is a managed executable that utilizes the wrapper dll. These projects worked fine under 2003 but now when I build the DLL project I get the following errors and I am trying to find out why. I have gone through and removed the dependency on _vcclrit.h via the i ...Show All
SQL Server RDF XML
I know SQL Server 2005 can import/export xml files. Can it be specific for RDF XML files ...Show All
Visual Studio Tools for Office VSTO2005 Beta2 : Caching Data with ServerDocument failed
Hi, I'm working on a solution where a winform Application must open a VSTO Word Template, and the winform App must send a few data to the VSTO Word Template. So, I'm trying to cache a DataSet into a Word VSTO document using the ServerDocument class in the winform App. I use the following code : string model = String.Concat(Soorce.IO.Settings.WordModelPath, "RecipeChapter.dot"); document = new ServerDocument(model); DataSet dsTest = new DataSet(); DataTable dtTest = dsTest.Tables.Add("TEST"); CachedDataHostItem host = document.CachedData.HostItems["RecipeChapter.ThisDocument"]; if (host == null )   ...Show All
Visual Studio Team System TFS and One-way Domain Trusts
TFS is not operating as I would have expected with regards to authenticating against a trusted domain. As best as I can tell from the User Education site, our configuration should be supported, yet I'm in a situation where the user accounts from the trusted domain cannot authenticate to TFS, and TFS group management will not allow me to add users or groups from the trusted domain either from the UI or using TFSSecurity.exe. The User Education article I'm referring to is: http://blogs.msdn.com/vstsue/articles/546436.aspx Our configuration: Two domains, "Production" and "Development". There is a one way trust between develo ...Show All
Windows Forms Prerequisites??
Thanks in advance for listening to this dumb question. When I try to publish with the prerequisites set to "Create setup program" and "Download prerequisites from the same location as my application" I get the error message: "Error 2 The install location for prerequisites has not been set to 'component vendor's web site' and the file 'DotNetFX\instmsia.exe' in item '.NET Framework 2.0' can not be located on disk. See Help for more information. Ophthalmology" Build is aborted. I don't know what to do or maybe I have the dotnetfx in the wrong place for install Frank I had a great Christmas and ...Show All
Visual Studio Team System rsitemnotfound error
When we access the team portal, we are getting rsitemnotfound errors for the bug rates, build, quality indicators and remaining work reports. The exact error is for bug rates is : The item '/RylandCom/Bug Rates' cannot be found. (rsItemNotFound) I assume this is a SQL Reporting services issue, but am not sure how to configure this in TFS. Has anyone else run into an issue like this Thanks in advance, I'm having similar problems, the reports that it says are missing are Exit Criteria Status and Issues both giving the error that the item cannot be found. This occurs when using MSF agile. I'm running the b ...Show All
.NET Development Single p2p? Send files using sockets or remoting?
I just did my first single application with remoting and I liked it. Should I use remoting or sockets programming If I should use sockets can you please point me to the right information of sending files and everything I could need Thanks For your first question, it really depends on transfer sizes and number of conneced clients, available bandwidth etc. For example, if you're got dialup users you will want every last byte you can squeeze out of the network connection, and so you will want to go the sockets route and implement a very light transfer protocol (e.g. implement a syn/ack with a crc32 on small 2k packets). However, if ...Show All
SQL Server compatibility question
just a question.... my web project is using SQL Express2005 and ASP.NET and C#. my web hosting company only have MSsql2000. would there be any conflict with regards to my database im sorry if i sound dumb. im a newbie to this. thanks a lot! There will not be a conflict but you may have to make code changes, there are a fair number of features in SQL Express that will not work with SQL 2000. I suggest downloading a copy of MSDE for yourself(which is free) so you can test before going live with the hoster. ...Show All
Visual Basic ComboBox loses Selected Index after Keypress
Hi, I've ran into what I believe might be a bug with ComboBoxes. I found it trying to implement type-ahead functionality. It appears that when I set a selected index value in the text-changed event of a combo, I seem to lose that value after the event has been processed. I thought at first it was the recursive call back into TextChanged, but the value is still there at the end of the procedure. I'd appreciate some feedback before I submit it as a bug. One thing that I'd like for someone to try is to set a break when SelectedIndex = -1 is True. VB Express doesn't allow you do that so I can't see what internal event is causing it to cha ...Show All
Visual Studio Express Editions Help! Want to create basic user input form tied to database in VWD
Hello everybody. I have used VWD (Visual Web Developper) for the past few weeks and love it so far. As a inexperienced ASP.NET developper, I have run into difficulties when trying to design user web form input to populate a database. Indeed, the medical unit I'm working at whishes to create a webpage with simple user forms ( checkboxes, textboxes) - to keep track of patients medical records - that will then fill a database (SQL preferred). Should the page have an .aspx or .ascx extension Do I need to create a dataset I've consulted the online help but I'm still confused and don't know how to proceed. I'm sure there should be a wiza ...Show All
SQL Server Unable to restore DBs in SQL Server 2005 from Express
Hi all, I'm unable to restore DBs (I've created in SQL Server 2005 Express) in SQL Server 2005. The error I get is (copied): TITLE: Microsoft SQL Server Management Studio ------------------------------ Restore failed for Server 'D_EDTIMD027SW'. (Microsoft.SqlServer.Smo) For help, click: http://go.microsoft.com/fwlink ProdName=Microsoft SQL Server&ProdVer=9.00.1187.00&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Restore+Server&LinkId=20476 ------------------------------ ADDITIONAL INFORMATION: System.Data.SqlClient.SqlError: The database was backed up on a se ...Show All
Visual Studio Tools for Office login to MS Exchange 2003
Hi, I need to do a very simple email notification application, which should loign to MS Exchange 2003 server and check if any new messages.. BUT there is one problem.. we use MS Outlook 2000 and 2003 which has two accounts, MS Exchange and POP3 configured.. so is there any way to login to both, check if any new messages and notify the user Many Thanks.. Jassim, I am sorry it took so long for us to respond. We are trying to now get on top of the forums in earnest! To check for unread messages for one area, just use the UnReadItemCount property of the folder you want. For example: Dim objFolder As MAPIFolder Set objFolder = ...Show All
Visual Studio Tools for Office Office Web Components
What is the best forum to ask questions about Office Web Components You can post quesitons concerning Office Web Components in the Office Web Components newsgroup. Please post your questions here: http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.office.developer.web.components&lang=en&cr=US Thanks! Mike Hernandez Community Program Manager VSTO Team ...Show All
Visual Studio Team System Where can I download "Visual Studio Team Edition for Software Testers"?
Where can I download the beta version of "Visual Studio Team Edition for Software Testers" Visual Studio Team Edition for Software Testers as RTM'd. It will be released on November 7th. However if You have an MSDN subscription you can download it today. Also, if you attend one of the worldwide launch events ( http://www.microsoft.com/events/2005launchevents/default.mspx ), you can get a trial version there. ...Show All
Windows Forms How to update dataset
Hi, I am having some problem to update my dataset. I am basically using two forms to show the information from the database. This first form is having a datagridview to show the basic information and the second form is used insert and update the database. Now I am using the following code to fill my datagridview on the form load event. Dim ds As New DataSet Dim sSQL As String VoucherEd.showdialog() sSQL = "" 'SQL Statement SQLHelper.FillDatase ...Show All
