Software Development Network Logo
  • Game Technologies
  • .NET Development
  • Microsoft ISV
  • IE Development
  • Visual Basic
  • SharePoint Products
  • SQL Server
  • Visual FoxPro
  • VS Team System
  • Visual Studio
  • Visual C++
  • Audio and Video
  • Windows Vista
  • Visual C#
  • Smart Devicet

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

pauley

Member List

Matthew Lebo28574
M. Nicholas
Bob Willer
hega72
Murali Krishna K
Codeblack
Xancholy
ariefcrawfordconnect
dotnetsekar
QuantumMischief
Igor L. Kravchenko
HumbleServant
Matt1001
Pradeep Gupta
Michael Lutz141607
cherriesh
Shahid Mahmood
Danny Tuppeny
n0n4m3
Javahar
Only Title

pauley's Q&A profile

  • Visual Studio Team System Want to only send email on a specific Build Type

    Im having trouble finding where an email is sent on the status of a build using build types. My goal is to send an email on the status of only one build type to everyone in our engineering department. Can anyone point me to where I can restrict email notification to only one build type in a team project Thanks, staffan You would need to use the bissubscribe utility and specify a filter. I haven't done this for builds, but here's an example for work item tracking alerts: http://blogs.msdn.com/psheill/archive/2006/02/01/522386.aspx . Here's another post with information on bissubscribe: http://blogs.vertigosoftware.com/teamsystem/archive/2006/07/03/Subscribing_to_Team_Foundation_Server_Events. ...Show All

  • Visual Studio Tools for Office VSTO SE2005 CustomTaskPane Samples...

    I have seen a couple of examples suggesting the following code, private void ThisAddIn_Startup(object sender, System.EventArgs e) { CustomTaskPane ctp = this.CustomTaskPanes.Add(new UserControl1(), "My Caption"); ctp.Visible = true; } but something weird is happening because my "this" object doesn't have a CustomTaskPanes property and I don't seem to have visibility of the CustomTaskPane class. I have added "using Microsoft.Office.Tools" to ThisAddIn.cs and I have read that I need to add a reference to Microsoft.Office.Tools.Common2007.dll, and this seems to fix the visibility to CustomTaskPane class but not the application object. Thanks in advance. ...Show All

  • Visual C# c# and mysql

    I want to pull and add data from a mysql table to a datagridview and allow the user to input data into the datagridview and have it send it to the database. Hi, Try www. mysql .com/articles/dot net / Charles ...Show All

  • Visual Studio 2008 (Pre-release) How to maintain data consistency?

    Our server application performs transactional table updates to maintain data consistency. Synchronization framework, however, enumerates inserts, updates and deletes in separate queries, so it is possible for server application to perform several updates inbetween, which leads to inconsistent data on the client (to simulate this you can insert a delay into SyncProgress event handler). Is there a way to command framework to lock tables during synchronization Good News! SQL Server 2005 SP2, shipped yesterday, has a simple fix for the consistency issue. Check out all the details here . Thanks! ...Show All

  • SQL Server Pivot table in Excel

    Hi Please help me to create pivot table and chart. this is the pivot table Count of Case ID Group Week Opened A B C D E F G H I J K L Grand Total 01/01 0 0 0 1 6 0 10 2 1 2 3 0 25 01/08 1 0 2 3 8 3 11 3 3 1 6 0 41 01/15 0 0 0 1 5 0 9 0 1 1 13 0 30 01/22 0 0 0 1 12 1 13 3 4 4 13 0 51 01/29 0 0 1 0 18 2 8 5 3 2 36 0 75 ...Show All

  • Visual Studio Solution Events does not trigger properly

    Hi, I tried to capture 'solution open' event and the 'solution before close' event using the Applition Object Model. It did not work when I first connect the Add-in and then open the solution, but it works fine when I first open the solution and then connect the Add-In. I went through the Connect.cs but I could not find any reason for this. Any idea why is this happening Best regards, Imesh Hi Carlos, Thank you very much for your reply. I saw that article you said before but I didn't thought it will affect this scenario since it worked perfectly when I first open the solution (before connecting the add-in). Anyway thanks again! I will try your solution. Best regards, Imesh ...Show All

  • Visual Studio 2008 (Pre-release) WCF Performance: ASP.NET Client

    I'm trying to compare performance of WCF services (recent release) with ASMX webservices in the scenario when service is called from ASPX page, under load (hundreds of concurrent users). Here is the client code in aspx.cs: MyServiceCleint proxy = new MyServiceClient(); proxy.MyTestMethod(); proxy.Close(); MyTestMethod() here doesn't really do anything, just a stub that returns an empty string; WCF security is disabled - so there should be no extra overhead. WCF service is hosted in IIS. It seems like WCF service performs much worse than similar ASMX service - WCF is more than hundred times slower ( !). I have tried different modes/settings such as ConcurrencyMode, InstanceContextMode and Throttling as described here: http:/ ...Show All

  • Visual Studio 2008 (Pre-release) Rendered Event ( not OnRender() )

    Can we get an OnRendered Event. That is something to tell us that the rendering of an object is finished Here is the case I am running into. We have to create bitmaps of many layouts where each layout consistes of a number of WPF objects that have animations associated with them. To create a bitmaps of the final state of a layout, we load the objects onto the layout and then seek or skip to the end of all of the animations. Then we can snapshot the layout. The problem is that at least for video animations, we have no idea when the surface is in a state to be snapshotted. If we attch a Completed event and do a begin and a skiptofill on an animation, when that completed event is called we cannot snapshot the layout. It is not done or m ...Show All

  • Visual C++ Read access violation when buffer bigger than 2048

    Hello, I'm an old mainframe assembler programmer and I'm trying to teach myself C++. I've bungled through writing a program to copy a file (just to get familiar with I/O. The program works fine when variable BuffSiz is 2048 or smaller. If it's bigger, I can't even start debugging. The error is: Unhandled exception at 0x004012af in Compression.exe: 0xC0000005: Access violation reading location 0x00371000. I am using VS2005 on XP SP2 with the latest SDK. This is a Win32 Console App. This is my first program so please ignore (and advise of) the many shortcomings. Also - how do I get the code to post here as it is formatted. Also - I see a couple of light bulbs. They should be replaced with brackets containing the value of "i ...Show All

  • Visual C++ detecting ctrl+s

    Am doing windows sdk programming. am creating a notepad. Which msg(WM_KEYDOWN or WM_CHAR) is generated when i press (ctrl+s) and how do i detect it Sam Hobbs wrote: the answer is: Both! Both WM_KEYDOWN and WM_CHAR messages are generated for Ctrl-S. Just apparently (as a final effect), because Sam Hobbs wrote: there is good documentation about the keyboard and messages and such in the SDK documentation which states that MSDN wrote: The WM_CHAR message is posted to the window with the keyboard focus when a WM_KEYDOWN message is translated by the TranslateMessage function. ...Show All

  • Visual Studio 2008 (Pre-release) How Do I Get Svcutil to Generate Correct Endpoint Addresses in my Client?

    So I'm trying to get svcutil to generate the correct endpoint addresses in my client. It's possible for me to do so by standing up the service and then generating the proxy from the URL that the service is running at. What I would like to do, however, is to generate the client without ever running the service. Currently I am doing this by running svcutil in two passes: first I get the metadata from the assembly, then I generate the proxy from the metadata created in the first pass. Unfortunately, the endpoint information contained in the config associated with my assembly seems to not make it into the client (of course, I can't think of how it'd pick the right endpoint if I had multiple anyway...). So I guess my question is: is there any w ...Show All

  • .NET Development SQLDataReader.GetOrdinal() fails rarely with IndexOutOfRange

    Hi everybody, We were developed some Web-Services that run against SQL Server 2000 with SQLDataReader that executing Stored Procedures in the DB. Most of time (95%) everything is running well, but sometimes (when exactly, we don't know) the same WebService that worked 200 times, fail. The code is simple:         public string myFunction( int ANumber )         {             string strRetVal = null ;             SqlDataReader myReader = null ;             SqlConnection MyConn = null ;             ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Strange shader optimization bug.

    I have a shader that gives me incorrect output when I compile the shader with optimizations but when I use the flag D3DXSHADER_SKIPOPTIMIZATION the shader operates as expected. The shader is extremely simple and I can't work out what could possibly going wrong. Are there any known issues with shader optimization This is using the August 2006 DirectX SDK but also happens with previous SDKs.. MiggyE, I recently had a similar problem with a very simple shader. I turned off the vertex shader optimizations, and then the vertex shader worked correctly. I've recently had problems getting the shader to do anything with the alpha channel - if I set the pixel shader color RGBA alpha channel output to 0.0, ...Show All

  • SQL Server Distinct and grouping problem

    can someone look at the statement for me, it's not giving me distinct names, SELECT DISTINCT TOP 10 leaderboard.name, Last(leaderboard.date_cr) AS date_cr, Last(leaderboard.handicap) AS handicap, Max(leaderboard.total) AS total, Last(leaderboard.cpsa) AS cpsa, Last(leaderboard.rbss) AS rbss, Max(leaderboard.visible) AS visible, Last(leaderboard.score) AS score FROM leaderboard WHERE (((leaderboard.visible)=True) AND ((leaderboard.rbss)=True)) GROUP BY leaderboard.name, leaderboard.total ORDER BY Max(leaderboard.total) DESC , Last(leaderboard.date_cr); if I take the second grouping off, I get distinct names, but the information isn't correct. i.e. the date, handicap, score, is from different record than the total field. any help mu ...Show All

  • Windows Live Developer Forums Capture nav control event?

    Is it possible to capture the zoom level when a user changes the zoom level on the nav control I can do this when the user clicks the map but not when they change the zoom with the nav control. Thanks Danny I just posted the code here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1099337&SiteID=1 John. ...Show All

©2008 Software Development Network