PinkNation's Q&A profile
Visual C# Visual Studio 2005 Express Edition: Continue execution after unhandled exception
Thanks for the time. Having a Delphi backgound I am used to raising exceptions for almost anything that could go wrong. I'd catch the exception, add a user friendly message and raise another exception. This is more a VS Editor related question than exception handling itself. The thing is whenever I throw a new exception outside of a try...catch block a "Exception was unhandled" dialog box appears and the editor will not continue execut ...Show All
Visual Basic Parameters in TableAdapters
In a project done to test some feautures in VB 2005 we create some datasource and a datagridview in order to show data from a simple table using parameters. Dataset is: Comprobantes, Table is tb_datos and datagridview is comprobantesDataGridView. The code to fill the table adapter is: Me .comprobantesTableAdapter1.FillTemp( Me .Comprobantes.tb_datos, 2005, 1, 8888) Me .comprobantesDataGridView.DataSource = Me .Comprobantes.tb_dat ...Show All
Smart Device Development How to use mmx in eVC4
I use eVC4 with the new intel compiler now i want to know how i can use the mmx registers and the mmx operators... The compiler don't know the registers or the operators I'm using. I read sometimes something about the keyword __m64 but this don't work, this is an unknown directive. Does anyone know which keyword or directive I have to use ! Hi , This forum is primarily monitored by Visual studio for devices t ...Show All
Windows Forms Results do not display in List Box
I am using Visual C#.Net version 2003. A Form is created with a List Box, List View and a button to populate the lists. Clicking the button should produce the output in both lists. After clicking the button the text does not display in the List Box but will display in List View. This works fine on PCs that Visual Studio.Net was installed prior to XP SP2 - it displays in both lists. On PCs where Visual Studi ...Show All
SQL Server Importance of the New SQL Server Windows Groups
Those of you who have installed SQL Server 2005 may have noticed that the installation creates several new Windows groups on the server. Do not underestimate the importance of these groups. I had been unable to configure Transactional Replication. Everything worked fine until I tried to start the Distribution Agent. The agent started just fine, but it reported the following error: Date 10/19/2005 08:29:50 AM Log ...Show All
Visual C# IEnumerable<T> problem
Can someone, for the life of me, explain why this code won't compile with CS0305 as the compiler error Thanks very much, -Trey ---------------------------- using System; using System.Collections.Generic; public class MyContainer<T> : IEnumerable<T> { public void Add( T item ) { impl.Add( item ); } public void Add<R>( MyContainer<R> otherContainer ) { foreach( item ...Show All
Windows Forms Send value from one form to another
Hello , I have a Windows App built with .NET, on the main form I have a tab, on the tab I have a textbox, beside the text box there is a button when pressed a select directory small window appears , this Select directory is used& ...Show All
.NET Development Problem with PadLeft() of the String.
Hi all, i have make a program to printing out some text from printDocument controls. i wanted to print the amount right align, just shown in below. ItemNo. Item Name Quantity Rate Amount ------------------------------------------------------------------------------------------ 1. abc 5 10.00 50.00 2. xyz 2 100.00 200.00 --------------------- ...Show All
Windows Forms Binding a combo box to a data set
Hi, I am trying to just list some columns in my dataset by binding it to a combo box in windows form application. I can easily do that in a web application. But really doesn't seem to work as a windows form application. Label1 an ...Show All
SQL Server High CPU Usage SSIS Package
Anyone aware of anything I can look at to improve performance of my SSIS packages i basically have two master packages that call about 15 child package tasks each. All the package tasks are called sequentially and all they do is just load flat files into temporary tables and execute a simple stored proc. Each package tasks check to see if a file is there and if so it processes it else it just ends. The packages are scheduled to run every minute ...Show All
.NET Development MFC code with Visual Studio 7
Hi, We are migrating MFC application from Visual Studio 6.0 to Visual Studio 7.0. We do not have any mangaed code. Just we are compiling the c++/MFC code with .net compiler by using Visual Studio.net 2003. Do we need .net framework to run the applciation. If so what is the need for .net framework, though we are not using any managed code!. Thanks, Ram. No, you don't need the .NET Framework. It c ...Show All
Visual C++ Difference between external dependency and dependencies
Hi, I am new to VC ++. I am a bit confused with the build process and have a few questions. 1. What does it mean to put a file in the external dependency folder within a project 2. What does it mean to mark a project dependency in the Project > Dependencies tab 3. What does it mean to actually create a new folder within say project1 and copy some files from project2 into this folder within project1 because some files in project1 requi ...Show All
SQL Server Install Visual Studio 2005 Rights Issue
Hello- I am trying to install VS2005 Standard Edition on W2k Sp4. This install fails on the first part when MDAC 2.8 Sp1 tries to install. I am logged on as ADMINISTRATOR with admin rights. I tried to install MDAC 2.8 sp1 alone with the same result. Can you help Vincent DeLuca vdeluca7@centurytel.net MDAC is a SQL component. Moving to the SQL team. Hopefully someone there can help. ...Show All
Visual C++ MSVCR80D.DLL Not Found Problem
Hi, I've just returned to programming, downloadd the April 2005 DirectX SDK and found my Visual C++ 6 STD no longer works. I have downloaded Visual Studio 2005 Express and then downloaded the x86 version of the Microsoft Platform SDK For Windows Server 2003 SP1. My computer is updated daily with all the latest downloads available for my Windows XP Home Edition which I believe is using SP2. I followed the setup as described adding the direc ...Show All
SQL Server Data insertion
Hello, My project is to update a price table with a text file. But sometimes, there are new refs in text file that are not in my ref table. How can i check it and automate the insertion of those new refs Thanks a lot The LOOKUP component can tell you what rows in the pipeline are not in the lookup table by setting the component to redirect all rows not found in the target to the error output. There's an explanation of this ...Show All
