Vins_Lond's Q&A profile
Visual C++ practice programs
hello guys.. i am new to VC++ 2005 but not to C++.. where can i get practice programs to get the flow. chaman. Start with beginners article from codeproject.com, codeguru.com, MSDN. there are alot of sources to learn vc++ BTW this forum related to ask question related to Language Issues of Visual C++. Please try some news groups instead. ...Show All
Visual Studio Team System Moving Data to a localized Server
Our group is using english TFS. Now is our Firm wants to install a new TFS (German version) for all developer groups. And our group need to move our Data (only WorkItems, no source code) to this new server. Is it possible to back our database and restore it on a new server Or can we export english WorkItems and re import them on german TFS Hello Daniel, unfortunately it is not possible with a simple database move. You should be able to copy your Work Items via Excel , but you would also have to change the WorkItem Type and a number of other values from English to German before publishing them on the new server and you would at least loose the history. The only other way you could do that, is via ...Show All
Visual Basic ado
the ado classic script in vb insert and update a row in table previous open search if the data existing or not, in base a specific parameter. Can you write less code in ado net with same function ...Show All
SQL Server BCP task and Dynamic import and export of a file via package variables
I have a requirement to create many SSIS packages and no datatransform is required so the BCP task looks a good contender providing it can do both import & export is it possible to parse the values in bold as package variables into the BCP task. If so how BULK INSERT ipcs_wvg.dbo.extract FROM 'D:\IPCS\extract.csv' WITH (FORMATFILE = 'D:\ipcs\query\extract.xml' ); Thanks in advance Dave I have a global database called ETL Configuration for all my SSIS packages that uses a single table. So I can create three global variables USE [ETLConfiguration] CREATE TABLE [dbo].[SSIS Configurations]( [ConfigurationFilter] [nvarchar](255) COLLATE Latin1_General_CI_AS NOT NULL, [ConfiguredValue] [nvarchar](255) COLLATE Latin1_Gener ...Show All
Windows Live Developer Forums About robot
How to give the robot a scratch of pen ...Show All
Visual Studio Express Editions Picture Viewer
I now have the Thumbnail Control working, after my last post it's a control that is fully independent, all you need on the form is a PictureBox, Panel and Button in the Buttons click event you place one line of code ShowThumbs.GenThumbs(DirectCast(pnlThumbs, ScrollableControl)) and that's it. So why am I here well it's because when the thumbs load they take a long time first each picbox loads in the panel one at a time then the pictures load.This isn't bad for a few Images but if there are 100 Images! What I want is to create the thumbs quicker. Any Ideas If you want to see the code let me know and I will post it. No, as usual you're bang on, it's the blue rectangle that I need to remove. Tried this ...Show All
Visual Studio 2008 (Pre-release) Is NET 3.0 only for new OS?
Is the new NET 3.0 only for new OS excluding Windows XP Thanks, Lorenzo .NET 3.0 is avaialble for windows xp,windows 2003+sp1,vista,you can find more info here http://msdn.microsoft.com/windowsvista/support/relnotes/netfxjunectp/default.aspx ...Show All
Visual C++ which one of the following statements is true
Question:- A CFormView uses a dialog-template resource. What properties must the dialog-template resource have to work correctly with a CFormView Choice 1 WS_CHILD on WS_BORDER off WS_VISIBLE on WS_CAPTION off Choice 2 WS_CHILD off WS_BORDER off WS_VISIBLE off WS_CAPTION off Choice 3 WS_CHILD on WS_BORDER off WS_VISIBLE off WS_CAPTION off Choice 4 WS_CHILD off WS_BORDER off WS_VISIBLE on WS_CAPTION off Choice 5 WS_CHILD on WS_BORDER on WS_VISIBLE off WS_CAPTION off ...Show All
SQL Server How to access Output (Inserted.ColName) from client application ?
I am using SQL Express 2005 and VB .net Express. Question 1: How can I get the result stored in Inserted.ColName (by Output clause of insert command). In the documentation (BOL) for SQL 2005, there is written "returned to the processing application for use" in Output clause (first paragraph). Question 2: How to store Inserted.ColName into local variable when insert command is running in stored procedure.: Hi Jens, There is no problem. I asked because it is not documented in books on-line (may be, but I don't found). Thanks for your response. ...Show All
Visual C++ Problem with deployment (VC++ 2005)
I have run into a strange problem with deploying applications developed using the VC++ 2005 Express Edition. After building "release" versions on my development machine, I usually copy the release binary over to a laptop and run it there (the laptop has .NET 2.0 and VC++ 2005 Redistributable packages installed, but not the development environment). Both computers are running Windows XP Professional. Now, all of a sudden, I am finding that new applications that I am developing are NOT running on the laptop after I copy the release binaries over. The error message complains about incorrect configuration... And yet, I am still able to copy my earlier applications over to the laptop and run them without any problem. As far as I ...Show All
Visual Studio Build Number
Hi everyone, I'm trying to customize my solution. I have a file .wdproj to deploy the solution in which i have several targets and items to copy, move, and delete files. the problem is that I want to assing a build number for each specific build done during the daily basis. I've done it before with MSBuild and the TFSBuild.proj in the source control, but this .wdproj is inside the my solution. The output folder is pointing to some randon directory in my computer. Please any suggestions. Thank you, Chris Doloriert. hi what if what I want is all the directories and files including the bin folder to copied to some directory for example Test2006711.1, where 2006711 is the current date and .1 is the ve ...Show All
Silverlight (formerly WPF/E) FlowDocument coming to WPF/E?
Will the FlowDocument and rich typography features of WPF also be available on WPF/E I can image a lot of great applications of this. Karl Microsoft has stated that the document aspects of WPF/E and the clear type typography that supports it will not be included in WPF/E because of the targeted download size. Apparently the typography includes a lot of data for things like kerning, ligatures, and word breaks that would add several megs to the size of the download. ...Show All
SQL Server Trouble with Workflow DTS (SQL 2000)
Trouble with Workflow Hello. I have a DTS package that executes some tasks of the type "Execute Package Task". Every Task has a Condition of been executed just in case of success. I understand that only if the precedent task ends successfully the next one would be processed. My problem is that the DTS continues even if one of the previous steps fails. Would you have any idea ____________________________________________________________________ My escenario is something like this: EP: Execute Package Task ES: Execute Sql Task ______ _____ EP# 1 (on success) ----> EP# 2 (on success) ...Show All
Software Development for Windows Vista Dependency Properties in XOML files
Hiya all How do I write the dependency property below in xaml in the xoml file for a workflow Thanks protected static DependencyProperty CurrentMortgageFileProperty = System.Workflow.ComponentModel. DependencyProperty .Register( "CurrentMortgageFile" , typeof ( MortgageFile ), typeof ( LsmBaseActivity )); [ Description ( "The current Mortgage file on which the workflow is acting." )] [ Category ( "RMC" )] [ Browsable ( false )] [ DesignerSerializationVisibility ( DesignerSerializationVisibility .Visible)] protected MortgageFile CurrentMortgageFile { get { return (( MortgageFile )( base .GetValue( LsmBaseActivity .CurrentMortgageFileProperty))); } set { base .SetValue( LsmBaseActivit ...Show All
SQL Server Create time hierachie from datetime datatype
Hi! In SQL 2000 you could have the wizard automatically create a time dimension including the hierachy from a single datatime data type column in the fact table. Is there a way to do this in SQL 2005 Thanks. Ann I do not think so. You have a server time dimension wizard that you can run but it is not the same as in AS2000. In SSAS2005 you create all time attributes in the time dimension or in the data source view. Here is a link to a Blog with a script that will help you with creating the dates. http://blogs.conchango.com/jamiethomson/archive/2007/01/11/T_2D00_SQL_3A00_-Generate-a-list-of-dates.aspx From that you use TSQL Datefuctions like DatePart() and Year() to create the time attributes. Books on Line includes i ...Show All
