Software Development Network Logo
  • Visual FoxPro
  • Visual J#
  • VS Express Editions
  • Visual C#
  • Visual Studio
  • Visual C++
  • Smart Device
  • Microsoft ISV
  • Windows Live
  • Architecture
  • Visual Basic
  • VS Team System
  • Game Technologies
  • Windows Forms
  • SQL Server

Software Development Network >> appferreira's Q&A profile

appferreira

Member List

lordvr
IbanezRox
Wing_VB6
singhswat
hypermatt
Eusebio Perez
Calvin Thomas
Michael Dvoishes
Gabriel PURAN
kobus_b
Robert A. Swirsky
Michael Hogue
Jakku Ravi
Peter Hancock
Edmaneiro
mido1971
gagandce
Sarosh_Alamgir
eThikas
Spongebob34
Only Title

appferreira's Q&A profile

  • SQL Server List of supported components for SQL server 2005 Standard edition?

    Please can someone give me a url or even their own list of support / unsupported components in SQL server 2005 Standard edition. I know fuzzy lookup is not supported. Is a slowly changing dimension supported Its a bit difficult to tell when I get bizzare "Product level is insufficient" error for even a basic derived column transformation when executing a package using SSIS unless it is executed using a scheduled job.... thanks ...Show All

  • Visual Studio Team System Can not create a project with Team Foundation Server RC, KeySet not found

    Hello all, I am trying to setup team foudnation server. The install went smothly enough, but when I create a new project, even if I don't use source control, I get an error message that the source control system isn't working and it wont let me create the project. Here's the exact error message: Exception Message: Keyset does not exist (type CryptographicException) Exception Stack Trace: at System.Security.Cryptography.CryptographicE ...Show All

  • SQL Server 264] An attempt was made to send an email when no email session has been established

    Is there any way I can get sp1 please. I'm getting the same error no matter which email method I use. Thanks Sam I have installed the March CTP SP1 and I am still getting the error "An attempt was made to send an email when no email session has been established" as before. ...Show All

  • Software Development for Windows Vista Confused on why is is possible to drop activities in .XOML and .XOML.CS files?

    Hi everybody, I may be overlooking something obvious, but this is sort of confusing to me, so I would appreciate a clarifying voice on this. If I create a WF console app, delete the original "Workflow1.cs" file, and add a "Sequential workflow (with code separation)" item, then I get 2 files in the solution explorer: "workflow1.xoml" and "workflow1.xoml.cs". I can click on each one of those two files, and add activities separately ( ): ...Show All

  • Visual C# Outlook Hyperlink

    Hi Folks, I am trying to run an exe by clicking an Outlook hyperlink. I am able to set the hyperlink up with regard to the path of the exe which takes no parameters. But I want to execute the application which takes parameter. I googled for it. Got a similar problem faced by someone. Link of it is http://groups.google.com/group/microsoft.public.outlook.general/browse_frm/thread/c40c9fc95d731d50/8d9941af8d45aef9 lnk=st&q=exe+hyperlink+outl ...Show All

  • Windows Forms Error Trying to Install Issue Vision

    I am trying to install issue vision to have a play, but I keep getting this error message.  I am running Windows XP home SP2 and I have SQL Express 2005 installed as well as Visual Studio C# Express Here is the error message that I am getting See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box. ************** Exception Text ************** System.Data.SqlClient.SqlException: Passw ...Show All

  • Visual C# How to disable the window form combobox?user is allowed to select but not key in data.

    I have a window form comboBox which will display the information from the database. How can i disable the ComboBox so that users cant enter any word or data into the comboBox They only can select the data displayed to them. Hope someone can help...thank you... Use the ComboBox.DropDownStyle property and set this to ComboBoxStyle.DropDownList . Now the user cannot directly edit the text portion. The user must ...Show All

  • Visual C# C# .NET Performace / Porting?

    Hi,  I've just been to the Reuters Developer's conference in London May 06.  I work in the Financial Services sector and have a bit of an interest in Financial data providers.  One thing that stuck me was they offer no native .NET support.  Their APIs are designed for use with C++ & Java  (Reuters Foundation API). I asked them whether they intended to provide a native .NET API   They said not in the foreseeable ...Show All

  • Visual Studio 2008 (Pre-release) BitmapImage.StreamSource best practice?

    I want to do this: using (Stream imageStream = webClient.OpenRead(url)) { BitmapImage bitmapImage = new BitmapImage(); bitmapImage.BeginInit(); bitmapImage.StreamSource = imageStream; bitmapImage.EndInit(); this.image.Source = bitmapImage; } but it throws an exception because the image hasn't finished downloading when the stream is closed. So instead I find myself doing this: Stream imageStream = webClient.OpenRead(url); ...Show All

  • SQL Server Flat Files Containing Dates

    Hi everyone. I'm trying to use a Flat File Connector to read in a fixed field width file that contains some date columns. The problem is that the date column is in a CCYYMMDD format (with no delimiters) so that todays date, as an example, would be 20050711. When it attempts to import the file it fails due to a "Data Conversion Failed" error. I can't find any way to specify the format of the column in the FFC dialog so my only option appears ...Show All

  • Visual C# Login to Domain

    I am developing an application that needs to run in a computer that is not part of the domain but is included in the network. I need to somehow replicate the functionality of the "connect in " dialog box of Windows wherein a user can enter a username and password that can be authenticated by the machine he wants to connect to. Is this possible Can anyone give me something to research on... Thanks. no answer ...Show All

  • Visual Studio 2008 (Pre-release) LINQ on XP Home Edition

    Is it possible to install the LINQ May 2006 CTP on Microsoft XP Home Edition I get the error that 'Power Users' group does not exist, and I can't Create it. I'm replying to this myself. Sorry - should have read all the questions and answers. It's already there. JohnGp ...Show All

  • Windows Forms BackgroundWorker RunCompleted Not Thread Safe?

    I created a StatusStrip using VS.NET 2005 Beta 2. A thread is started to grab data from a database. The StatusStripLabel is updated when a data row is changed/added. I put the codes that changes the StatusStripLabel inside a BackgroundWorker's RunCompleted event. Here's a sample of my codes: [ ... snip ...] private string _StatusMessage = ""; private void StatusChange ( string message ) {     lock (_StatusMessage)    ...Show All

  • Software Development for Windows Vista state machine workflow desginer

    I'm following Lab4, somehow my designer for the state machine workflow looks different from the screen capture on the lab manual. On my designer, all states are on auto arrange and I cannot see the links between them after I set up the set state. Is there a setting or a different view of the designer that I need to set Thanks   Dennis Pilarinos wrote: James has it almost 100% correct.. the key needs t ...Show All

  • Visual Studio Formating Questions

    1) When I format my date fields, its always MM/DD/YYYY format. How do I change it to DD/MM/YYYY 2) I have a group header row, which has a blue background. txtGroupSales is one of the text boxes in the row. I've set txtGroupSales to toggle invisible when txtGroupName is clicked. Unfortunately, this also hides the blue background for the text box. So I have a white gap in the blue bar. Any ways around this 3) Is it possible to save that the repor ...Show All

©2008 Software Development Network

powered by phorum