Carlos Figueroa's Q&A profile
Visual Studio VisualStudio .NET 2003 - Setup - Won't Install Prerequesites
Upon insertion of CD1 of VisualStudio .NET 2003 I am asked to install the Prerequisites first. When I click the link I am greeted with the following error message: Setup has detected that another program requires the computer to reboot. You must reboot the computer before installing the VisualStudio .NET 2003 Prerequisites. Once the system reboots, you need to restart setup. Click OK to reboot. Click Cancel to exit setup and install later. ...Show All
Visual Basic Call Sub Main in a class. How to use this class?
Hello, I came across the following sample in Visual Studio Help: You can see the comment, ' Provides an entry point into the application. ' and a Public Shared Main procedure is used. What is the reason it is done this way How this class can be used Your help is much appreciated. ...Show All
Visual C++ C6.0->VS2005 -user messsages- ON_MESSAGE error C2440: 'static_cast'
Help Needed: I'm moving a program from C6.0 to Visual Studio 2005 C++. It's an MFC program. The problem I am having is with ON_MESSAGE handling user messages. The compiler is not happy with the function prototype for the message handler. I've made the needed changes to the code to satisfy the stronger type checking of this compliler, but don't understand the 'static_cast' comment. I've tried making the function ' ...Show All
Visual C++ Class designer
Hey, Do you know of the class designer for c++ is included in the final version of Visual C++ 2005 Or will it come with an update, or with a next version of VS Martin Richter wrote: AFAIK the class designer ist not and will not be part of 2005! I am not sure but we can expect it in Orcas. Thats a pity. Do you know of there are other programs to design classes for c++ (no too expensive) ...Show All
Software Development for Windows Vista Best Approach for potential scenarios in a Custom Persistence Service
Hi, I'm developing a "Custom Persistence Service" to handle two scenarios that could come up in a WebFarm. Issue 1 : I have a "Workflow Runtime" hosted in a WebService it is making use of a custom persistence service that inherits from the SQLPersistence Service . Note:I have added a extra field to the SQLPersistenceTable 'InstanceState' called "version" which is of timestamp datatype,This field is used to maintain version info. ...Show All
SQL Server Concatenation of integer data into text
I am a TSQL Newbie trying to concatenate two columns (DocumentNo & SequenceNo) that were created with a “smallint” data type constraint in a full-text search database. I want to end up with a column containing varchar data such as “5-2” where this row of data contains information about the 2nd document in a series for a person or group designated as 5. If I could change the data type for the columns to varchar I think I could que ...Show All
.NET Development how to get printing Document Completion Acknowledgement And Printing Failure Acknowledgement in C#
I am Printing document with using printdailog class. after prining document i need to update status of that prining Document. So I need printing document completion event or acknowledgemnt. At same time if paper gets jam in printer , then i need to update that document printing status. for that i required printing failure acknowledgemetnt. so please give me solution as earliest possible that through which event or acknowledgment i can ...Show All
SQL Server UniData to SQL?
Greetings MSDN Experts! I am working for a company that has a large payroll database in UniData format in a program called "ScorPEO." The information from that database needs to be imported into a newer payroll SQL database program called "Millennium." Any ideas on either how to go about doing it or if there are any companies that are good at UniData to SQL conversions (Note: If you really want to learn more about the ...Show All
Visual Studio Recursive checkout with a specific file name
Is there a way using the VSS command line to recursively checkout a set files by file name rather than by project name Specifically, I'd like to checkout all files called "AssemblyInfo.cs", across all subprojects. But I haven't been able to find the magic incantation to do it. The recursive checkout options seems to only work for an entire project. Rats, I just realized that this is the Visual Studio/ ...Show All
Visual Studio Team System How to respond to work item control events
Hi, How can I listen to events fired by controls within a work item For example if a button within a work item is clicked then how can I capture the click event and then fire some of my own custom code. Do I have to subscribe to event notifications Any response would be much appreciated. Thanks. Is this task not possible I'm hoping someone must know the answer. I would be very grateful for a response. ...Show All
Visual Studio 2008 (Pre-release) extension properties
When the first Linq preview was released, there was talk of allowing extension properties along with extension methods. At the time, I couldnt see a good reason for having them, but having read "First-class relationships in an object-oriented language" I can now absolutely see a use for them. At least, a very nice syntactic sugar type of use. I know the details on the next Linq release have been short on the ground, but would some Linq ...Show All
Visual Studio LogonInfo, linked parameters, different databases, subreports, Oh My
I'm having a bear of a time getting reports with subreports to function correctly. I have followed all of the directions for logonInfo updates. The original report running under v9 only has to have the first four parameters filled, from there 9 other linked parameters are supposed to be filled. I started with code that we have in production (v9). This code ran fine when running against the server that the report was designed against. But when co ...Show All
Visual C# Buttons Backcolor in C# 2.0
I recently started using C# 2.0 and put a button on a form, left the flatstyle as standard, then changed the backcolor. The button now has a square with the color I chose over the top of the button and the outline of the button still showing the standard style. Is there anyway to change the backcolor of the button in standard flatstyle without having a big colored square over the top of it Thanks in advanced Shane ...Show All
Visual C# How I can add button efects?
How I can make a button to change it's background image when the mouse is over it or on click hi, add image to your project resources and use something like this private void button1_Click( object sender, EventArgs e) { button1.BackgroundImage = null ; } private void button1_MouseHover( object sender, EventArgs e) { button1.BackgroundImage = global ::WindowsApplication1.P ...Show All
Windows Forms To set X & Y Cordinate Of Control Inside Datagridview
Hi I want to display a control(ListView) inside the datagrid view So the problem I encounter r: 1. How to get the Top & Left of the cell underneath I want to display that List View 2. If I add that List View with me.datagridview1.controls.add(Lisview) Listview.setBounds(hti.ColumnX,Hti.RowY,100,100) But this is also not suceeded Properly Then the control at the last or last to last row Cuts As the ListView ...Show All
