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

Software Development Network >> Peter House's Q&A profile

Peter House

Member List

aosman
gabit7
Doc_Brown AKA Neil
zkent
sax
ayeli
helpstring
Shiv Kumar
Nezos
c70070540
Brett W
jrc00c5
Motley
nikhil_dharap
Matt Slat
Eddie P
SQLDude
SolomonDev
bernardoh
SPotam
Only Title

Peter House's Q&A profile

  • Visual Studio 2008 (Pre-release) Looking for a XAML sample that uses UniformGrid

    Does anyone have any sample code that uses a UniformGrid element in XAML For example, a UniformGrid with 2 rows and 2 columns with each cell holding a control, eg a button. Thanks. Pete Blois has an excellent example of using it for Tiling elements in his Minesweeper game (I think it has not been ported to the Jan CTP of WPF, but it should help): http://blois.us/blog/2005_09_01_houseomirrors_archive.html Also, you could use Expression Interactive Designer to play with the it and view the markup. Thanks, Unni ...Show All

  • Windows Forms Layout manager

    Hi everyone, i have menu in a windows form that which menu item open its form. I want that a new form stays in front of the old one, example, i click on the Add menuItem and the Add form is displayed, then i click on the removeItem and the Add form disapears and the Remove form is displayed, very common. In java is used card layout for this. How could i do that in .NET Thanks and sorry my english. ...Show All

  • Windows Forms Dynamicly add controls to a form from a thread

    I have a thread that runs in a loop and needs to cause some user controls to display in a winform periodically. The user controls are created inside the thread and passed to the winform to be added to the Controls collection and shown. Well that was the plan. Its not working at all and Im sure it has to do with the thread. I thought that setting Form. CheckForIllegalCrossThreadCalls = true would help, but it does not. I've tried checking for Me.InvokeNeeded (on the form) and that always returns false. I've tried using events to get it done also, and nothing has succeeded. It seems to only work when the instance of the user control is ...Show All

  • Windows Forms No-Touch Deployment - Who is using it?

    Hi all, My company is writing an enterprise app and we are strongly considering no-touch forms for the workhorse parts of it.  I am curious about how prevelent the no-touch approach is becoming. Are people seeing a lot of interest in no-touch   Are a lot of people actually developing for no-touch   Has anyone started deploying no-touch forms   If so,&n ...Show All

  • Visual Studio Team System Build failures after upgrade to RTM trial

    Hi, We just moved from RC to RTM trial. In doing so, we did not go through upgrade process but rather made a clean install of trial edition which will update with product key when our vendor gets them to us. Anyhow, I've added my source back to a new team project and created my team build and updated TFSBuild.proj to the one I had working in RC. I also created a simple test build for the same project via team build wizard. The simple build works fine meaning it gets source, builds binaries, and drops on unc. The build that I migrated gets source fine but then hangs in MsBuild.exe. If I kill the msbuild.exe on server then the team build will ...Show All

  • Visual Studio Team System Protocol violation - can I change how sensible the test shall be to protocol errors?

    I get this error when running a test on a web page that I have no possibility to change: RequestFailed: The server committed a protocol violation. Section=ResponseHeader Detail=CR must be followed by LF Is it possible to configure how the test shall handle this so the test will not fail Sten, this sounds like a bug so I'm going to need some more info to track it down.  What's the request like that's causing this error   Are you using non-ASCII characters in a custom header value or in the URL Josh ...Show All

  • Software Development for Windows Vista BPEL and XPDL

    "BPEL is a standard which supports webservices and system to system applications workflow. For more of a human workflow, XPDL promoted by WFMC is the best" "BPMN is for modelling and supports both XPDL and BPEL. Simple BPEL based modelling tools for BPMS systems lacks a lot compared to BPMN based systems" Please provide me with your comments on the above statements. Also that, what standards are been followed in WF. Regards Look at the comment from Anna on the following post http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=91420&SiteID=1 for information on WF rela ...Show All

  • .NET Development popup window not working name space error

    I have been using this codes on vs.net 2003.  now I have been trying this codes on vs.net 2005(asp.net)  this row takes to me error ( System.Web.UI.Page.RegisterClientScriptBlock( "Popup" , PopupScript) ) Dim PopupScript As String PopupScript = "<script language=javascript>window.open('rapor.aspx', '', 'toolbar=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,location=no')</script>" System.Web.UI.Page.RegisterClientScriptBlock( "Popup" , PopupScript) I solved this proplem. I used this code ME .RegisterClientScriptBlock( "Popup" , PopupScript)   ...Show All

  • Windows Forms How to do Drag & Drop into TreeView's TreeNode ?

    I able to do Drag & Drop into a control, like textbox, TreeView, ... But I unable to do Drag & Drop into a control's item like TreeView's TreeNode There is no such event called 'NodeDragEnter' nor 'NodeDragDrop', so how to do if I want to implements Drag & Drop into the Treenode You need to do some hit testing to figure out what node you are dragging over. Nodes do not have specific mouse events. -mark Program Manager Microsoft This post is provided "as-is" ...Show All

  • SQL Server Reason for Limitation and Work around for referencing Table Group fields in Footer!

    I'm gonna try this again, Microsoft, Please help! There has to be a solution for this!!!!  How can I get around the limitation in SSRS 2005 of being able to SUM on a Table's Group field from my group footer expression! Keep in mind, I'm talking about a table here, not the global Report Footer, a Table object's footer! It's driving me nuts My table footer GrossGoal_gt   's field expression (non of these work and throw the error below): =SUM(Fields!GrossGoal1.Value, "CustomerNumber_Grp" ) neither does this: =RunningValue(ReportItems!ProjFee_AZ.Value, Sum , "Custo ...Show All

  • Visual Studio VSS 6.0d doesn't get resx files

    We are using VSS 6.0d integrated with VS 2005.  When we do a GET ALL (RECURSIVE) in the VS IDE we are not getting the latest resx files.  If we open VSS and to a GET in VSS, we do get the resx files.  We use form inheritance heavily.  Has anyone else seen this or have suggestions Hi,  Thanks for reporting this issue.  I was able to repro your problem with the following steps with both VSS6.0d and VSS2005 providers.  The workaround is to do the Get operation at the project node instead of the file node. Repro steps: User1: Create a VB Windows Application project.  At this point ...Show All

  • Visual Studio Express Editions How do I view Console.Writeline?

      I'm rather new to programming. I've read two VB Express books and everything that I could find concerning Console.Writeline, and yet I still cannot figure out how to view what I write to it. When I use Debug.Writeline, I can view what I write to it in the "Immediate" window. I guessed that I should be able to view Console.Writeline in the "Output" window. Is that correct I tried things like the example below, and nothing appeared in any of the windows that I looked at: ' System.Console.WriteLine Imports Microsoft.VisualBasic Imports System Public Class TipCalculator    Private Const tipRate As Doubl ...Show All

  • Windows Live Developer Forums FireFox bug in V3

    I tried my VE v3 app in FireFox and I got the following error: Error: [Exception... "'Msn.Drawing.Exception: Your Web browser does not support SVG or VML. Some graphics features may not function properly.' when calling method: [nsIOnReadystatechangeHandler::handleEvent]" nsresult: "0x8057001c (NS_ERROR_XPC_JS_THREW_JS_OBJECT)" location: "<unknown>" data: no] Any help is appreciated. I'm surprised to see that nobody has encountered this bug. (since nobody has replied to this message) Or, probably nobody from Microsoft is monitoring this forum!!!!!! ...Show All

  • Windows Live Developer Forums Activities Problems on 7.5

    Hi, This is my first time so if i do anything wrong, please point it out and i'll not do it again. Anyway, what the problems is, is that when i'm talking to my friends on MSN 7.5.0311 and try to start activities (whiteboard mainly) it, doesn't work, and in red  it says i cannot use it and i should download the latest version, WHICH i have (i think), and gives me a link to download it, which i have done about 2/3 times. I asked my friend, and togeter me and him couldn't figure it out. Please can you help me sort out the problem. Thanks EDIT!!!! Heres a link to show what the message is. http://img439.imageshack.us/img439/7733/picture18 ...Show All

  • SQL Server Handeling Parent-Child hierarchy in RS2005

    hello, I have a problem in RS2005: In my report I see all levels in one column. However they are shown in a way that I think that if I only could get it to toggle correctly it will work out fine... I would like my P/C dimensionto display just as it does when I use AS. Expanding top level (by pressing +), viewing next level down where I can "open" (by pressing +) next level and so on. Does anyone know how this is done or suggestions on how to solve  it This is the kind of display I would like: -A                    &nbs ...Show All

©2008 Software Development Network