Michael1956's Q&A profile
SQL Server errors while running ssis packages from the command prompt.
I have created ssis package. It has been successfully running at UI level. But when i am trying to execute it from the command prompt by using dtexec utility it is showing the following error messages. Error: 2005-12-23 17:01:57.67 Code: 0xC00470FE Source: Data Flow Task DTS.Pipeline Description: The product level is insufficient for component "Flat File Source" (1). End Error Error: 2005-12-23 17:01:57.67 Code: 0xC00470FE Source: Data Flow Task DTS.Pipeline Description: The product level is insufficient for component "Script Component" (9). End Error i have entered the command as follows. dtexec /f "c:\somefolder\package1.dtsx" Any point ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Cannot debug content pipeline
I am having problems trying to debug the content pipeline. Following advice in other posts, I put System.Diagnostics.Debugger.Launch(); in my processor code (in the Process method) to launch the CLR debugger. The just-in-time debugging window pops up, prompting me to start the CLR debugger. But when I do, I get an error message saying 'Unable to attach to the process'. I can't manually attach either the CLR debugger or Visual Studion 2003 (enterprise) to any managed process - like to Visual Studio Express or my game. It's going to be difficult to work with the content pipeline if I can't debug my code, so any suggestions would be greatly appreciated! Thanks, again, very grateful for the advice. This ...Show All
Visual C++ Trouble with TreeView Label Editing
Hi, I'm Dan. I'm fairly new to Win32 programming but have been doing it for several months now (independant, no classes/books/etc) and am starting to grasp it. I have been trying to, as a learning experience, create a game design program that would allow for easy PC game creation with little coding experience (similar to GameMaker if any are familiar). Anyway, I am currently trying to implement a TreeView to display resources that the game designer adds into the project (sprites, objects, etc). Before I begin delving into more critical details of the program, I am trying to first establish the overall environment. I have recently allowed the user to add resources (though they do nothing so far) and have put in context menus for the resourc ...Show All
Windows Forms Changing size property
How do I enable the changing of size of a control like combobox Thanks. regards Alu Sorry for the unclear statement. What I mean is that to change the size 'height' property of the combo box during design time. The box could be extend but not able to enlarge the height. Thanks. Regards Alu ...Show All
SQL Server Database conversion: SqlExpress to MySql v5
Working on trying to support mutliple backend db's against a custom VB6 app. Right now the db is SqlExpress. It's relatively uncomplicated and I just want to move table structures and data over. Using the MySql Migration tool, I am able to authenticate as SA to a server-based instance of SqlExpress, however, only the MS-supplied databases appear as available databases; my databases don't appear. Can't seem to authenticate at all to any local instance of the database, either. Anyone done any successful migrations to MySql through their migration tool Rick hi Rick, RDuke wrote: Yeah, I was actually trying that at the time, but it still wasn't recognizable using the MySql Administration tool. Gues ...Show All
SQL Server update statement
Newbie Question: Im trying to update a table column to a new value and I receive an error, here is my statement: USE PD51_Data; GO UPDATE CASENUMBERS SET CaseNumTypeID = 130 WHERE CaseNumTypeID = 101 AND CaseNumber BETWEEN 199999 AND 600001; GO I receive this error Msg 245, Level 16, State 1, Line 1 Conversion failed when converting the varchar value '9368----' to data type int. What did I forget Hi, is the CaseNumber of type non-integer Then you will have to provide the between conditions with single quotes. WHERE CaseNumTypeID = 101 AND CaseNumber BETWEEN '199999' AND '600001'; HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All
Visual C++ re help!
i have this error lnk 2019 how to fix it Don't you think that's kinda vague for us to help you What I can say is that you start from here, http://msdn2.microsoft.com/en-us/library/799kze2z.aspx . ...Show All
SQL Server Please post setup and installation questions in the Setup forum
This forum is intended for users who are new to SQL Server, and have basic usage questions. If you have setup or installation issues or questions, you should check out the Setup forum. Thanks Hi All I am upgrading my DBMS from SQl 2000 to SQL 2005 and gettting some problem.When I run the SQl server 2005 upgrade Analyzer, I am getting some warning as well as in the report. I am ok with the warning message but not with the error. The error is - "SQL Server 2000 Data Transformation Services","PreUpgrade","SQL Server 2000 Meta Data Services packages are not supported ","Existing Meta Data Services packages should be moved to SQL Server storage (in the msdb database) or to structured storage ...Show All
Visual Basic vb build
hello! i am making 2 vb projects. i compile (build) the first project and everything goes right. it even created folder on program file's shortcut. now when i compile (build) my 2nd project, it also uses the same program file folder name . where can i change this thanks Ah, I understand now. The "folder" used for the shortcut in the All Programs menu is taken from the publisher name assigned to the project (if any). You can get to this value by right-clicking on the project and choosing "Project Properties." When the property pages show up, click on the "Publish" tab. On the resulting page, click the "Options..." button. You should see a field called "Pub ...Show All
Visual Studio Express Editions Web Control
My apologies if this has been raised elsewhere. I'm just looking into VB Express 2005 and playing around with some of the features outlined in the tutorials. This is the first tool I've used using the .NET framework. I've put in a couple of buttons (back and forward) on a toolbar that i want to become enabled or disabled depending onm a couple of propertys in the Web browser control (eg MyBrowser.CanGoBack and MyBrowser.CanGoFoward. Very simple code (not exactly as below but does show the principal): If MyBrowser.CanGoForward then tbForwardButton.Enabled = True Else tbForwardButton.Enabled = False EndIf I've but this code in an event handler and it does fire as expected. My problem is that the CanGoForward property alw ...Show All
Visual C# Exception???
System.ObjectDisposedException: Cannot access a disposed object named "DataGridTextBox". Object name: "DataGridTextBox"......I am getting this exception and unfortunaltly i dont know why or how to catch the exception so i know what line of code is throwing this....any help on how i can get this error handeled In VS2003 go to Debug->Exceptions... Then go to "Common Language Runtime Exceptions->System->ObjectDisposedException" and set "When the exception is thrown" to "Break into the debugger" Moreover you can add your exception type by selecting the appropriate category and clicking "Add...". Just specify the full class name with namespace. ...Show All
Windows Forms How to implement Cut Copy Paste
Hi, I am using different controls in application like text box, numeric text box, list box, combo box and many others. There is a requirement to give cut, copy and paste for these. Do we have a common code or list of properties which needs to be used in each control for implementing cut, copy, paste I am using some htird party controls (infragistics), so it will be great if the solution takes care of those controls as well. Any help in this regard is appriciated. Thanks in advance. Regars, MSGuy use the Clipboard class to cut/copy/paste different varieties of data (audio/text/image): //copy: ClipBoard.SetText( text ) string theText = ClipBoard.GetText(); //gets the text ...Show All
.NET Development System.net.mail problem
Hi everyone, I have a little problem using the system.net.mail namespace implemented in the following code: Private Sub Envio_Correo( ByVal ruta As String ) 'Creando la instancia del mensaje Dim correo As new MailMessage correo.From = New MailAddress( "b98123839@usmp.edu.pe" ) correo.To.Add( "amonasiq@usmp.edu.pe" ) correo.Subject = "Archivo de Confirmacion de matricula" correo.Body = "Se adjunto archivo de confirmacion de matricula de su respectiva facultad" correo.IsBodyHtml = False 'correo.Attachments.Add(New Attachment(ruta)) correo.Priority = MailPriority.Normal 'Crando la instancia del SMTP cliente Dim smtp As New SmtpClient smtp.Host = "134.5. ...Show All
Visual Studio Tools for Office Updating the add-in without RE-install ..
hi All, i have developed An Outlook Addin for Office 2000,XP&2003 Using VS2005 and Shim Wizard 2.0 . It works fine in all the target machines . Now after i distribute the product i want to supply the users with the updated versions of the same product. i m not using VSTO for my project development . i m using the normal shared-addin project using the IDEextensibility2 . As a reason i cant use the Publish (clickOnce deployment ) directly . for that the steps are given in this link : http://www.codeproject.com/useritems/Outlook_Add-in.asp But i should be able to do the same with the project i ve made.. how do i do that ... i ve seen a few links which describes about ... Deploying the application with the MageUI.exe Graphical Tool htt ...Show All
Visual Studio Tools for Office .net application with an excel interface
Hi, I am converting an Excel spreadsheet used by stock traders to a .net application. I want them to give ability to set up new worksheets in the application and perform other Excel operations such as writing expressions to display new values based on values in other cells. Users basically like to calculate and display new ratios based on market values, I want to give them the ability to calculate and display whatever ratios or information they want from the core set of market information I provide them. Basically, what I am trying to achieve is to display an Excel sheet in my .net application, be able to populate and update the excel sheet from the values I get from variety of sources, such as database, events, and other files..The ...Show All
