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

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

asarmiento

Member List

subink
Ankith
admng
Rance
ubercoder
David Dilworth
Thanh
Sridhar S
angiedolfin
Sebastian Roth
Ed Ball
Micael Karlsson
rfiddelke
Watch Pick n Poke Action
Remdul
slack7219
kmcnet
Jonny Cool
Naras
Attic
Only Title

asarmiento's Q&A profile

  • Windows Forms property grid item collection

    hi, we want to develop a property grid item on the property browser like treeview's node property ( has a browse button that opens a new editor). is there any special name for this kind of property  we think that this kind of property takes collection. can we access the .net built-in editor like treenode editor and modify the content of it thanks. ...Show All

  • Visual Studio Express Editions Serial port control

    I want to be able to send and recieve data from a microcontroller to VB 2005 express. Does anyone have any suggestions on how to setup a comm port and link code from say a button Thanks As the functions that you are asking are not just for express... I would have a look at the other forums on this site and do a search. You might want to focus the search on the networking and communications groups, and the language specific groups. ...Show All

  • Windows Forms Removing a tooltip from a control

    How can one remove a toolrip from a control There are occasions when, having done a SetToolTip, I now don't want the tip to appear. There doesn't seems to be a RemoveToolTip(Control) functionality. Thanks Vikram - worked a treat. I was worried that it would show an empty box, in the over-literal way that computers tend to work. Now, let's hope that this gets into the documentation. ...Show All

  • Windows Forms Office XP PIA with word

    I am using office 2000 with the office xp pia and  i just extracted the files to a folder and added Microsoft.Office.Interop.Word as a reference. When i did this with this code     Private Sub btnMerge_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnMerge.Click         If Me.OpenFileDialog1.ShowDialog = DialogResult.OK Then     ...Show All

  • Visual Studio Team System TFS MSSCCI Provider Final fails to install

    I have downloaded the latest MSSCCI provider for Team Foundation Server that was published today. The .MSI is about 1.06mb. I am able to complete most of the installation but during the last few percent a message appears with the following error: "The cabinet file '_DE4122DA27BBE897D870DBB37A5A532C' required for this installation is corrupt and cannot be used. This could indicate a network error, an error reading from the CD-ROM, or a problem with this package." I have tried installing a few times on different machines. I have also tried re-downloading a few times from different machines with different browsers. The download page ...Show All

  • Windows Search Technologies %s

    When entering a web address to search I get redirected by the %s that appears in the search bar. This only happens when using MSN. Not when searching from rogersyahoo. Thanks Hi thanks for responding. As an example only, if I search for "westjet" (without the quotations) using Google , which is my search engine in explorer, a window comes up with a list of over 10million web sites that are totally unrelated. In the address bar is the symbol %s not westjet. It doesn't seem to matter what I search for, the same thing happens. If I switch to RogersYahoo I don't have the same problem. It really ...Show All

  • Visual Studio Team System Baseline existing violations using Visual Studio Team System

    I have a question regarding basline existing violations. In our organization we are migrating existing projects to VSTS and TFS. When we have done this we want to enable static analysis for our projects. The problem we have is that we don't have the resouces to fix violations in the old code. I have found a number of posts describing the posibillity of creating a baseline of violations and ony emitting warnings on new violations. What I can't find is a description how this is done using the VSTS environment. Could anyone point me in a direction where to look for more information in this matter. Regards, Christian ...Show All

  • Software Development for Windows Vista InvokeWorkflow

    If InvokeWorkflow is used inside a workflow can I tell from the outside via an event who the parent of the new workflow is TrackingParameters has the CallerInstanceId ...Show All

  • Visual C# Why is this code giving a compile error?

    Hi, I tried to compile a class containing only the following method but it gives the error "Error 1 A local variable named 'i' cannot be declared in this scope because it would give a different meaning to 'i', which is already used in a 'child' scope to denote something else". Why is it so Please help.. public static void M() {    {       char i = 'a' ;    }    int i = 0; } Ironically however, i belief (from memory) that this -is- possible: class ="txt4" id="_ctl0_MainContent__ctl0_PostForm_R ...Show All

  • SQL Server Replication Isues After upgrading subscriber to 2005

    Hi There A while ago i migrated a 2000 database to a new instance of sql server 2005 and succesffully setup replication from a 2000 publisher. However to experiment i took an existing 2000 instance with a subscriber databases and upgraded the default instance to 2005. (Upgraded from 2000 Enterprise to 2005 Enterprise) After the upgrade the setup logs were all successful, i also run upgrade advisor before and made sure there were no issues. To see what happens i did not drop the subscription before upgrade (is this an absolute neccessity ) All i did was stop the distribution agent before upgrade, to see what would happen, i did ...Show All

  • Windows Forms Diagram Editor

    Hi! I was wondering if anyone can advice me or point me to samples that can help me to build a diagram editor. I'm thinking of something like a simplified version of Visio for my code generator. Any ideas Hmm... shouldn't you divide business components and UI pages  I would think that all your tables can be mapped to business entity& ...Show All

  • Visual Basic Unhandled Exception Help Needed

    HI all, I'm GRK, kid in this group. I'm getting an unhadled exception in my application. *** Coming to real problem,I'm calling form two by showdialog() method in the button click event in the first form,and hiding the first form.when closing the second form I'm again enabling the first form. by doing this for more than 3 times I found an exception which is not caught by the try catch block. Error Message is: An unhandled exception of type 'System.ArgumentException' occurred in system.drawing.dll Additional information: Invalid parameter used. my code part: dim obverifier as new frmVerifier obverifier.ShowDial ...Show All

  • SQL Server Filter measure group.

    Is it possible to filter data in a measure group Do I have to create multiple cubes and data source views For example, I have a huge Fact table but I want to restrict certain rows base on the user. I can't use the built-in Roles security because my application does not rely on Windows NT users/groups. If you can't use roles - you're stuck. But are you using a middle tier app If so, you might be able to use the customdata connection string property and use this in your dimension security expression. ...Show All

  • Visual Studio VS2005 breaks on unhandled exception in asynchronous code

    I am using BeginInvoke and EndInvoke on a delegate to call a function that throws an exception. There is no error handler in the delegate function, because I want to catch the exception when EndInvoke is called. This works fine with both .NET 1.1 and .NET 2.0, but in VS2005 beta 2, the debugger breaks in when the exception is first thrown warning me that I have an exception that is unhandled by user code. Is there a way I can stop the debugger from breaking in in this scenario VS2003 did not do it, and in any case it is debatable whether the exception is in fact unhandled. The actual bug report number is FD ...Show All

  • Visual Studio Team System Coded Webtest and looping thru a datasource?

    Hello, I am have a little problem and need some help. I have created a webtest which loops thru a datasource. Converted it to a coded webtest to do some validation but can not get it to loop thru the datasource. Is there anything that I am missing Any help would be much appreciated. Thanks Unfortunately, you found a bug.  The 'one run per data source row' works correctly for the non-coded webtests, but as you found is not currently working for coded tests. ...Show All

©2008 Software Development Network