Perry_SSIS's Q&A profile
Visual Studio RC1 - Visual Studio Class Designer Package Issue
I've installed VS.NET 2005 RC1 on 2 machines. I've a project that was created with VS.NET 2005 Team Suite Beta2, including a class design file. On machine 1, I've no problems with Class Designer. On machine 2, whenever I start Visual Studio, I receive the following in a Yes / No Message Box titled 'Microsoft VIsual Studio': "Package Load Failure Package 'Visual Studio Class Designer Package' has failed to load properly ( GUID = {DD1683A7-5A4C-4234-81B3-A4CC91DBEAC9}. Please contact package vendor for assistance. Application restart is recommended, due to possible environment corruption. Would you like to disable ...Show All
Windows Forms File lock on running application
How do i prevent there from being a file lock on my .exe file when its running i read somewhere that compiling in release mode rather than debug would solve this, but it doesnt work for me... ...Show All
Visual Studio Team System tfsbuild delete working but report not changing
There's a cryptic title. Here's the situation: I created a couple of builds using Team Build and everything was correctly published. I used tfsbuild delete to delete these items because they were test items. The items were reported as deleted (and all of the build information was deleted (drop location, build location, etc.). However, when I re-ran the build report, those builds were still listed there. Is this a known bug or is there a manual way that the results of that report has to be changed Thanks. Jeff There is a utility on the application tier called SetupWarehouse.exe. It is located here: ...Show All
Visual Studio Express Editions Creating a dll in C and then using it in Visual C# express
Hi all, Does anyone have a solution to my problem. I have lots of functions that are programmed in C. I don't have the time or sufficient knowledge to convert the functions to C#. My only best bet is to convert all the functions to a .dll and reference it to a C# Windows application I am creating at the moment. I've tried building a .dll in MinGW..but no luck since there seems to be some incompatiblity. Please help. Thanks. The easiest way is to make a managed C++ dll which has methods in the managed class that call the C functions ( nearly all C compiling in a C++ compiler ) and return the result. ...Show All
Visual Studio Express Editions Windows Platform SDK
I just downloaded C++ Express I could work with DirectX, and then I downloaded the Windows Platform SDK, the amd64. The problem is I can't install it. When I try to, I get "Not a valid Win32 application." The answer depends on what operating system/service pack (the one said in Start -> run -> sysdm.cpl) you are running, but I believe the answer is: download the x86 version instead. ...Show All
Windows Forms MSDataSetGenerator and xsd:import
Hi, I'm trying to use the MSDataSetGenerator with a couple of XSD files that rely on importing some common xsd files with <xsd:import>. However, when setting the schemaLocation attribute to a relative path I always get an error message saying something like: Type [insert type name here] is not declared, or is not a simple type. It works fine if I use an absolute path, but that certainly isn't a good option.. Any clues to a solution /Anders A simple example: MyIncludedSchema.xsd < xml version="1.0" encoding="utf-8" > <xs:schema id="MyIncludedSchema" t ...Show All
Smart Device Development Programming smartphones
whats the cheapest smartphone i could get to learn (hands on) smart phone programming If you want to use VS the "cheapest" is probably the device emulator. You can start programming with the emulator without having an actual device. ...Show All
Visual Studio Tools for Office Outlook plugin framework
Hi, I've got express beta 2 (and will probably get VS 2005 when it comes out for real once it comes out). I understand with vs.net there is a wizard to help you create plugins for office apps. It seems this plugin isn't in c# express, if it possible to build a plugin manually or do you need the output of the wizard Thanks alot. Dear Paul, i don't know you but i need a desperate help in order to start my work.Since i read you talking about outlook plugin i thought you will be able to open the door for me to make learn hoe to write plugin for outlook.... i am new to vc++ and i have been told to bui ...Show All
Visual C++ Can I execute a command from a system string?
Hello once more, this time I'm wondering if it's possible to execute a command line function from a system string... more specificly the the copy command (or if theirs another way to do this that works to.) What I'm trying to do is save a text file (well, inf, but same thing) to a directory the user chooses, my code is something like this: System::String^ fileName; fileName = System::String::Concat( "copy " , '"' ,System::Environment::CurrentDirectory, "\\file.inf" , '"' , " " , '"' ,path, '"' ); StreamWriter^ sw = gcnew StreamWriter( "file.inf" ); sw->WriteLine( "[wrote alot of stuff]" ); sw->Close(); Then t ...Show All
Software Development for Windows Vista Installing WWF beta 2 on 64bit Windows XP
I'm getting the following message when trying to install WWF beta 2 on 64bit Windows. Max only runs on Windows XP Service Pack 2. You can install Service Pack 2 from Windows Update. This version of Windows includes many useful security features (besides Max compatibility). Any ideas Thanks, Phillip Very Interesting. I do not have Max installed but I believe I tried to install it some time ago (it doesn't run on 64bit windows). So I ended up moving the WWF Beta 2 installer to another directory on my machine and it works (by default I have everything I download go into the same directory). I guess there is s ...Show All
.NET Development having regex problems - no more than a few words?
[edit] I will retract my original question until i find further problems, seems to be ok for now[/edit] in the mean time i will ask another Q! I am reading a stream from the net using GetResponse, to a string since this stream may have inner and outer html code (inner meaning examples shown in html on an html page) - is there a way of finding the html tags (like a normal search pattern) because I can search for anything else BUT any html tags do i need to use some other expression for regex or is there another way other than this, there may be some characters that are used in regex (as a syntax i think) that are actually on the pa ...Show All
SQL Server data mining and SS05
I've seen a couple of article on creating and scoring some mining models -- very cool stuff. Is the only way I can do this from an OLAP cube Can I create, train, and score a model just from relational data Thanks! You can create models directly from cubes using the wizard. Scoring models can be done using an MDX input to a prediction join statement e.g. SELECT Predict(MyColumn) FROM MyModel PREDICTION JOIN <MDX Statement> ON <bindings> ...Show All
Visual C# How can I prevent system prompt message to display? thanks!
After launch the following code, I find that a message window which require to insert floppy disk is displayed, only after I close the window, the message "A driver is unavailable!" can be displayed! but I don't wish that the additional message with requiring to insert floppy disk is displayed, how can I do thanks! try { string[] a1=Directory.GetDirectories(@"A:\") ; } catch { MessageBox.Show("A driver is unavailable!"); } Hi CUI WEI, Declare the Win32API Call within the class and add #using System.Runtime.InteropServices. [ DllImport ( "Kernel32.dll" , CharSet = CharSet .Auto, SetLastError = true )] extern stati ...Show All
Visual Studio No items in the toolbox
I have created a brand new Domain Specific Language Designer project based on the class diagram template but when I debug the solution and open the sample file there are no items in the toolbox. Can anyone help This even happens if I try to run one of the samples from the Microsoft DSL Tools Samples - November 2005 Russ and I looked at this offline, and the problem turns out to be that his My Documents was mapped to a network drive (and he was creating the DSL project in the default VS directory, which is "My Documents\Visual Studio 2005"). A network drive is by default an "untrusted l ...Show All
.NET Development Query for inserting data into a database
Hi.Can someone please attempt this and help me. I am jus constructing a simple system that saves info into the database from 4 textboxes on the form. The three text boxes take in the title, surname and name of a given person. I have dropped an OleDbConnection Command on to the system thus setting up the connection to the database. I have also dropped an OleDbCommand object onto the form. I have renamed the OleDbCommand to ObjSaveCus. This will be my vehicle for saving a given persons name into the customer table in access. I have so far completed the following code: Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e As System.E ...Show All
