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

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

Micror

Member List

Greg_AD
Anutthara
sci13960
Brent-GPTX
coolies
CrazyBinary82
Karim ElDeeb
Lucas Loizaga
shosholoza
-Matthew-
Shirajul Alam
smrshl
Brian Sullivan
Render
Naomi Nosonovsky
Madhu B.A
Alik Khavin - MSFT
niger
Druso ---sergio
hiren
Only Title

Micror's Q&A profile

  • Windows Forms Can't set focus to form

    I need some help... I'm creating a windows form application that contains large data entry screens, which are using AutoScroll. I'd like for the user to be able to use their mouse wheel to scroll the page, and it seems to me I need to set the focus to the form in order for the mouse wheel to scroll it. I'd like to set the focus  ...Show All

  • Visual Studio Team System Problems installing (Report Server can't connect)

    I am trying to install the Release Candidate in a dual-server environment. Everything goes well right up until the end of the Application Tier Server install, when it fails with the following message: Error 28805. Setup cannot finish the request to the SQL Server 2005 Reporting Services report server. Verify that SQL Server 2005 Reporting Services report server is installed and running, and that you have sufficient privleges to access it. In the event log, I get the following event repeatedly: Report Server Windows Service cannot connect to the report server database. The TFSSERVICE and TFSREPORTS users have the Login Locally right, ...Show All

  • Visual Studio 2008 (Pre-release) Canvas

    Hi, I would like to know how do you get the position of elements without calling Canvas.SetLeft() etc. Canvas.GetTop, Canvas.GetLeft, etc. only seem to work when you have used Canvas.SetTop, etc., and not on elements that are positioned with Layouts like the stackpanel, gridpanel etc. I would like to know how do you retrieve the position of elements added within the .xaml file and not in the code-behind. Example: (Assume the code works) <Canvas> <Grid Height="30"> <Grid.ColumnDefinitions> <ColumnDefinition Width="20" /> <ColumnDefinition /> </Grid.ColumnDefinition ...Show All

  • Software Development for Windows Vista Drill down in free form designer or sequential workflow designer

    Hello, When using the State Machine workflow designer, after you add a supported activity (e.g. EventDriven) to a State activity, you can double click on the child activity and the State Machine workflow designer will update; all the top level states will be hidden and the user sees just those activities that are children of the selected activity (e.g. EventDriven).  For example, if you have a State Machine workflow with five State activities, and the first state Activity contains a StateInitialization and an EventDriven activity, if you double click the EventDriven activity, the workflow designer will change, showing just the E ...Show All

  • Visual Studio Building dbgmetric.ilb with wchar_t native on?

    The VSIP B2 read suggests fixing the wchar_t problem by rebuilding dbgmetric.lib setting the option "Treat wchar_t as Built-in Type" to "Yes". Good idea - how do I do this - Eric After set the "Treat wchar_t as Built-in Type" option to No, I still get an error when linking: atlsd.lib(atlbase.obj) : error LNK2005: "class ATL::CAtlWinModule ATL::_AtlWinModule" ( _AtlWinModule@ATL@@3VCAtlWinModule@1@A) already defined in dbgmetricd.lib(dbgmetric.obj) Any suggestion ...Show All

  • Visual Studio 2008 (Pre-release) Back to the 2-tier?

    It seems to me that Dlinq with this nice new feature of Entity = Class is good for a Client/Server scenario only. How would it worlk in a SOA at all   Nagymester wrote: It seems to me that Dlinq with this nice new feature of Entity = Class is good for a Client/Server scenario only. How would it worlk in a SOA at all Well, let start by asking whats your definition of SOA I like this one: A service-oriented architecture is a collection of services that communicate with each other. The services are self-contained and do not depend on the context or state of the other service. They work within a ...Show All

  • Visual C++ Debugging during Linking

    Hi, sorry to bother people again. I was wondering if anyone had any suggestions on how to relieve myself of these errors Thanks --------------------Configuration: testga - Win32 Debug-------------------- Linking... genesis.lib(init.obj) : error LNK2001: unresolved external symbol _clibprintf genesis.lib(restart.obj) : error LNK2001: unresolved external symbol _clibprintf genesis.lib(schema.obj) : error LNK2001: unresolved external symbol _clibprintf genesis.lib(elitist.obj) : error LNK2001: unresolved external symbol _clibprintf genesis.lib(cross.obj) : error LNK2001: unresolved external symbol _clibprintf genesis.lib(mutate.ob ...Show All

  • Visual Studio How to to let 2 projects communicate to each other? (MVC)

    I have an addIn project and a webform project. If something changes in the addIn project, the webproject should be notified (Model View Controller) and vice versa. One solution to this is using sockets, but I am no so sure if that is the best solution. If I make in my webform project a reference to the addin project, a copy of the addIn-dll will be made. So this won't work, because the addIn project should be able to notify the web project. Suggestions Regards With a service you mean a Windows Service of Visual Studio I guess. But how can I subcribe both projects to the third (Windows Service) project (wihtou ...Show All

  • Windows Forms Unable to activate application.

    Does anyone know what this error means. It occurs if I try to uninstall tha application or update it. PLATFORM VERSION INFO  Windows    : 5.2.3790.0 (Win32NT)  Common Language Runtime  : 2.0.50215.44  System.Deployment.dll   : 2.0.50215.44 (beta2.050215-4400)  mscorwks.dll    : 2.0.50215.44 (beta2.050215-4400)  dfdll.dll    : 8.0.50215.44 (beta2.050215-4400)  dfshim.dll    : 2.0.50215.44 (beta2.050215-4400) SOURCES  Deployment url   : http://applications.ccusa.com/DAS3_Beta1/MailMan2/CCUSA.DAS.MailMan.application &nb ...Show All

  • Visual Studio Team System ValidateArgumentsOfPublicMethods rule in VS2005

    I have the following bit of code that the built-in Code Analyisis of VS2005 is complaining about... [Description("{0} is required")] public static bool ValueRequired(object target, RuleArgs e) {    bool result = false;    if ((target != null) && (e != null))    {       PropertyInfo pi = target.GetType().GetProperty(e.PropertyName);       if (pi != null)       {          object value = pi.GetValue(target, null);          if (pi.GetType() == typeof(st ...Show All

  • Visual Studio Express Editions Color text not returning to normal!

    I have my text turning a different color when I type a certain thing in, but the problem is that it wont change back to black after I type it. And, after I type it, any key I press will retype what I typed before. Heres my code: Private Sub RichTextBox1_TextChanged( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RichTextBox1.TextChanged Dim Tag As String Tag = "<html>" If RichTextBox1.Text.Contains(Tag) Then Me .RichTextBox1.SelectedText = Tag With RichTextBox1 .SelectAll() .SelectionColor = Color.Blue .DeselectAll() .SelectionStart ...Show All

  • Visual Studio 2008 (Pre-release) voice recording in winfx

    how can we add voice recording functionality in an Avalon project. WPF includes System.Speech.dll which provides APIs for speech recognition and synthesis. You can write synthesized speech to an audio file. ...Show All

  • Visual Studio Express Editions help needed in creating Addins in MSVC++....!!!!!!

    hi all, can any one help me out in creating an addin using C++ in MS VC++.... i am completely new to this and help from the scratch is needed.... the addin must execute a given command in cmd.exe ...and should be fired before the build process......... Plz get back 2 me as soon as possible..!!! regards, pardha saradhi AFAIK the Express Edition does not support add-ins. However, I think that what you describe is covered by the Build Events in the project properties. Here you can set command lines to be executed as pre-build, pre-link and post-build events. ...Show All

  • Microsoft ISV Community Center Forums Client to SSAS

    I would like to know How I can use OWC11 with ASP.NET 2.0 because the past version we only put the control en ASP.NET page and working, How I can do that with a new version Thanks for your help Flavio Hi Flavio, Here's some information from our support engineer: Using OWC11 in ASP.NET 2.0 should be similar to ASP.NET 1.1. Here are some articles for your reference. ASP.NET Server-Side Charting with OWC11 https://secure.codeproject.com/aspnet/owc11article.asp msg=1058114 How to deploy the Office 2003 Web Components in an Office 2003 program http://support.microsoft.com/default.aspx scid=kb;en-us;828950 ...Show All

  • Visual Studio VS 2005 and crystal drill down report expert

    I installed the Visual Studio 2005. When I add a crystalreport to my project, it gives me the option to choose an expert. I have only Standard , Cross-tab and Mail label options available. I am looking for the drill down option. How can I get that option to show up How come is no longer available How am I going to be able to implement that feature ...Show All

©2008 Software Development Network