Pintag's Q&A profile
Visual C++ __invalid_parameter_noinfo is resolved by LIBCMT.LIB but not LIBCMTD.LIB
Hi I'm having to define _SECURE_SCL=0 when compiling debug builds of my C++ applications which are built using the /MTd switch, otherwise the linker cannot resolve reference __invalid_parameter_noinfo. When the release build is generated using the /MT switch, there are no problems, since this reference is resolved by LIBCMT.LIB. I've used DUMPBIN to try to find __invalid_parameter_noinfo in all the standard installed libraries, but it ...Show All
Windows Forms Windows Form Size Problem!
hi, guys, I have a small problem, but don't know how to fix it. I have a windows form, and the size is 916*600, and I want it always keeps it in this size. So I set both MaxSize and MinSize to this value. It is displayed perfectly in 1024*768, but in 800*600, when it comes up, the size is 800*600, not 916*600. Is this because the max screen size is 800 in 800*600 mode I tried to call this.Size = new Size(912, 600) in FormLoad(), but it doe ...Show All
Visual C# Solution, Not Answer
Is it a flaw on C# Or, by design class A{ virtual string foo(){return "A";} } class B:A{ override string foo(){return "B";} } class C:B{ override string foo(){return base . base .foo();}// impossible } class D:B{ override string foo(){return ((A)this) .foo();}//impossible } class E:B{ override string foo(){return this. A:: foo();}//impossible } There are some times when I want to call methods of grandparent class... The creator of C# ...Show All
SQL Server Queues and Filegroups
Hi We can create a queue on a filegroup for performance reasons however what about the sys.transmission_queue which could have messages backing up when the target is down. What are your thoughts. Cheers Currently there is no way to change the filegroup of the sys.transmission_queue. Traditionaly, all system tables are allocated on the primary filegroup. The sys.transmission_queue is a system table, the database cannot function ...Show All
Visual Studio Team System Migrating description part of History fields in WorkItems from Beta2 to Beta3 refresh
Hi there, We were using our bug server with VSTS beta2, in which for our customized Bug form we had removed Description field and were using the Description part of History field as description, so that to see history user does not need to go to different tab. But now to migate these bug from Beta2 server to Beta3 server , 'Im not able to get history have the descripti ...Show All
Windows Forms Dock Repositioning
I was wondering if I had a control docked on to, say, the left side of the form and another control docked to the right side of the form. now if i want the user to be able to switch the position of the controls with each&nbs ...Show All
Visual Studio Express Editions Access modifier confusion!
I'm new to C#.NET and my question may show that! I have a form which I designed visually prior to run-time and it is the main form of the application. I have a simple progress bar on it. From this form I create an instance (call it object X) of another class, and I want this class to show it's progress by updating the progress bar on the main form. How can I reference the progress bar from my object X so that I can update the progress O ...Show All
Visual Studio Team System Localize FxCop Messages
Hi, I need FxCop Messages be displayed in Spanish. How Can I localize these messages Carlos Figueroa Microsoft MVP ASP/ASP.NET Hi David, FxCop Messages... Althougth English is a universal language, I think people who are going to receive the reports like to read in his native language Is it possible Carlos Figueroa Microsoft MVP ASP/ASP.NET ...Show All
Visual Studio Team System How can I run a perfomance test capturing the time taken to an open a document from the application
Our web application enables the opening of a PDF file in an inline frame. Is it possible to measure the performance of when the document open request is made and when it is completed. Running a number of tests always returns the same results which I assume is just the start of the request as the time does not vary in anyway even though it can take a long time for the PDF to open. Josh I believe the responses are correct. I am not sure ...Show All
Visual FoxPro RSA Public/Private Key Encryption in VFP 9.0
Hi, I need to be able to decrypt data pulled from a MySQL table encrypted with RSA public/private key encryption within a FoxPro application. I am currently using the FoxPro Foundation Class known as _cryptapi as a wrapper to the CryptoAPI interface. The problem I'm having is that I can't seem to figure out how to decrypt a RSA encrypted string of data. I know that the _cryptapi class provided by Microsoft uses the Microsoft B ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Render final scene to Texture in Shader [FX Composer]
I want to save the final rendering of my shadowed scene to a texture (see below). I would like to know how to render to an 800x600 texture directly in the shader. I am using the FX Composer from NVIDIA. I would've thought I could simply add the following as the final pass of the shader: pass Bg < string Script = "RenderColorTarget0=TexFinal;" "RenderDepthStencilTarget=TexFinalDepthMap;" "RenderPort=;&quo ...Show All
SQL Server Visual Studio Command Prompt
Hi, I searched the forum and found nothing useful for my case. I also posted a reply to a partly (for me) answered question about the subject and got no reply. So I post my question again hoping for the best. I use the 2005 Express versions of Visual Basic, Visual Web Developer and SQL Server. As far as I know, those products are part of Visual Studio 2005 Express. But they are downloaded separately and therefore, there is no Visual Studio ...Show All
Visual Studio Team System "Assigned To" must be a valid account?
In the MSDN Documentation - Walkthrough: Make Advanced Customizations to a Work Item Type , in the Customize the Assigned To Field section, the following example is shown: <FIELD name="Assigned To" refname="System.AssignedTo" type="String" reportable="dimension"> <HELPTEXT>The person assigned to do the work</HELPTEXT> <ALLOWEDVALUES expanditems="true"> <LISTITEM valu ...Show All
SQL Server Halting Execution On Error
I have a simple SSIS package split into two parts; validation and processing. I want to be able to stop execution on any package errors (such as file not found, etc) using the OnError event handler. Is this at all possible No, if you want to stop execution when a task fails then make sure there are no OnCompletion or OnFailure precedence constraints leading from it. As long as you don't have any concurrent e ...Show All
Software Development for Windows Vista Problem with Windows Volume Shadow Copy - where can I report specific problem?
Hi, I'm on build 5308. I use vshadow, Microsoft Volume Shadow Copy client and look at the output below in bold. The paths have missing directory separator. In some instances, it has 2 directory separators like the one I listed below. VSHADOW.EXE 2.0 - Volume Shadow Copy sample client Copyright (C) 2004 Microsoft Corporation. All rights reserved. (Option: List writer metadata) (Gathering writer metadata...) (Waiting for the asynchrono ...Show All
