mzKitty's Q&A profile
Visual C# How do I add annotations to an existing PDF file?
Hey howzit, I have been searching the net for ways to adding annotations (sticky notes) to PDF files programmatically, I have found one library on sourceforge.net called ITextSharp, but it creates a new PDF file (see code below) and then allows one to add annotations, I want to add annotations to an existing PDF file that is already filled with data and text. // step 1: creation of a document-object iTextSharp. ...Show All
Visual C# saveFileDialog
Hi, I need your help with that saveFile code that seams to compile but hit with an exception: private void saveAsToolStripMenuItem_Click( object sender, EventArgs e) { SaveFileDialog saveFileDialog1 = new SaveFileDialog (); saveFileDialog1.Filter = "Text files (*.txt)|*.txt|All files (*.*)|*.*|RTF Files (*.rtf)|*.rtf" ; saveFileDialog1.FilterIndex = 3; saveFileDialog1.RestoreDirectory = true ; if (sa ...Show All
SQL Server How to skip records in script component
In DTS activex task, you can use skipinsert to skip a row, how to do that in script component BUT.... If the script component is doing a lot of work (e.g. Tokenising a single column of large strings), of which you only want to process some, then there are significant speed gains by directing the row within the script. If the table is quite small, this may not be a concern to you - but if you're using the script component as a workaround f ...Show All
SQL Server SSIS Package Configurations Stored in SQL Server Table
I have two SSIS projects each with different packages. I have setup the packages with configurations stored in a SQL Server table in MSDB. When I create the configuration on the second project it overwrites all of the first projects configurations. Is there a way to to get two different project configurations stored in the same SQL Server table Any help would be greatly appreciated. Thanks! I'm just guessing: Wh ...Show All
Visual Studio Express Editions Visual C# Express Beta 2 and MYSQL?
Is it possible to use MySQL as a database for C# express Thank you - that was the answer I was looking for. Do you have a sample of this code handy somewhere ...Show All
Visual C++ compilation problem when using nmake
I'm trying to compile a C++ application using nmake and getting this error: c:\program files\microsoft sdk\include\windows.h(157) : fatal error C1083: Canno t open include file: 'excpt.h': No such file or directory NMAKE : fatal error U1077: 'cl.exe' : return code '0x2' Stop. When I try to build from VC++ IDE, everything is fine though. Even I can build using nmake from another computer using the same set of files. What do I need to do to get ...Show All
Visual C++ How to list all related functions
Hi, guys, Do you have any ideas to list al related functions when I run some software I got the source code and was told that there are no documents about it. I was asked to do reverse engineering to figure out the logic diagram, to write down full documents for the source code: the design idea, the logic, the executive order and so on. I used magicdraw to get the class diagram. But there is still a long distance to the final goal. ...Show All
SQL Server Call Stored procedure for last 4 months then combine into final result set row
I want to call my stored proc for that last 4 months. Basically all I need to do is pass each month's first date and it will do the rest. Should I shove this into a UDF first I'm not sure if I can do that. The struction is here behind my stored proc: http: / / www. webfound. net/ storedproc. txt EXEC IT_Get_Dashboard_Monthly '2006-05-03 12:03:43.910' <-- change to UDF or leave it Then how can I loop and change each month to cover the las ...Show All
Visual Studio Express Editions Add Data Source Wizard Functionality
I have recently installed Microsoft's Visual Basic.Net Express edition and when I go to the Add Data Sources it only lists SQL Server and Access DB. I am using NCR Teradata as my connection and it would be very helpful to have the wizard pick up my ODBC's. Any help would be appreciated. Thank You, The express system can only connect to the built in local database systems using the wizards, to connect to them you ...Show All
.NET Development Word 2003 Addin in VS2005 - deployment
Hello everybody, I'm currently developing addin for Word 2003 in VS2005 (VB.NET) Everything works fine, addin works great (actually only as designed) but I have hudge problems with deployment. It works on my production box, but When I compile the setup project (bundled in by default) it doesnt work on other boxes. There is only one box it actually worked - box with office 2003 and VS2005. On other boxes office 2003 stats but doesnt run the ...Show All
Visual Studio Tools for Office List to install to develop office application using .Net...
Hi everybody, Can anyone tell me exactly what need to install to be able to develop office applications with .Net like Excel Please provide exact name of package. Thanks. Installed in pc: VS 2002 Professional Edition (.Net Framework 1.0) Visual C# 2005 Express Edition (.Net Framework 2.0) MS Office 2000 Professional den2005 ...Show All
Visual Basic Visual Basic 2003 Code in Framework 2.0
I need to upgrade my PCs from the current Framework 1.1 to the new Framework 2.0. Will Visual Basic 2003 code currently running in the Framework 1.1 run in the Framework 2.0 without any recompiling or upgrading Thanks for your help, Marc Yes, you can run different versions of the Framework side-by-side. However, the CLR will attempt to load a different (newer) version of the Framework (if present) whe ...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 Studio Path Argument To Load Crystal Report Using Visual Basic That Allows Me To Move Folder Without Update Of Load Message Argument
How do I do a Load with the default CrystalReport1.rpt file location that VB gives me This file is created by Visual Basic, but I have to specify it in the Load message to view the report. The key to the question is I do not want to use the full path to the file. I want to be able to move the entire folder around and I do not want to have to change the argument to the Load when I move the folder each time.&nbs ...Show All
Windows Forms Not understanding the printing tutorials
I must be missing something, for the <a href="http://samples.gotdotnet.com/quickstart/winforms/doc/WinFormsPrinting.aspx">Printing tutorials</a> are totally confusing me on how to properly constructor a PrintDocument and have it printed. The first example just instantiates a PrintD ...Show All
