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

Software Development Network >> Lorry Craig's Q&A profile

Lorry Craig

Member List

Harry Solsem
Janny
Khenat.Ram
RajDas
Vista Driver Developer
kleinma
Gurpreet Singh Sawhney
Rohit Tela
Sparklight
Kea
billqu
andrewsc
Ian Arhip
ARGroupIT
Rhapsody
Grumpy McNasty
Adriaan W
kanato
Sunil Virmani
HbH
Only Title

Lorry Craig's Q&A profile

  • SQL Server Search Stored Proc

    Does anyone know a way to seach through all databases on a SQL 2000 server looking for a particular stored proc by name Yes, please don't use undocumented stored procedures. You assume the risk of breaking your code or modifying behavior due to either changes made to the stored procedures or removal of such SPs. We have done such changes in SQL Server 2005 to some undocumented SPs that affected users. For this problem, you shouldn't rely on the database metadata for tracking your schema objects. You should use a source code control system with appropriate versioning to figure out which databases have what version of the schema, objects and so on. This is the best and safe method. ...Show All

  • Visual Studio Team System Change request

    Hi, I have some question, I want to know how can I manage my all change request in my Team System, I have to modify my Template or what you recommend, I want to have control in my change request because I have to apply on CMMI process, any idea about this   Thanks! This is what I would do if I were you. Download the Process Template Editor and install it on a client box. http://www.imaginets.com/Default.aspx tabid=133 Download the process CMMI process template from the process template manager. Edit the "Change Request" work items to suit your needs (using the new tool you just downloads) and export it to your custom process template. ...Show All

  • Visual C++ C# BackgroundWorker in C++

    Hello, I have a new C# application that we have develop in the last couple of weeks, and now we call it from a C++ application and run it in that solution. From that, it's works fine (with the \clr enabled). The problem that we've got, is that we use, in the C# app, a BackgroundWorker, which work fine in "local" mode (Alone, without C++). But when we run the same BGW with the app embedded in the C++ app, we've got a cross-thread exception. We try to figure where come the problems, we look the thread that runs, and there is the bug... In local mode, the BGW_doWork is running in a other thread, calling the ProccessChanged in the main thread(with the UI), that the good behavior, but when running embedded, the BGW_doWork is running ...Show All

  • Visual Studio Add a variable to a method using code model

    Hey, is there any way to add a variable in a method using codemodel or codefunction I am writing a addin and I can add variable to a class. Please show me any sample. No, it is not possible using the code model, as I said in the other post. You have to use an EditPoint and insert the new lines of code that way. The codemodel won't work inside methods. ...Show All

  • Visual C# Hit testing with foreach loop on Regions or GraphicsPath

    I have a code that looks like this on a MouseMove: foreach (myClass object in objectArray) { if (object.graphPath.IsVisible(e.Location) || object.graphPath.IsOutlineVisible(e.Location, myPen) { Cursor.Current = Cursors.Hand;} else { Cursor.Current = Cursors.Default;} } myClass contains a GraphicsPath member called 'graphPath', for which I want to hit test with the mouse. The problem is that only the last element in the 'objectArray' is detected, that is, the cursor changes to a Cursors.Hand only when it hovers above the last GraphicsPath element of the array, but not when it hovers above the earlier ones on the client screen. Is there something wrong with my code I have proven that the array contained valid objects wi ...Show All

  • Visual Studio 2008 (Pre-release) Problem with MSDTC or WS-AT

    Hello dears I have 6 connected computers without a domain. A, B, C, D,E, F. "A" has a "XSrvc" and all remaining has "YSrvc" and consumer of "XSrvc". "XSrvc" is with BasicHttpBindings and "YSrvc" with "wsHttpBindings". All Six computers have Xp wiht Sp2 and WS-AT has been configured with same configuration and same certificates. now let me tell you the scenario. When Terminal "B" wants to make a transaction with Terminal "C" it consumes service of "A". "A" creates a TransactionScope and calls the service at "C" and Then Service at "B". but it thrown exception "MSDTC is unable to unmarshal the transacti ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. newbie question: game.Run():

    i keep getting this as the exception detail Microsoft.Xna.Framework.NoSuitableGraphicsDeviceException was unhandled Message="The device creation parameters contain invalid configuration options." Source="Microsoft.Xna.Framework.Game" StackTrace: at Microsoft.Xna.Framework.GraphicsDeviceManager.CreateDevice(GraphicsDeviceInformation newInfo) at Microsoft.Xna.Framework.GraphicsDeviceManager.ChangeDevice(Boolean forceCreate) at Microsoft.Xna.Framework.GraphicsDeviceManager.Microsoft.Xna.Framework.IGraphicsDeviceManager.CreateDevice() at Microsoft.Xna.Framework.Game.Run() at Tutorial1_Windows.Program.Main(String[] args) in C:\Documents and Settings\Compaq_Owner\My Documents\Visual Studio 2005\Projects\T ...Show All

  • Visual Studio Express Editions C++ compiler

    Hi all, I'm a newbie to VC++. I have installed VC++2005 Express edition. Platform is WinXP. I want to write C/C++ programs . So can anyone please guide me in writing the programs . What are the initial settings I need to do How to compile To check whether all Libraries of C/C++ are included or not How to debug How and where to see the outputs Sorry, for the inconvenience. Please help me out. Thanks a Ton in Advance. Regards, Raghu Even after adding using namespace std; directive to the code it is unable to compile.It still gives error as: c:\documents and settings\raghu\my documents\visual studio 2005\projects\consoleapp\consoleapp\test.cpp(7) : error C2679: binary '>> ...Show All

  • SQL Server data conversion

    Hi! I would be grateful for some advice, when getting error. I have 4 Lookups and one Data Conversion, getting the follwing error. Product.articlenr is a 13 number+letter productnumber. [Lookup Demo [3882]] Warning: The Lookup transformation encountered duplicate reference key values when caching reference data. The Lookup transformation found duplicate key values when caching metadata in PreExecute. This error occurs in Full Cache mode only. Either remove the duplicate key values, or change the cache mode to PARTIAL or NO_CACHE. [Data Conversion [9467]] Error: Data conversion failed while converting column "articlenr" (8559) to column "Copy of Lookup Product.articlenr" (10059). The conversion returned status value 2 a ...Show All

  • Visual C++ Win32 Basic Windows Form documentation

    I have a background in managd C#/ActionScript and I'm looking into Win32 C++. I created a simple WindowsApplication and I'm pretty clueless about the code that's given when the application is created. Where can I find documentation as to what this code does, and how exactly its put together Thank you. But I do have a specific question: In: int WINAPI WinMain(/*args*/); What is the significance of WINAPI It can't be a return type... But it can't be the functions identifier. ...Show All

  • Visual Studio 2008 (Pre-release) Official Release Date

    Hi we are evaluating WPF to use in our product. Can u plz tell me when it will be releases officially If going to release with Windows vista then when vista will be available thanks regards WPF-specific questions are better suited for the WPF forum: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=119&SiteID=1 thanks chad ...Show All

  • Visual Studio 2008 (Pre-release) How to transfer known types information?

    Hi All, I have a WCF service (let's call it main service). Multiple instances of this service can work on different computers in a network. I have another WCF service (load balancer) which performs load balancing between main service's instances. All clients' requests come to load balancer and are redirected to main service's instances. Load balancer's interface mimics the interface of the main service. But main service(s) also expose dynamic list of serializable types as Known types. These types are visible for load balancer but I need to make them visible for it's clients too. So I need to add them as load balancer's known types. As I said, the list of types is dynamic, I don't know these types in advance. It looks like I ...Show All

  • Visual Studio Team System WebTest hangs on redirect.

    I have seen issue with my webtest being hung on redirect. Any idea why this is the case Any work around to the issue Thanks for your help in advance. Thanks, --Will When you the the test is hung, do you mean that the web test stays in the "In Progress" state and the VSMSTEST process continues to run How long does it stay in this state Thanks, Rick ...Show All

  • Visual Basic How do I hide a property

    I'm creating a Smart Client User Control (VB2005) that inherits from System.Windows.Forms.Button and when a user drags it on to a form I do not want the TEXT property to show up in the property window. What do I need to do Overriding the property with "Shadows" in VB . Net should do the trick...When you override, don't forget to mark the property 's browsable attribute as false.   http://vb-helper.com/howto_net_browsable_attribute.html ...Show All

  • .NET Development XML : Child Nodes not traversed : DEBUG MODE WORKS WHEN OBJECT IS EXAMINED

    I am using the following knowledge base article from microsoft. http: / / support. microsoft. com/ default. aspx scid= kb; en- us; Q317597 Works great fine from a document loaded used from their example I am building a document and then utilizing the same example code to populate a treeview. My issue is that the child nodes do not fully traverse all child nodes and shows the innertext instead of the text value. WHEN I RUN IN DEBUG MODE IT WORKS AS EXPECTED. TreeView Example In debug with a break point and evaluating the node. Client Case Lawyer -Smith Status -Pending Trial Case Lawyer -Miller Status -Resolved Running without debug mode Client <Case><Lawyer>Smith< ...Show All

©2008 Software Development Network