qrli's Q&A profile
Visual Studio Team System Redistributing team system dll's
I have an application that references "Microsoft.TeamFoundation.WorkItemTracking.Controls.dll" but my application will not work unless I copy that dll to the directory where the application is being run. The end-user's machine has this dll on it, but my app doesn't recognize it. Is it legal for me to redistribute this dll with my application I noticed that it is not in the Redistributable folder that comes with the SDK. If I cannot redistribute it, is there any alternative for making my app work Thanks. You cannot legally redistribute that assembly, but the user can get it by installing Team Explorer. You will still need a CAL for Team Explorer to connect to TFS unless the user is connecting ...Show All
Smart Device Development problem with sqlconnect
I need some help on the following problem. I am using VB on VS 2005 and using SQL 2005 Express. When I create a windows app and run it on a desktop the following code works. But when I create a Win CE app and run it on a PDA I get "server doesnt exist..." dim osqlconn as data.sqlclient.sqlconnection = new data.sqlclient.sqlconnection() osqlconn.connectionstring = "data source=66.69.4.21\sqlexpress;initial catalog=scanit;user id=sa; password=12345;" osqlconn.open() Thanks, Nelson See this on how to configure SQL Express for device connections and for correct connection string. ...Show All
Audio and Video Development Debug Help with Simple Animation
I trying to debug a small problem. I cannot get the animation to activate. I'm missing something simple. MARKUP < xml version="1.0" > <root xml:lang="en" xmlns="http://www.dvdforum.org/2005/ihd" xmlns:state="http://www.dvdforum.org/2005/ihd#state" xmlns:style="http://www.dvdforum.org/2005/ihd#style" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.dvdforum.org/2005/ihd http://www.dvdforum.org/2005/ihd/iHD.xsd"> <head> <styling> <style id="BACKGROUND" style:position="absolute" style:backgroundFrame="0" style:backgroundImage="url('bg_main.jpg') ...Show All
Visual C++ Trivial Properties vs. Block Properties vs. Traditional get() set() methods = Compiler Bug!!!
I already posted this thread but I am not getting any feedback. I would like someone from the C++/CLI development team to take a look at this. I have provided a sample of C++/CLI code and it's equivalent written in C#. This is about as simple a demontration as I can provide so hopefully someone will try this out and at least confirm that this is a compiler bug. I have two classes, class 'A' and class 'B'. Class 'B' derives from class 'A'. They both have the same privately declared (same names and signatures) properties and 'get' and 'set' accessor functions. This is possible because they are PRIVATE. The 'get' and 'set' accessors work fine, the trivial property works fine, but the block property in the derived class causes a compil ...Show All
Visual C# undo manager
Hi all, I have a C# application that was written using VS2003 and has since been converted to VS2005. When I try to debug the application, I get the following error message: Error connecting to undo manager of source file pagename.aspx.designer.cs Can anyone shed some light regarding what this is Thanks, Dan Any additional update/word on this I'm seeing the same thing intermittently in VS.NET 2005 Team Edition for Devs. I should point out that the solution/project I'm seeing it with isn't a 2003 conversion. It does, however, use the MS Web Application Projects add-in for 2005. http://msdn.microsoft.com/asp.net/reference/infrastructure/wap/default.aspx ...Show All
Visual Studio 2008 (Pre-release) WCF call fails sometime in CAB application
We are currently developing a software using both CAB (Composite Application Block) and WCF. The client side GUI is written based on CAB. However, it is found that if WCF callback is used, sometime WCF client side call will raise "TimeoutException" exception. I have checked the WCF log file and found that before the exception was raised, the message was already received by the client side; but for some reason, the message was not processed until timeout. If I not to use CAB, it seems everything works fine. I think a dead lock could be generated by ObjectBuilder, which is the main part of all the application blocks. I have wrote a small test program which has the exactly same problem. I cannot locate the problem precisely ...Show All
Smart Device Development create is not a member of system.xml.xmlreader
I try to develop an application on smartphone 2003 I have a create is not a member of system.xml.xmlreader when I code this Const DOC_XML As String = "D_Overlending.xml" Dim DocXml As New XmlDocument() DocXml.Load(DOC_XML) Dim readXML As XmlReader = XmlReader.create( "D_Overlending.xml" ) Someone can help me XmlReader is an abstract class and can not be instantiated directly. You've to use the concrete implementations of this class e.g. XmlTextReader. In NETFX 2.0 version it is recommended to use create method. SmartPhone 2003 should have compact framework version 1.0 and therefore you should use the concrete implementations of this class to create t ...Show All
Visual Basic Save
The menustrip has a button to save...How do you make it work depends entirely what you want to do to save it, how you want to save the item, where to etc... can you please tell us specifically what you want to "save" text to a file ...Show All
.NET Development FTP w CF 2.0
Hi all, I am getting an odd error during an FTP. It happens completely randomly. I can sometimes ftp 50 files with no error, and other times 2 errors in a row with the same files. This machine can FTP via CF 1.1 without error as well as with any other FTP method I have tried. Like I said it only happens with the 2.0 and I am at a loss. Any ideas Here is the error; System.Net.WebException: The remote server returned an error: (501) Syntax error in parameters or arguments. at System.Net.FtpWebRequest.SyncRequestCallback(Object obj) at System.Net.FtpWebRequest.RequestCallback(Object obj) at System.Net.CommandStream.Abort(Exception e) at System.Net.FtpWebRequest.FinishRequestStage(RequestStage stage) at System.Net.FtpW ...Show All
Visual Studio where can I find documents related to User Interfaces please
I need documentation to implement good UI. Best Practices and performant and good UIs. Thank you You can find documents related to UI here - http:/ / msdn.microsoft.com/ ui/ Some good UIs - http://www.microsoft.com/windowsvista/features/default.mspx Anand.. ...Show All
Visual C++ Passing file handle across processes
Hi, Could anyone let me know how to pass the file handle to a different process through WM_COPYDATA with some sample code. Thanks a lot, Santa (File) handles are local to a process, so passing it like that will do you no good. If you are sending it to a "child" process, you can make it work by enabling handle inheritance -- otherwise you'll just have to re-open the file and seek to the right position. ...Show All
Smart Device Development Deleted messages from Outbox
Hi, I am working with Pocket PC 2003 and I want to delete all the messages stored in the Outbox. I have to use IMAPIFolder::DeleteMessages function but I am not sure about the parameters of this function. How can I get the ENTRYLIST that the function requires [in] Reference to an ENTRYLIST structure that contains the number of messages to delete and an array of ENTRYID structures identifying the messages; cannot be NULL. Has anyone used it before Thanks in advance Hi there I wrote some code like this in an SDK sample we shipped with Windows Mobile 5.0, of course since you are working on Pocket PC 2003 you may not have seen this sample. The sample is called InboxMen ...Show All
Windows Forms Accessing Controls
How would i go about accessing a control in another form...Like if enter text in one txtbox and click a button I want that text to show up in another textbox on another form when its loaded....do i need to make my controls public you could make your controls public but that would be bad design, as suggested, use the properties to access a control. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=729974&SiteID=1 same thing as the link above and the response given already. Only thing that really needs to be modified is to access the control from the control's owner form so in the example in the link instead of doing: get{ return this.theName; } etc.... should be: get { return this. theControl .Text; } set { ...Show All
SQL Server stored procedure addressing generic table
I want to use ONE stored procedure to update/insert about 300 tables in a database. I hoped this code would work but it gives me an error: ALTER PROCEDURE [dbo].[InsertRowsTick] @tableName varchar, @bid float, @ask float, @last float, @volume int, @dateTimed DateTime AS BEGIN SET NOCOUNT ON; INSERT INTO tableName ( bid, ask, last, volume, dateTimed) Values ( @bid, @ask, @last, @volume, @dateTimed) END When I (1) commented out @tableName parameter and (2) instead of INSERT INTO tableName wrote: INSERT INTO <realtableName> the code (C#) executed and the table was filled. How can I use a generic table name as a parameter Thanks. CetinBasoz wrote: Alex, Check sp_executesql. However be careful ...Show All
Windows Search Technologies Windows XP startup issues
Hi, Does anyone have any idea on how to solve the following issue. I recently installed Macafee Internet Security Suite. But since I did that and ran virus scan which found a number of issues, which I cleaned up. But ever since, when I boot up my computer, it gets as far as the Welcome screen. When I click on either of the two user accounts, it initiates the login but then immediately logs out again. Any ideas on how to resolve this problem, will solve me a great deal of time. Thanks, Greg. Hi Greg, As this topic is not related to Windows Desktop Search I'd like to direct you to the following two resources where you might be abelt get answers to your questions. http://msdn.microsoft.c ...Show All
