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

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

LTA

Member List

Mattias Jonsson
MatthiasH
colostate
guideX
bmcneill0
Dhivager Rathakrishnan
Shailesh Namjoshi
Earl Bonovich
blahmoo64
Claus Kessel
guzarva16
Devrim
jj kaufman
RSVS2005
beaker101
pradeepta
Hawkins Dale
MrTibs
Giri Nair
Mauro Solcia
Only Title

LTA's Q&A profile

  • Visual C# What is this message telling me?

    I keep getting this error message and haven't been able to locate a solution: An unhandled exception of type 'System.IO.DirectoryNotFoundException' occurred in mscorlib.dll Additional information: Could not find a part of the path "J:\DOH SSN MATCH\Unwise\tempFile.txt". The error pops up on the StreamWriter in following code: private void CheckForCrlf () {      string chekText = "" ;     FileInfo fi_SourceFile = new FileInfo ( m_inFilePath );     StreamReader sr_chekTest = fi_SourceFile . OpenText ();     StreamWriter sw_chekTest = new ...Show All

  • Windows Forms Bases classes & Forms

    class A : System...Forms.Form {} class B : A  //designer for class B -O'K {} class C : B  //designer for class C - ERROR {} Why does the designer screen of VS show me a big X instead of the form and say: "The service System.Windows.Forms.Design.IEventHandlerService already exists in the service container.  Parameter name: serviceType." It seems/appears I'm duplicating&nb ...Show All

  • Visual Studio Team System No effect of "define _CRT_SECURE_NO_DEPRECATE 1"

    For the moment I want to suppress all the deprecated insecure functions during static code analysis.  I've added this line in two separate files that get included in all source files: #define _CRT_SECURE_NO_DEPRECATE 1 to no effect -- the output still contains warning of these functions.  A colleague has resorted to #pragma to supress these warnings.  I'm curious as to why this doesn't work as documented in the help. Thanks. Sample warning: foo.cpp foo.cpp(18035) : warning C4996: '_wfopen' was declared deprecated c:\program files\microsoft visual studio 8\vc\include\wchar.h(827) : see declaration of '_wfopen' Message: ' ...Show All

  • SQL Server Using Xml data columns in Report Models

    I am working on a project where I need to expose some Xml data columns to a user that will be using the columns in Report Builder. I need to give the user the ability to query the nodes within the Xml data column. After creating the Data Source View, then opening up Report Builder - when I try to add the Xml column to the filter, I get a yellow warning icon next to the condition... Does anyone have any ideas on how to accomplish the task Craig Report Builder does not natively support xml data type. You need to create a set of views that would make your xml data look like a regular relational tables linke ...Show All

  • Visual Studio 2008 (Pre-release) WinFX November CTP released!

    I just found this: http://blogs.msdn.com/tomarcher/archive/2005/11/18/494274.aspx It seems the download links don't work yet. If you want the overall package (instead of the web bootstrapper) you'll find appropriate links (for either x86 or x64) in the Instructions section on http://www.microsoft.com/downloads/details.aspx FamilyId=E5376297-DA10-4FC3-967D-38C96F767FC4&displaylang=en  (after going through the check on system requirements). -Arik ...Show All

  • Visual FoxPro Drew Speedie Dies in Accident

    The following is a re-post fromt he FoxPro Wiki about the accident that killed one of our long-standing Visual FoxPro Forum contributors and a personal friend of mine, Drew Speedie and his son, Brent, last Friday: On Friday, September 16, 2005, Drew Speedie and his son, Brent, fell a few hundred feet to their deaths from a bridge in Yellowstone Park. The Speedie family was on vacation there. Details of this tragedy are extremely limited at this time. Drew was a friend and a valued member of the Visionpace team. He was the architect and primary developer of the Visual Maxframe Professional VFP framework and a frequent speaker at Fox conferen ...Show All

  • SQL Server MBSA 2.0/SQL Server 2005

    When will there be a version of MBSA that does the SQL Server checks for SQL Server 2005. MBSA 2.0 does not. Thanks, Sharon Sharon asked the question about MBSA and SQL Server 2005 in november 2005 - has there been any progress on this yet ...Show All

  • Visual Studio 2008 (Pre-release) Proper documentation for WPF?

    Hello! Is there some proper written description of WPF somewhere, for instance for download from the Microsoft website. Concerning proper I mean some documentation which present a complete conceptual driven presentation of WPF with operational directions of examples. I think the SDK browser is very poor in presenting an overview of the area. I think it works much better for situations holding only a small amount of information. By the way the search feature of these forums also works incredibly poor, for instance the same thread may show up a whole lot of time for a given search. A question for you who may answer questions in her ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. using texture to store data

    i am passing a texture (type: D3DFMT_G16R16) to the pixel shader which is supposed to store the value 0.3 in the green channel of some texels. here is an excerpt from the pixel shader: PS_OUTPUT Main (PS_INPUT input) { ... output.accumulation.g = 0.3f; output.accumulation.r = 0.0f; ... return output; } in the next run of the pixel shader i pass the same texture (where some of the texels are set to 0.3) to the pixel shader again. depending if the current texel's value is 0.3, the output color of the pixel shader should be green, otherwise black. PS_OUTPUT Main (PS_INPUT input) { ... float4 a = tex2 ...Show All

  • Visual Studio Team System Team Build, and Static Code Analysis.

    Hello everyone, When i make a new team build type i can enable Code Analysis, but is there also a way to specify which rules i want to check , cos there are quit a few from all the different categories that i would like to exclude. And you can do this when running CA in Visual Studio or when using it as a checkin policy. So where to set this for Team Build I am using the Juli CTP of TFS, soon i hope to upgrade to Beta3 ;) Greetings, Paul You can do this by overriding CodeAnalysisRules property of project files through tfsbuid.rsp file. This file is generated when a build type is created and located under $/ ...Show All

  • .NET Development How to locate an loaded assembly?

    I simply want to know how to resolve if an certain assembly (some *.dll file) is loaded (used) by other .Net application. AppDomain.CurrentDomain.GetAssemblies() gives you the list of all assemblies loaded in the current app domain. Michael Taylor - 2/7/06 ...Show All

  • SQL Server Keep Identity on Merger Replication?

    Hello, I have a table with composite primary key: sID- int (Identity) -No to for replication UnitID (char) I would like to carry the subscriber's sID to the server since the server has its own unitID. There is not conflict. The reason I want to keep is that I don't want the Identity number to increase too fast. Otherwise it will reach the limit very soon. Is there a way to do this Thank you for help. John ...Show All

  • Software Development for Windows Vista Release Plans

    Can somebody supply any information that is available re; the planned release dates for WF, in particular with regards to: 1) A version compatible with the Beta 2+ build of Visual Studio 2005 that was provided on the goods disks at the PDC 2005 conference. 2) A version compatible with the VS2005 being released in November. 3) A version with a go-live license. Hi Mark - The next public release will be Beta2 which is planned towards the end of December. The plan is to make Beta2 release compatible with VS2005 RTM. As far as the Go-live licenses, they are still being finalized. Stay tuned. Hope that helps ...Show All

  • SQL Server Crystal Reports

    I am working on a report in Crystal Report, I have a stored Procedure like this ALTER PROCEDURE [dbo].[usp_cust_by_activity] @carrier as VARCHAR(10) AS --drop table #custA --drop table #custPA --drop table #cdrall --drop table #cdrPrevMonth --SET @carrier = 'PR' --'PR', 'RG' SELECT DISTINCT fld_cust_id INTO #custA FROM tbl_cust_ld WHERE fld_ld_status = 'active' and fld_cust_id in (SELECT fld_cust_id FROM tbl_cust_ld_phone WHERE fld_carrier = @carrier) SELECT fld_cust_id, fld_btn INTO #custPA FROM dbo.tbl_cust_ld_phone WHERE fld_status = 'active' and fld_cust_id in (SELECT fld_cust_id FROM #custA) and fld_carrier = @carrier SEL ...Show All

  • Visual Basic Using Visual Basic 6 with CLR Profiling API

    I am using the profiling api with Rotor. However, I've found that using C++ to implment COM interfaces is very, very painful. Has anybody created profilers using Visual Basic 6.0 dll's having objects that implement ICorProfilerCallback If not, should this work in theory (writing a profiler in VB6 instead of C++) Does anybody have any idea where I can find a typelib for the Profiling API that would include a definition of ICorProfilerCallback For my application, performance is not an issue, so I don't mind if VB is slower than C++. But, speed of development is very important, and I write code a lot faster in VB than I do in C++. Th ...Show All

©2008 Software Development Network