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

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

maimoy

Member List

Ryan Frazier - MSFT
klusner
Terry Anderson
WKinney
Kiyac
GerryJ
KrishnaC
Laurence Hunter
The XML Man
BigAlz
RobertMC
Will Pearson - MVP
WillHart
Liron231
Castor
Tom RS
Jools .Net
AnjaTr
smartwebagent
microsci
Only Title

maimoy's Q&A profile

  • Visual Studio Tools for Office Most flexible deployment is to GAC?

    Working on a VSTO Word application. Users will need to be able to pull documents from a Sharepoint site that use the app as well as email them to each other, and also be able to work offline... Right now I have decided to install the assemblies into the application folder. However, I assume that if two users install into different app folders (or if Program Files is on D: for one user...) then they cannot email the document from one user to another and have it work (I haven't tested this yet). So it seems the best place to install the assemblies would be in the user's GAC and have them strong named and refer to them that way from the d ...Show All

  • SQL Server Average on a calculated column in matrix

    Hi, i have some data i am showing in a matrix. The first row group is on month, the second row group is on year, in this way i get year on year reporting of my sales data. One of the columns i have in the matrix is a "average $ per hour". The calculation for this works nicely on each row, i just get the total sales, and divide by the number of hours in that particular month (which i calculate). So it looks like this (these figures are invented): Month Year Total sales Avg $ per hour May 2005 $123,456 $20.15 2006 $129,112 $21.56 June 2005 $100,449 $18.45 ...Show All

  • Smart Device Development How to install MSMQ on PocketPC 2003 Emulator with Visual Studio 2005?

    Hi! I am fairly new to Windows Mobile development, so maybe I am missing something fundamental here. I am sorry to say I got into some endless link loops while searching for clues within MSDN documentation... I have two applications for .NET Compact framework that I want to run on PocketPC 2003, and later on Windows Mobile 5.0 devices. One is a windows application, the other a service process without user interface. The windows application requests data from the server and gets responses. Now I had some problems finding out how to do that with .NET CF, and settled on Message Queueing with MSMQ. Compiling on Visual Studio 5.0 works f ...Show All

  • Visual Studio Team System Is it possible to change the connection string property of a Web test datasource?

    Hi all, thanks in advance for your help. We are developing a series of web tests to be used for performance testing. These tests use a local database for parameter data. What I have not been able to change is the connection string of the web test datasource. If we move the tests to another testers machine, they have to create a new datasource, re-establish all of the bindings in the Form Post parameters and then delete the original data source. Is there something I am missing here It may just be a case of 'functions as designed' due to security concerns. Thanks, Shawn Unfortu ...Show All

  • Software Development for Windows Vista Official abbreviation for Windows Workflow Foundation

    I'm looking for the absolute, non-debatable, Microsoft-approved abbreviation for "Windows Workflow Foundation". Is it: a) WWF (no, I don't think so) b) WinWF (I see this used all over this forum) c) WF (lately I'm seeing more of this) d) none of the above Can someone at Microsoft please provide the official word on this Thanks much. Bruce Bukovics Author of .NET 2.0 Interoperability Recipes http://www.apress.com/book/bookDisplay.html bID=10116 ...Show All

  • SQL Server Exception Has been thrown by the target of an invocation

    Getting this error "Exception Has been thrown by the target of an invocation" when trying to create Integration Services Project. Any ideas what can be wrong Thanks. In our case the problem was related to the installation image we used to setup our computers (every PC that used that image had the problem). ...Show All

  • SQL Server Stored Proc Output Parameter to a Variable

    I'm trying to call a stored procedure in an Execute SQL task which has several parameters. Four of the parameters are input from package variables. A fifth parameter is an output parameter and its result needs to be saved to a package variable. Here is the entirety of the SQL in the SQLStatement property: EXEC log_ItemAdd @Destination = 'isMedicalClaim', @ImportJobId = , @Started = NULL, @Status = 1, @FileType = , @FileName = , @FilePath = , @Description = NULL, @ItemId = OUTPUT; I have also tried it like this: EXEC log_ItemAdd 'isMedicalClaim', , NULL, 1, , , , NULL, OUTPUT; Here are my Parameter Mappings: Variable Name Direc ...Show All

  • .NET Development End Asyncronous Task?

    Is it possible to end an asyncronous task before the actual end criteria has been met I'm desperate! If you really need to end an async task immediately you can close the socket or, if you are using FTP or HTTP web request you could dispose the object. ...Show All

  • Visual C# ? VS2005: Where did Class View->Add->Override go ?

    In Visual Studio 2003, you can use Class View to navigate to a virtual member of a base class, then right-click that member and choose Add|Override. In Visual Studio 2005, this is not available. Where did it go Is there an alternative and equally convenient way of doing it # Thanks! I just finished struggling with the same problem and I wanted to shed some light on another way to accomplish the override. In the class diagram window, right-click on the derived class where you want the new overriden method to go. Navigate to the 'Intellisense' menu, and then to 'Override Members'.... Bingo! ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DirectX Extensions for Alias Maya 7

    When will the export X for maya 7 be released Or is there a way to convert 6 binary or 6.5 binary too work with 7 This is what we're saying, it doesn't work. It compiles, sure, but it also crashes like crazy and can never export a .x file. And yes, I updated the paths. What is MS doing about this Anyone know Or do they just continue to ignore their users ...Show All

  • Software Development for Windows Vista using regsvr32 in Vista 5231 to install COM component fails to write to registry

    I am trying to register a com object (dll) with regserv32 in Vista 5231. My Dll is being loaded and my DLLRegisterServer method is invoked which uses RegCreateKeyEx and RegSetValueEx to write to the registry (HKEY_CLASSES_ROOT\CLSID\XXX\XXX). I am writing everything out to a file just to make sure everything is going ok. all the RegCreateKeyEx calls and RegSetValueEx calls are returning success, but when I look in the registry my newly created keys aren't there. Are there any known issues with using RegCreateKeyEx or RegSetValueEx to modify the registry with Vista 5231 I resolved my issue. there seems to b ...Show All

  • Visual C# EventLog que

    My aplication has following lines of code EventLog myLog = new EventLog("Debug Log"); myLog.Source="Trace Output"; EventLogTraceListener TraceListener = new EventLogTraceListener(myLog); Debug.Listeners.Add(TraceListener); Trace.Write("Successfully Excecuted Method..Trace"); Debug.Write("Successfully Excecuted Method..Debug"); Trace.AutoFlush= true ; If i add Trace. Listeners.Add(TraceListener); why does it logs same log two times You're telling the framework to log debug messages (with Debug.Listeners.Add(TraceListener) and trace m ...Show All

  • Windows Forms How to create an object property for a custom UserControl?

    Hi all.. I created a UserControl where I implemented a property that if of a class type. I want that in VS.NET editor this property to be shown as a tree, something similar to Font property present in most visual controls. Do I have to include some attribute or to make something special with the property Thanks Jaime Hello, A. Create a custom TypeConverter for your class <System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.Demand, Name:="FullTrust")> _ Public Class NodeViewTypeConverter Inherits TypeConverter Public Sub New() MyBase.New() ...Show All

  • SQL Server Detect installed version?

    Today I installed SQL Server 2005 developer edition on a test server. Afterwards I also installed the SP1. During the installation of SP1, the installation program said the server should be restarted afterwards, which I did. Now when I look at the Add/Remove Programs dialog I have several items which mention SP1 on the SQL Server items. But when I request the server properties in Managemnt Studio I see the version number 9.0.2047. Shouldn't this be 9.1.XXXX How can I be sure the SP1 is correcty insatlled Stievie If you look on the download page under the Quick Details, the version number is listed as 9.00. ...Show All

  • Windows Forms Problem with Dataset designer

    Hello I have problem with DataSet designer in VS2005 professional. Im created empty dataset and drag couple of tables into it form server explorer to have strong typed dataset. If I try to open it again, designer crashes with exception like this. One or more errors encountered while loading the designer. The errors are listed below. Some errors can be fixed by rebuilding your project, while others may require code changes. Nieprawid owy klucz do u ycia w podanym stanie. Hide at Microsoft.VisualStudio.Data.DataProtection.DecryptString(String s) at Microsoft.VSDesigner.VSDesignerPackage.AppSett ...Show All

©2008 Software Development Network