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

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

IndustrialRezn6

Member List

roussec
museicon
Mike Bonfiglio
Rami Awad
EnergyCrush
Julie Lerman
Gerry Whitworth
Bryan C. Smith
Yseesee
AldoDey
Sukirman_J
David Gustafson
Johan Traa
Gabest
Orkoon
kawano1h
Tanya Radeva
Bob N
ManServ
jpjljr77
Only Title

IndustrialRezn6's Q&A profile

  • Visual Studio Update Assembly Version without modifying assemblyInfo.cs

    hi there, is it possible to update assembly version numbers without modifying assemblyinfo.cs, can anyone help The only way to embed version numbers into assemblies is to specify the special attributes (that go into the AssemblyInfo.cs file).  These don't necessarily have to be in that particular file - any source file will do. Other than that, I do not believe there is any other way to version assemblies.  What issues are you facing with the use of these attributes and/or AssemblyInfo.cs file Faisal Mohamood Program Manager - MSBuild ...Show All

  • Smart Device Development ARM Processor - Is that all that WinCE/Pocket PC Will Use Moving Forward

    I've heard that thats all that will be used moving forward.  When did the move away from other processors such as MIPS etc happen, and why did it happen etc. I'm writing some native code and I'm thinking I can just compile this for the ARM processor and might be able to get away with this. Thoughts All Windows Mobile devices are ARM based since PPC 2002. Custom CE devices are not moving away from other processors and can be ARMV4I, x86, MIPS II, MIPS IV and SH4 for CE 5.0. If your application is just for Windows Mobile, then ARM only should do.   ...Show All

  • .NET Development Beta 2 support for Avalon and Indigo

    The March CTP of WinFX requires the Feb CTP of Visual Studio. When will a Beta 2 supported release of Avalon and Indigo be available You can now download the Beta 1 RC version of the Avalon and Indigo runtimes which are compatible with VS 2005 Beta 2. Check it out here:  http://www.microsoft.com/downloads/details.aspx familyid=b789bc8d-4f25-4823-b6aa-c5edf432d0c1&displaylang=en Lori Pearce Longhorn SDK Team ...Show All

  • SQL Server Snapshotting AS Cube

    I am currently working on a financial model that has both actual figures and budget.  Actual data is stored in the fact table where as most of the budget figures are MDX calculations.  Once a year I would like to snapshot the current year and store it.  What would the best solution be   Taking into consideration the results from MDX calculations for Budget would need to be stored in the fact when the snapshot is taken.  Any help would be appreciated... Another option: If you use a traditional star schema with data coming in from an ERP system, you could just snapshot the relational tables. SQL Server 2005 has&nb ...Show All

  • Visual Studio Team System Warning CA1822 : Microsoft.Performance :

    The Error: Warning 1 CA1822 : Microsoft.Performance : The 'this' parameter (or 'Me' in VB) of ActivateFormClass.CheckActiveMidChild(Form):Void is never used. Mark the member as static (or Shared in VB) or use 'this'/'Me' in the method body or at least one property accessor, if appropriate. C:\Documents and Settings\joe\My Documents\Visual Studio 2005\Projects\BMC_2005\BMC_2005\Components\ActivateFormClass.vb 15 Bmc2006 The Code: 'Check to see if form is open already if so bring it to the front *** Public Sub CheckActiveMidChild( ByVal formCheck As Form) Dim frmMdiParent As Form = BMCForm ...Show All

  • Visual Studio Pending checkins window display non source controlled files

    We currently user Visual Sourcesafe to manage projects across development team and have now started to implement Visual Studio 2005 and are looking to take advantage of the Source safe integration, specificaly the Pending Checkins window which could be extremly usefull to us. However, I am experiencing one problem. We don't always add all the folders / files within a website to source control, one example of why could be because within the route web folder there is an uploads folder where the client can upload images / documents through their CMS and display these on the web itself. Obvioulsy if this folder was included in sourcesafe they ...Show All

  • Visual Basic Loading All Xmls in a Directory

    What string would I use as the file path so their names could be different. Or if you know any other way please help. Thanks System.IO.Directory.EnumerateFiles ( from memory ) will let you discover the xml files, then you can do whatever you like with them. ...Show All

  • Visual Studio Team System send email when bug is open

    Hi, Is it possible to set up a rule that will automatically send email whenever a bug is open (to the assigned to person) Thanks, Michael You are going to want to look into the BisSubscribe.exe application. It is used for managing subscriptions. It is part of the Visual Studio 2005 SDK ( http://affiliate.vsipmembers.com/affiliate/downloadfiles.aspx ). You will have to sign-up to download it. You will also want to get this tool ( http://blogs.msdn.com/narend/archive/2006/07/26/679440.aspx ) to help create filter expressions for BisSubscribe.exe. - Steve ...Show All

  • .NET Development Developing a n-tier object oriented application

    I want to develop an web application in VS.Net 2005 that is n-tiered and object oriented, but I have questions about what resources I can or I must use. So I'm searching for code samples of applications like this, and if its possible, with a tutorial. If somebody has this kind of material, please send me. And, how can I implement a class that will have a collection of items that is from another class I also need material about MS Visio and UML. That's what I'm doing. I've been collecting a bunch of material about this. Now I have to read read read read...... :D ...Show All

  • Visual Studio 2008 (Pre-release) Why will LINQ fail ?

    Microsoft tries to helping object developers to close the gap between the relational world and the object world.And they call this " object modelling approach " Dlinq. Using " custom business entities " in enterprise programming with Dlinq might seem the best thing after " sliced bread " but it isn't. For my part I have written my Mappers and used commercial OR/M tools. They mostly provide the same thing. __Read the table from the database. ___Put that into a some HELPER thing.( DAO,DAL,ORM) ____Put that into your custom business object _____Read from your business object.(if u can :) ) I see NO REASON for this " Unnecessary Pull ...Show All

  • Visual Studio Express Editions disk failure causing install problems

    Hi, I had several VS express products installed on a second hard drive. The drive failed and I had to replace it, the trouble is that now I want to install the beta2 products I can't because the installer says that I still have the pre-beta2 products. I have uninstalled everything I can according to the instructions but I can't make the installer see that I haven't got the pre-beta products anymore. Can anyone help thanks ...Show All

  • Visual C++ Structure member definition not recognized

    Hi, I have the following structures: struct ObjCol { char szColName[64]; // column name ColType colType; // type of data ulong ulSize; // size }; typedef enum { TYPE_INTEGER, TYPE_STRING, TYPE_BOOL, TYPE_RAW, TYPE_EXT_TIME, TYPE_EXT_DATE, TYPE_EXT_TIMESTAMP, TYPE_CONV_UL_TIME, TYPE_CONV_UL_DATE, TYPE_CONV_UL_TIMESTAMP } ColType; and I call a method which initializes the ObjCol structure. I call it from MC++ project and from a C++ project. The problem, however, is that when calling it from MC++ the colType member is undefined, at least this is what the debug think, but I looked in memory where the pointer t ...Show All

  • Visual Studio VS 2005 he&&

    Hello All, Hopefully someone can steer me in the right direction:) I have installed VS 2005 with success. After about a week of using it I had issues with the IDE not accepting certain key input (eg. arrows and enter). After a few days of mucking around and searching on forums I found an answer that worked. Now, I get 'Package Load Failure" error messages. I once again browsed the forums for answers. I had tried to reinstall then uninstall and install, nothing worked. I now don't have it installed and can't reinstall it. The reinstall fails. Any ideas on how I can manually get rid of all VS2005 and component entries so nothing is se ...Show All

  • Visual Studio Team System Why there is a fork icon in my report folder?

    Hi all, I have a test project and I am the one to create the team project and the test project. In the Team Explorer, I find that there is a fork icon on the Report folder, and I cannot use the Report functions. What's wrong How to solve it Thanks, Leon Could you confirm that this is TFS RTM Are you accessing TFS within the network or over the internet Are other users able to see the reports Can you see your reports when you go to http://<ApplicationTier>/reports/ProjectName Thanks, Othmane ...Show All

  • SQL Server Uninstallation problem of Beta VS2005 MSDN and SQL 2005

    Problem 1 > Manual uninstalltion of Beta VS MSDN 2005 . Throwing error ... Unable to install (Internal fault occured) Problem 2 > Uninstallation using Microsoft uninstller of Beta (VS, SQL etc) Throwing error ... "MS SQL Server 2005 Ex CTP The set up ha sencountered an error in datsource Error in installds XMLrw error : failure looking xmlrw.dll. check procedure () return 2" What you can do is as follows. 1. Uninstall any visible SQL 2005 CTP and VS2005 Beta components. 2. Use sc command to kill any SQL 2005 CTP services including SQL, OLAP, RS, AGE ...Show All

©2008 Software Development Network