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

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

Insolence

Member List

nicpn
Amar13
Dude on base
BNLBob
gcaplan
Richard.C.Bower
Takrim Khan
k. bodily
Todd Reifsteck - MS
pjencyjoy
Dessus
WhoCaresTheName
MattO2
Mary S
Erling Paulsen
Dennis Quintela
SirTom
Brian Deacon
Felix A
fehays
Only Title

Insolence's Q&A profile

  • Visual Studio 2008 (Pre-release) The long term goal of Cider vs.XAML

    Is the long term goal of Cider to replace direct XAML editing Or is XAML too rich to be fully expressed by Cider Steve My understanding is that XAML (& WinFX) will be stable and in production when Vista ships - WinFX RTMs with Vista. Thus the XAML (and WPF applications) will be release quality. It is just the tool (Cider) that will be a pre-release. Hope this helps mark ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Installing DirectX SDK

    Hello.I am using Microsoft Visual Studio 2005.I downloaded the DirectX SDK from December and I have installed on my computer but I cannot build DirectX Aplication.Why I use VB. The 2nd question: "VC# is better for DirectX applications " You will need to give us more information than that. What are you trying to do (step by step) and what errors are you getting. C# and VB are just as good as each other for DirectX applications apart from 2 things: 1. There are far more samples and tutorials in C# than in VB - if you can read C# well this won't bother you 2. C# allows unsafe co ...Show All

  • .NET Development how to format xml string with an xsl stylesheet

    Hi, I have a string that is in an xml format <items><num>5</num><text>sometext</text></items> I want to transform that string somewhow using my xsl document listed below and attach it to the body of an email. I was trying to use the code below but the xmldocument load does not take a string. How can i go about accomplishing this. XmlDocument docXml = new XmlDocument(); docXml.Load(sb.ToString()); XslCompiledTransform docXsl = new XslCompiledTransform(); docXsl.Load("xslFormats.xsl"); Thanks! Alex I 'm not sure what you are trying to accompli ...Show All

  • Visual Basic "Failed to enable constraints. One or more rows contain values violating non-nu

    when i execute the getData.....this error come out...." Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints ." the enforceContraint alredy set to false...... can anyone help thanks I had this problem and created a new select query in the dataset designer and added the parent table in the query builder, creating an inner join. I named it something new ...getDataByInnerJoin and used it instead. It worked for me. ...Show All

  • Visual Studio /Setup and GetOrig 8.0 Exp not behaving as expected

    I'm trying to work with commands, making changes to the CTC file and then pressing F5 to launch the test IDE to see the changes. I've been using the walkthrough "Creating a Top Level Menu" as a guide. But any changes I make are not reflected. For example, I started by just trying to get the sample to run. It worked following the walkthrough. All seemed fine. Then I wanted to see how easy it was to make changes and see them reflected in the test IDE. So in the CTC file I changed "&My Test Menu" to "&My Menu", recompiled, and then pressed F5 to relaunch the test IDE. The top level menu still read "My Test Menu". So I ran devenv /r ...Show All

  • SQL Server rsReportServerDatabaseUnavailable

    I have to reinstall SQL Server cause a failure. Before I installed it, I create the reportserver database with the configuration tool and now I can't acces report server with this error rsReportServerDatabaseUnavailable. Login failed for user 'NT AUTHORITY\Servicio de red'. Any Ideas Thanks in advance Make sure sql server and sql server agent services are running. ...Show All

  • Windows Forms how can i save the text format to the database?

    i'm using richtextbox, If you want to save the text including the formatting you can retrieve it from the RichTextBox.Rtf property . ...Show All

  • .NET Development msxml6, xslt and preserving newlines

    Hello, after the upgrade from MSXML4 SP2 to MSXML6 a simple XSLT (performed in C++) does not preserve newlines anymore... I just changed the document instance creation (DOMDocument40 to DOMDocument60) and the #import (msxml4.dll to msxml6.dll). with MSXML4 SP2 my simple XSLT generated the output: alpha bravo charlie now the same code (with just the changes described above) generates: alphabravocharlie what has changed many thanks andrea This is the XML file: < xml version="1.0" encoding="utf-8" > <ArticleList> <Article> <Name> ...Show All

  • Windows Forms stupid bug

    visual studio just erased all my controls. some bug crept in to my code so the designer couldnt design the form. normally this results in the designer giving an error - but not this time.  it rather cleverly decided to erase all the design i had made, and of course, because this didnt actually come to light until i hit COMPILE this has now&nb ...Show All

  • Visual Studio Team System Team project creation failed

    After some day's of hard work I succeeded in installing Visual Studio 2005 Team Foundation. But when I want to create a new Team Project I an error message: Initialisation for plugins "Microsoft.Pcw.wss", "Microsoft.Pcw.currituck" failed. I have Team Foundation Servr and Client installed on the same machine, and I am always logged in as machine administrator. The site http://test-jb2dms7g05:8080/bisserver/EleadWebService.asmx is available, also the sites: http://localhost http://reports http://reportserver/reportservice.asmx Does anyone know what to do This is the project creation log file: 10.25.2005 09:10:19.671 | Module: ELeadServiceMe ...Show All

  • Windows Forms A Grid in which an etire row can dragged n dropped to another row position

    I am looking for a grid in which the entire row can go through a drag-n-drop operation so that its final position is where it is dropped. Does anyone know of such a windows grid  Thanks Sunil I want the same code clip in my project .  ...Show All

  • .NET Development Multi-threading with UdpClient

    Hi there, I am trying to implement a simple board grame which use UdpClient to play over a network. My problem is that the game requires all the network connection and traffic to be done in a separate thread. My approach is to use a main thread to do all the user interface and game logic and use another thread to do all the network related logic. However, I run into problem when I have to pass the status of the board from the main thread to the network thread and vice versa, since I don't know how to pass data from one thread to another thread. Because I don't have much experience with multi-threading application, I am not even sure my a ...Show All

  • Visual Studio VS 2005 Integration with MSBuild

    Let me ask the question and then provide some background... How much can we customize an initially VS 2005 generated .csproj msbuild project file without "breaking" the VS 2005 <-> MSBuild integration Background... Forgive me if this this overly general question has been answered elsewhere, but I didn't see anything.  I have just recently begun investigations related to migrating our existing NAnt build scripts to MSBuild for when we move to .NET 2.0.  In our current system, we ask developers to maintain the .csproj files and the nant build files.  However, only the nant build files are really important.  Our bu ...Show All

  • Visual C++ "Correct" Workerthread Termination

    Hello, I have used worker threads for a long while and yet always had and still have problems with the "correct" way such threads should be killed for premature termination. They may have files open, are in the process of allocating global memory or doing any number of other things. The closest I got to "correct" is to signal the worker thread through it's priority if it's services are not required anymore for termination prior to it's full execution. Except the code then starts to look messy with CheckForKill()s all over the worker thread code. What is the "best correct" method to do this and yes, I am aw ...Show All

  • Visual Studio Team System Problems found when install TFS on a AD domain controller

    I install TFS on a Windows 2003 Active Directory Domain Controller, using Single-Server depolyment mode. Everything seems ok during the installation, but after that, when I open the event log, some error appear found : Volume Shadow Copy services could not start, the error code is 0x8000FFFF. Does anyone encounter the same problem How to solve this Thanks! I see many people are having trouble installing Team System in a single machine. Even after installation, many cases it seems to fail during new project creation. I also had all possible errors found here in newsgroups. Here's a visual tour of the entire single machine setup process ...Show All

©2008 Software Development Network