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

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

Sartory

Member List

Jiaozi
Giancarlo Aguilera
JakeL
Abid Ali
vandershnozz
Michael Horne
MatrixCoder
Jigabyte
wildabeast
MikeTaj
KeithL [MSFT]
Sassie
danpartee
Keith Rogers
Amen-Re
Allinb
ivalley
Bastian van Venrooy
HuaMin Chen
Cwoja
Only Title

Sartory's Q&A profile

  • Visual Studio Team System Problem connection to Team Foundation Server Proxy

    I have the following environment: - Windows Server 2003 SP1 with SQL Server June CTP and Team Foundation Server Data Tier July CTP - Windows Server 2003 SP1 with Team Foundation Server Application Tier July CTP - Windows XP Professional SP2 with Visual Studio Team System July CTP All installed cleanly onto clean machines. I can connect to Team Foundation Server fine. All is well. Now, I've installed the Team Foundation Server Proxy July CTP onto another clean Windows Server 2003 SP1 machine. Followed the install instructions, including proxy.config and web.config. All installed cleanly. Now, when I try to connect Team Explorer to t ...Show All

  • Visual Studio 2008 (Pre-release) Could not locate the assembly "WindowsUIAutomation"

    I just installed Visual Studio 2005 Team Suite Beta 2 Version 8.0.50215.44 (Beta2 50215-4400) and WinFX SDK Beta 1 Web Setup, and Microsoft Visual Studio Extensions for WinFX Beta 1. I go to create a brand-new Avalon Application and without adding a single line of code I compile. I am given the following errors: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50215\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "WindowsUIAutomation". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. C:\WINDOWS\Microsoft.NET\Framewo ...Show All

  • SQL Server null + nvarchar = null?

    I am trying to concatenate nvarchar fields and I have a problem. Lets say I have a table called People with nvarchar fields FirstName and LastName. Lets say that there is only one row in the table and FirstName is set to null and LastName is set to "Smith". When I run this query FullName will be null: select (FirstName + LastName) as FullName from People But I want FullName to be "Smith". Also if LastName is null and FirstName is "Bob", then FullName will be null here also.  I am actually trying to concatenate 4 columns  of nvarchars.  Is there a workaround for this You need to handle nulls, ...Show All

  • Visual C# could not see results after sql server stored procedure row insertion

    private SqlParameter CreateSqlParameter( string sLabel, object oValue, string sDirection, string sDbType) { SqlParameter sDummySqlParameter = new SqlParameter (sLabel, oValue); if (sDbType == "Int32" ) { sDummySqlParameter.DbType = DbType .Int32; } else if (sDbType == "DateTime" ) { sDummySqlParameter.DbType = DbType .DateTime; } else if (sDbType == "String" ) { sDummySqlParameter.DbType = DbType .String; } else if (sDbType == "Boolean" ) { sDummySqlParameter.DbType = DbType .Boolean; } if (sD ...Show All

  • Visual Studio VSS 6 restore

    Greetings all, I am new to VSS and am not sure how to restore a vss archive file. I have archived the vss file and moved it to another PC...I installed the same version of SourceSafe as the original PC, but can't seem to figure out how to restore the project. Suggestions would sure be appreciated. Thank you. Randude VSS n00b Are you using Source Control plug-in other then Source Safe To switch back to Source Safe try registering ssscc.dll from you SourceSafe install folder regsvr32.exe "C:\Program Files\Microsoft Visual SourceSafe\ssscc.DLL"   It seems that your source control plug-in is in the disconnected state. To g ...Show All

  • Visual Studio 2008 (Pre-release) How could I test a WCF service from browser

    It Is possible to test a WCF service from browser like in ASMX I did it in September CTP, but failed in November CTP. When I use svcutil.exe to generate a proxy, it throws a exception: D:\>svcutil http://172.21.25.14:8877/MathServices wsdl Microsoft (R) Service Model Metadata Tool [Microsoft .NET Framework, Version 2.0.50727.129] Microsoft Corporation.  All rights reserved. Error: Unable to obtain Metadata from the Uri provided Error:   WS-MetadataExchange Failed on URI:http://172.21.25.14:8877/MathServices wsdl     The message contains an invalid or expired security context token. Error:   ...Show All

  • SQL Server Directly editing data in results pane with SQL 2005 Management Studio

    In SQL 2000 Enterprise Manager, one was able to edit and commit data on-the-fly directly from the results pane.  Action->Open Table->Query with the SQL Pane shown gives you an interface similar to Query Analyzer.  One could write a complex select statement with where clauses and joins, and the results pane would show the resulting data.  The data is editable and instantly updated.  We are now planning to migrate to SQL 2005 , and so will need the same capabilities that were availiable from its predecessor.  I believe there to be an option/configuration setting or panel in Management Studio that would expose thi ...Show All

  • Windows Forms Importing text files

    Greets all, I have several comma-delimited files that we buy from a supplier that need to get into our database. Since we have to do some formatting to the data we already have an app that does this however it takes a VERY long time to do this.   So far the problem seems to stem from avoiding duplicates. Ex. If I get a list of  ...Show All

  • SQL Server ISAPI Error

    I Configured WebSync through SQL Server 2005 on a Windows 2003 Standard Server. IIS,CA and Application Pool are also configured. When I try to browse https://Localhost/SalesOrders/Replisapi.dll it gives me a message " The page cannot be displayed". Any help would be greatly appreciated. John I created 2 virtual directories from SQL Server and IIS on this box, Server_2. Both of them don't work. This server_2 has SharePoint installed and work as a group server. I did same configure at a different box Server, It works. sorry I should say https://Server/VirtualDirectory/replisapi.dll ...Show All

  • Visual C# using code written in C

    Hello. I need to use a code written in C (not C++) in my C# application. Is it readily usable in .NET What do I need to do It's not 'readily usable', but you can use it. You need to create a C++ dll ( almost all C will compile as C++ ), which exposes a C++/CLI class, and that class will provide a layer between .NET and your C code. Then, you'll import this dll into your project and call it from there. So, if you have a C function called DoSomeStuff, you add a DoSomeStuff method to your managed C++ dll, and it just takes the same parameters, and uses them to call the method and return the result. ...Show All

  • .NET Development Problem while managing modules and forms collection in a Microsoft Access Database.

    Hi to all, I'm using modules and forms collections from Microsoft.office.interop.access.application object to copy modules and forms from a database to another. And it does not work, I think it's because of the password inside the database, to manage modules. Is someone knows the method in .net librairies in order to set the password I know there is one in access.application.OpenCurrentDatabase but it seems not be the right one. thanks for help david ...Show All

  • Visual Studio Express Editions how to make something happen at a certain time.

    I am used to having procedures like when button 1 click do this end how do i do it at a certain time of day say at midnight and 0 mins and 1 sec. do this end i have this Public Sub Call_create_event_file() If Now.Hour = 18 And Now.Minute = 49 And Now.Second = 1 Then midnight = 1 Call Create_Event_log_file() ' midnight = 0 Else 'midnight = 0 End If midnight = 0 End Sub but what actually must call this event procudure, thats the concept i am missing i think So what actually call the sub Public Sub Call_create_event_file(), its like im chasing my tail! ...Show All

  • Windows Forms ClickOnce deployment at Orcsweb

    Hello, I just signed up for a Beta2 hosting account at Orcsweb.  They set the mime types for application, deploy and manifest and they have the Frontpage Server extensions, so I can just click Publish from VS2005. I published an empty windows form at http://209.34.241.26/publish.htm As you can see, when I click Install, I get "Unable to continue. The application ...Show All

  • Visual C++ Memory: App - Driver

    How do I declare memory for use in an application and a driver I want declare a pointer in the app, "int *pData", then call some function so that the driver will allocate the necessary memory, pointed to by *pData, which can be accessed by both the driver and the app. I'm trying to port a Linux driver and Linux app.  The Linux app is using mmap() function.  Is there a Microsoft equivalent Thanks Hi! I would propose the following: 1) Specific to usage of DMA in drivers:   http://msdn.microsoft.com/library/default.asp url=/library/en-us/kmarch/hh/kmarch/IputOput_1a9532bd-ce ...Show All

  • Visual Studio Team System CustomDictionary.xml

    Is there anyway to avoid having CustomDictionary.xml uninstalled when FxCop is uninstalled before installing a new version It would be nice to be able to keep the work I put into collecting various words/acronyms not found in the Office dictionary. Thanks We've discussed this in the past. Right now, we're re-examining the spelling services and I will put this point on the list for consideration. In the meantime, you might want to place the customdictionary.xml in your user settings directory. FxCop will pick it up, and it won't be blasted on an uninstall. After installing a new version, you can copy over the file and hope we hav ...Show All

©2008 Software Development Network