Software Development Network Logo
  • Visual C++
  • VS Team System
  • Visual C#
  • Smart Devicet
  • Visual Basic
  • Windows Forms
  • Microsoft ISV
  • Game Technologies
  • Windows Vista
  • SharePoint Products
  • Visual Studio
  • SQL Server
  • Visual FoxPro
  • .NET Development
  • IE Development

Software Development Network >> Alessandro Ferreira's Q&A profile

Alessandro Ferreira

Member List

Ghassan Rashed
Mohan1
Buda56
samsquared
Els001
Degremont
gon_no1
Nimrand
PeterVrenken
IS dude
B M E
Woody_In_Sheffield
flyall
deltaspecops99
R.K.S.
xion.truth
rpierry
Bill Gates II
kennm
Dave Byrum
Only Title

Alessandro Ferreira's Q&A profile

  • SQL Server Can I run the SQL Server 2005 Developer Edition in Standard Edition Mode?

    As an ISV, I want to certify my product on Standard Edition. I am using Developer Edition everywhere. Is there a way I can do the certification using the Developer Edition, or do I need to obtain/purchase a copy of the Standard Edition I think you're asking if there's some way to temporarily turn off features in the Dev Edition that aren't available in the Standard Edition. That's an interesting idea but it's not something we support directly in SQL Server 2005. To absolutely insure that you didn't include any non-STD features in your app or to get precise STD performance/footprint characteristics, I guess you need a copy of STD. Paul ...Show All

  • Visual Studio Still show as Trial version after upgrade into Non-Trial version of VS2005

    Hi, I have a problem with VS2005. At first, I had standard version of VS2005 in my computer and it worked fine. A few months later, my boss asked me to install Team Suite (trial version) and it worked fine too (except it's a trial version). A month later, we bought Team Edition for Software developer version. After uninstalled the trial version and installed "Team Edition for Software Developer", the trial version still shows up on About Form with # of dates remain. I have tried many different ways to cleanup that “trial version” but "trial version" stills there. Please help. Regards, JDang I found the solution on the internet. You can try this technique by rem ...Show All

  • Visual Studio Team System TFS Warehouse, NullReferenceException in ProcessOlapNoTransaction

    Hi, I have many of the same event log entry on my TFS server, occuring hourly, that don't match any of the other problem/solution combos I've seen online for the same error code. Can someone please have a look and help me to resolve this problem. Let me know if I should post more information. Thank you, - Jason Here is the error: Event Type: Error Event Source: TFS Warehouse Event Category: None Event ID: 3000 Date: 20/12/2006 Time: 9:14:53 AM User: N/A Computer: BENJI Description: TF53010: An unexpected condition has occurred in a Team Foundation component. The information contained here should be made available to your site administrative staff. Technical Information (for the administrative staff): Date (UTC ...Show All

  • Windows Forms duallist control

    Are there any free controls out there ...Show All

  • Windows Forms MDI Form

    In my application, i have an MDI application and all the forms that are being displayed are derived from "System.Windows.Forms.Form" ... in this case i were unable to bring the windows to the from simply clicking on the body of the form... I even used the onclick event to bring to the front. That works fine however on clicking on Tabs->TabPages or any other panel over the windows,it does not generate the click event for the form .. is there any simple method to bring the form to the front Here InteraceView is an interface and in the following class i have overridden the key events. public class FormBase : System.Windows.Forms. Form , InterfaceView { } From this form base i have derived the F ...Show All

  • Visual Basic How access properties of images?

    Hi Anyone know how access properties like "title" or "subject" or "author" from a file .jpg I have been trying use this Dim obFileVersionInfo As FileSystemInfo or  As FileInfo  but this way a just get the filename, ou datecreation... Anyone can help me Thanks Gustavo Check this webpage for the necessary voodoo... ...Show All

  • Microsoft ISV Community Center Forums Deleting Macro

    I want to delete the macro recorded in my excel file but the "delete" button is disabled. Is there another way to delete all macros thanks... Hi Your macros will have been recorded in a module. Right click the module and select remove module, say no to export unless you want to save the code to a file. ...Show All

  • Microsoft ISV Community Center Forums Count and display in cell

    Ok I have an Excel workbook that contains a schedule (51 worksheets total). Each cell has intials in it and if that person has taken a day off the cell is highlighted a certain color (yellow, rose, or red). What I need to do is have something that goes through and counts what intials have what color and then display in a cell the number. So: If cell contains "initials" and cell color is "color" Then count and display in "cell" Example: If cell contains "JJ" and cell color is "Yellow" Then count and display in "A2" I know it is possible to do this but I'm not sure how. Tiger I found this code but it doesn't seem to work ri ...Show All

  • Visual Studio Express Editions one last question with a boolean

    well i have one last question on my program like before. the idea of it is to type in a child's last name and it will read from a txt file with all its info and bring out the info in a rich txt box. otherwise it will say "child not found". well right now no matter what i put in im getting "child not found" Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click Dim strChildFirstName As String Dim strChildLastName As String Dim chrChildGender As Char Dim strParentLastName As String Dim strParentFirstName As String Dim chrParentRelationship As Char Dim decAnnualIncome As Decimal Dim intParentAge As Integer Dim intNumberOfKids As Integer Dim Readfile As System.IO.StreamRe ...Show All

  • Visual Studio 2008 (Pre-release) Custom authorization

    I'm writing an application where the user can either log onto the app using a username and password that is stored in the database or by using their windows domain account. I'm trying to write a service that will return the user's ID (in the db it's specified as a Guid) given either the user name and password as it's specified in the database or the user's domain account. In order for the user to log on using their domain account they must have their domain account associated with their userId in the database. Once the user has been authenticated I would then like to use their id (if possible, if not each user will have an app username and password that I can use instead) to authenticate them each time they call into other services (us ...Show All

  • Visual Studio 2008 (Pre-release) Creating a panel style with default styles for child controls.

    I would like to create a style that sets default styles for a panel's children based on their type, such as a default style for buttons, labels, etc. I tried creating styles in the panel's style's Resources property. For example: <Style TargetType="Grid"> <Style.Resources> <Style TargetType="Button> <!--...snip...--> </Style> <Style TargetType="Label"> <!--...snip...--> </Style> </Style.Resources> </Style> This seems to work fine for buttons, but doesn't work for labels. I can't figure out why. I've tried just about everything I can think of. Please help. Thank you. -Kevin It looks l ...Show All

  • Visual C# partial classes and access to inherited members

    Hi, I have a situation where I get a class generated from a tool, this class inherits from CollectionBase, this generated class is marked partial. I want to create another partial class for this generated class to add some behaviour, I need access to InnerList defined in CollectionBase. However my new partial class doesn't seem to have any visibility of any inherited members. Any thoughts Slan Gar Make sure you implementation of class in 3rd file is under the same namepsace as of the other 2 and class is market with partial keywor. It must work fine of both conditions are true! Double check it! Cheers ;-) ...Show All

  • Windows Forms Focus a header cell in windows datagrid

    HI friends, i want to focus a cell in MS windows datagrid. i can achieve this by dataGrid.CurrentCell = new CurrentCell(row,column); for the rows other than Header row. how can i focus the first cell (i.e. 0th column and -1th row(header row), since this comment dataGrid.CurrentCell = new CurrentCell(row,column); only accepting non negative values for row. Thanks in advance, Ram Babu ...Show All

  • Visual Studio 2008 (Pre-release) MSMQ and IsInRole problems

    Running into some confusing stuff when using MSMQ (net.msmq) and trying to authenticate. I run the following code on my service (i.e., when receiving the message from the queue): Console .WriteLine( "TypeName: " + System.Threading. Thread .CurrentPrincipal.GetType().FullName); Console .WriteLine( "Test1: " + System.Threading. Thread .CurrentPrincipal.IsInRole( "TestGroup" )); Console .WriteLine( "Test2: " + System.Threading. Thread .CurrentPrincipal.IsInRole( "OFFICE\\TestGroup" )); Console .WriteLine( "IsAuth: " + System.Threading. Thread .CurrentPrincipal.Identity.IsAuthenticated); Console .WriteLine( "Name: " + System.Threading. Thread .Curre ...Show All

  • Internet Explorer Development IE 7 - scrolling jumps

    Is there a default setting I can change in IE7 that will stop the jumping when I try to scroll using a mouse wheel It's almost as bad as what I see when I'm connected remotely to another machine. Thanks, R. Hill Thanks for the reply. I found a solution from a google forum that solved the problem for me: Start. Control Panel. Mouse. Choose the Buttons tab. For "Scroller", set to the following: Check the box labeled "Use MS Office compatible scroll only." Also, check the box labeled "Scroll in active window only." Works fine after making those changes. ...Show All

©2008 Software Development Network