Software Development Network Logo
  • Microsoft ISV
  • Visual Studio
  • Visual C#
  • Visual J#
  • .NET Development
  • Architecture
  • Game Technologies
  • SQL Server
  • Smart Device
  • VS Team System
  • Windows Live
  • Visual FoxPro
  • Visual Basic
  • VS Express Editions
  • Windows Forms

Software Development Network >> linkspeed's Q&A profile

linkspeed

Member List

Scott Nation
rjschave
Gy_Molvak
CGantz2000
Dgrm4
Karlo123
alexjstubbs
Hans Verkoijen
Dont want to
C#Geek
Mekon2
Hernan Gatta
Jackthbean
AvalonNewbie
MichaelEdgw
Tim Heckel
Lee Minett
dilibu
María E
Michael Palladino
Only Title

linkspeed's Q&A profile

  • Visual C++ Linker PRJ0002 error

    I am now getting the following error virtually every time I link (VC++ 2003): pwbGEClient : error PRJ0002 : error result returned from 'link.exe'. There are no LNK* errors or warnings.  Furthermore, there appears to be no problem with the link itself - the executable it builds runs correctly and always has my latest changes. I used the build log to assemble a call to link.exe from the command line, and captured its process exit code.  It is returning 6, and this causes the PRJ0002. What does 6 mean   Unfortunately I don't. Upgrading would be a nontrivial exercise in o ...Show All

  • SQL Server does "with (nolock)" absolutely guarantee no locks are taken?

    I need to run a few short-running queries against a production system. I need to be absolutely certain that SS doesn't take out any locks on the table as a result. Does "with (nolock)" absolutely guarantee this I've read BOL on the topic and I understand isolation level read-uncommitted. But I want to validate that there's not any undocumented behavior in SS that might violate the documentation (which clearly states that no shared locks are issued). Thanks! You're talking two different things. with (nolock) is a HINT. That means there is a possibility that SS will override it. SET TRANSACTION ISOLATION LEVEL ...Show All

  • Visual C# Threading in C#

    Hello Everyone, I have a tab application, which initially I made single threaded....I added a dll which has a form. Now when I change to a tab method in that dll gets fired and form comes up, which makes everything else unresponsive.... Whats the best solution to implement thread to solve that problem.... Secondly, I tried doing something this way..... namespace something { public partial class Some : Form { public Some() { } // Then here more procedures } // Here I created another class which fires the method from dll.... public partial class Test { public DLLFire() { } } Now If i ...Show All

  • SQL Server Problem opening UDF

    Hey, I am using SQL Server 2005 client tools on a 2000 server. Everything works fine except ................ WHen I try to open (Modify) a user defined function, an error msg appears saying "QuotedIdentifier property not available for the function" Anyone having same problem and found solution This sounds like the following bug, which is scheduled to be fixed in Service Pack 1: http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx feedbackid=FDBK38845 Steve Kass Drew University ...Show All

  • Visual Studio 2008 (Pre-release) A question on xbap

    When I open a xbap (formally wab) in IE, a progress bar is displayed indicating that the application is being download and the application will be loaded after the download ended. Since the WPF Jan. CTP has been installed on my machine, I am wondering what will happen if there is no WPF installed on the client machine. Does it promopt the end user to download the .NET Framework 2.0 and corresponding WPF Components Thanks! Gotcha, you are talking about the IE7, then how about the pre-WINFX builds of IE, aka IE5, IE6 I believe what the original poster wants to know is the situation on IE5 or IE6, that can make more sense. ...Show All

  • Visual Studio Express Editions Error result -1073741819 returned from 'C:\Program Files\Microsoft Visual Studio 8\VC\bin\mt.exe'.

    I just sarted getting this error. I have no idea what is causing it. Embedding manifest... Project : error PRJ0002 : Error result -1073741819 returned from 'C:\Program Files\Microsoft Visual Studio 8\VC\bin\mt.exe'. Suggestions where to proceed, please. Thanks, RON C mt.exe is a tool used to embed manifest to the resulting binary. It could be that the binary is being used by another process. Could you try cleaning your solution and if that still fails, try running the mt.exe tool from the command line. Hope this helps! Thanks, Ayman Shoukry VC++ Team ...Show All

  • SQL Server ssis Creating a Basic Package tutorial - not a query

    In the tutorial Creating a Basic Package Using a Wizard > Lesson 1: Creating the Basic Package > says to use the following sql statement on the query page: SELECT * FROM [Customers$] WHERE NumberCarsOwned > 0 When I paste the query in I get the message : This SQL statement is not a query. Does anyone have any suggestions   The input and output are set up correctly and I have the sample excel file Customers.xls.  I am new to all this, is there some setting I need to change for the tutorial to work or.. FYI I have installed Sql 2005, Sp1.   I got this error message too. ...Show All

  • Windows Forms reading from file

    hi all i have alot of process reading from one file and i get system.io exception say can't not read from file coz it's being used by another process well i want check if the fiile busy or not b4 getting dat from it does anyone know how to handle it I think that you have opened the file for reading & not closed  ...Show All

  • Visual Studio Team System Switching between different editions

    I have installed Visual Studio Team Suite 2005. I have initally set it to Web developer mode. I am a novice learner and want to see the features for the different editions like Architects, Developers, Testers...How can I switch between these modes....where is the setting in VS 2005 Thanks Vinod PMP, MCP USA You can switch the Visual Studio settings by opening the Visual Studio 2005 command prompt, type devenv /resetuserdata , and then press Enter. Then, start Visual Studio again. You will be prompted to select the environment settings again. ___________________________ Sarah Cameron - InCycle So ...Show All

  • Visual Studio Team System Web test failing RequestFailed: The value of the date string in the header is invalid.

    All webtests I run from VS2005 RTM are failing with a response of: RequestFailed: The value of the date string in the header is invalid. The request looks like this: GET /Angel63/sidebar.asp HTTP/1.1 User-Agent : Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) Accept : */* Accept-Language : en-US Host : 600m01 Cookie : ASPSESSIONIDSATDSCQA=LMGPKPGDJNEPFDPPJKBKILEP Accept-Encoding : gzip I can successfully run the same test using the beta 2 release of VS2005.  The only thing I can see that is different is that the request is slightly different. Request from VS2005 beta 2: GET /Angel63/sidebar.asp HTTP/1.1 User-Agent : Mozilla/4.0 (com ...Show All

  • Visual C# Generics Question

    I am just starting to work a bit with generics and ran into a little snag. I have a list object that inherits from bindinglist and I implemented a constraint of LabeledRowCollection. The code looks like this: public abstract class ItemList <T> : BindingList <T> where T : LabeledRowCollection , new () What I am trying to do now is have ItemList implement the IBindingListView Interface, but I can't get it to work. If I try: public abstract class ItemList <T> : IBindingListView, BindingList <T> where T : LabeledRowCollection , new () I get a compile error that says the BindingList declar ...Show All

  • Software Development for Windows Vista Vista Feb CTP 5308 installation stuck at "Starting installation"

    Hi all, anyone knows how to fix the above error I want to do a clean installation on a Dell D600 which has a 60Gb HDD and 1Gb RAM. The DVD ISO boots up fine and after i click on Install Vista it gets stuck on "Starting Installation"....I've formatted the drive with Win PE 2.0 and running vista install again but it still gives me the same error I'll be really grateful if someone can tell me what's going on ! ! I attempted to install 5308 from a DVD i received from the Vista Airlift here in Redmond, WA. I run into this issue where it gets to a screen with "Starting Installation" gets th ...Show All

  • Windows Forms Order events are fired in form

    I don't know if I'm perhaps following bad coding practice, but here we go: I've got an application that is dynamically opening child forms. In the form_Load event for one of my forms, I am populating some combo boxes. That works beautifully. Here's where it gets interesting: The combo boxes have sorts and filters applied when they are loaded. All three combo boxes are related to each other. I would like to figure out a way to change the text showing in the other 2 combo boxes whenever a user selects (or types) something in one of the other two combo boxes. This would be done using a combobox.findString with a string based on a query to ...Show All

  • Software Development for Windows Vista windows vista

    how can i download windows vista and what is the procedure because i am browsing the microsoft web for 2 hrs i am a genuine windows xp user. There's no public beta available yet. It's available only to MSDN subscribers. ...Show All

  • Software Development for Windows Vista Bug? generic Dictionary as Property

    I exposed a Dictionary<string,string> as a property named MI of a custom activity. The code generator messes up the whole workflow afterwards, translating the dictionary to: System.Collections.Generic. Dictionary < string , string > dictionary`21 = new System.Collections.Generic. Dictionary < string , string >(); in the InitializeComponent of the Workflow. The '21 is of course an illegal character combination and the code has to be manually fixed afterwards. The versions of the deployed assemblies of the Workflow Foundation are at version 3.0.03603.4. To reproduce simply creat ...Show All

©2008 Software Development Network