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

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

MavecO

Member List

Birk
Gosatu
folsomfisher
EP User
Cédric RICARD
Mike Wachal - MSFT
Julius1966
Srikanth Remani
Janice_777
David Frankenbach
Rocco Mastrangelo
cbnicholson
bchadraa MSFT
Allen Jensen
rebeccat
Devendersys
terr
AnimalHomeMaster
mango_123
Hiralshah
Only Title

MavecO's Q&A profile

  • .NET Development Why develop in 64Bit

    Hi! > I have a kind of naive question. I now have the ability to develop on > XP X64 (i.e. Windows X64, VS 2005, AMD64) but if I'm writing a fully > managed app in C# why should I bother using Windows X64 Do I get any > advantage in doing it this way, I mean a managed app written on a > 32bit OS is the same as one written on a 64bit OS isn't it If you do no interop, then managed apps are executed on the native CLR. So it does not matter to you. It will be executed on x64... -- Greetings Jochen My blog about Win32 and .NET http://blog.kalmbachnet.de/ Additionally, if you are de ...Show All

  • Visual C++ Win32 under DLLs?

    I'm fairly new to DLL building and have what I'm sure is a dumb question, but I can't seem to find a solution anywhere: I've dynamically linked to the DLL, the test calling program has no complaints and both tester and DLL compile cleanly. However, as soon as I hit a Win32 call in the DLL the program GPFs. It doesn't seem to matter which Win32 function I call - the call itself is resolving to an access violation. I've looked at the addresses called, and they point into empty heap. Somehow all my Win32 functions are being lost. Does anyone know how this could happen Entomophobic wrote: I'm fa ...Show All

  • Visual Studio Express Editions Bug report: Erroneous Filename in save or load dialogue field causes crash

    Visual C# 2005 Express Edition Beta 2 When I typed *.sav in the filename field of the standard load file dialogue component, Visual C# immediately hang and I had to restart it. Regards,   Guido Guido - Could you open a bug report about this at http://lab.msdn.microsoft.com/productfeedback   Any information abotu exactly what steps you took, whether you can consistently reproduce this, and which dialog in particular you were using would be very helpful. Thanks, Luke Hoban Visual C# IDE Program Manager  ...Show All

  • Visual C# What benefits do XML documentation comments offer?

    I am developing a couple of small apps for a client, and I am considering ways to document the code. If I use XML comments, I understand that a 3rd party utility is necessary to view the raw XML in a pleasing style. Unfortunately, I'm not using such a utility while developing these apps. It may be that I'm getting crotchety as I age (oh, I hope not), but I find raw XML comments harder to read than the well-formatted C++ comments to which I am accustomed. Without a 3rd party utility, are there still benefits to using XML comments vs. non-XML comments Thank you for your suggestions. To clarify: If I we ...Show All

  • SQL Server how to synchronize between sql mobile 2005 & sql 2000?

    Hi, I need to synchronize a sql mobile database & sql 2000 database. Someone knows how can I export a SQL 2000 db to SQL mobile 2005 (.sdf) Cesar! Please see topic " Managing Connectivity (SQL Server Mobile) " at http://msdn2.microsoft.com/en-us/library/ms171801(en-US,SQL.90).aspx .   ...Show All

  • .NET Development Importing Encrypted Web Data to Local Database

    This is completely outside anything I've ever worked with, so please excuse me if this isn't the right forum for this question: Our company uses an encrypt/decrypt component on its website that functions perfectly provided you only use it AT the website. I've been asked to link an Access 2000 backend to the web data, so I need to be able to decrypt the encrypted strings in-house and haven't the first idea of how to accomplish it. The component is called DyncuEncrypt ( www.dynu.com ) and they offer this code on their site: Set oEncryptor = Createobject("Dynu.Encrypt") Dim sEncrypted, sDecrypted As String REM Encrypt t ...Show All

  • Visual Studio Tools for Office Big Trouble with Encrypted Emails in VSTO 2005

    HI, How can I work with encrypted e-mails in VSTO when I try to get email object from MAPI folder I get this: "Unable to cast COM object of type 'Microsoft.Office.Interop.Outlook.ItemsClass' to interface type 'Microsoft.Office.Interop.Outlook.MailItem'. This operation failed because the QueryInterface call on the COM component for the interface with IID" I installed encrypted certificate into OUTLOOK and can open and see these e-mails in outlook but can not do it from my program! I tried to save e-mails and after deincrypt them using System.Security.Cryptography library but I can not get object !!!! PLEASE HELP !!! &nbs ...Show All

  • Visual Basic How does VB compare to C# part 2

    I am sorry but my question was NOT answered at least not technically. But, what is clear is that there is a lot of strong feeling against VB's syntax that does not exist against C#. Several post indicated that they would not hire a VB programmer unless they programmed in C# syntax. I really find that disappointing. I thought the purpose of the framework having several syntaxes was to promote choice for the developer and make that choice seamless to the end user. But I am not certain MS is committed to that point. Several conferences that I have been too, the audiences has shouted down examples in VB and insisted they be presented in C ...Show All

  • Visual Studio Error: "data\rights.dat is already open"

    Hi, I've just installed Visual SourceSafe 2005 on a Windows XP Professional SP2 machine. I'm not sure right off the bat if that's the problem because scouring the web, I've not found any location that lists the system requirements for this software. In fact I can't even find the official Microsoft Page for this program! Is MS downplaying its existence to get people to migrate to TFS Anyway, after creating the SS database, I tried to add a project to the source control on my laptop through the LAN (also running xp pro SP2), but when I try to connect, I get the error "File C:\Documents and Settings\<username>\My Documents\Vis ...Show All

  • SQL Server Slow performance calculated members

    Hi, when i'm querying using a calculated member that contains children or descendants, it takes a lot of time and in many cases i get a time out. I'm using proclarity as a front end for the queries. .. at the beginning when i am the all level of the dimensions it is fast, then when i start drilling down it gets slower until it blocks..and i need to restart the SQL AS service for it to work again. below is the calculation.. please check if it is wrong or if it could be done in a better way...(i tried descendant and it took also a long time) are there any settings that i should do to the sql server 2005 or the analysis server or the serv ...Show All

  • Windows Forms HOWTO avoid that the IDE place the propertys ordered alphabetically ?

    Hello, I'm a having a issue with my custom control, because the IDE place the attributes in alphabetical order in the code (when the user place the control in a form). e...g... : if you control have three properties (Buttons, Captions y ValuesToReturn), the IDE place the attributes in this order: mycontrol.Buttons = 2; mycontrol.Captions = "YN"; mycontrol.ValuesToReturn ="10"; I need that the properties become placed like this: mycontrol.ValuesToReturn ="10"; mycontrol.Captions = "YN"; mycontrol.Buttons = 2; I need that the ValuesToReturn property become the first property that the IDE set, because its value is use ...Show All

  • Visual Studio Express Editions problem with partial class

    I have a partial class implemented in two different files. The problem I am facing is that, while I am debugging, the control goes into the other class but it does not execute rest of the code in it. Both these implementations are part of same dll and they are with in same namespace. Any help will be highly appreciated Thanks raindrops123 I have a file say file one which has code something like this public sealed partial class TestPartialClass : TestClass { // member vaariables private long itemId = 0; private string itemPathName = null; public long ItemId { ...Show All

  • Visual Studio How to determine the type of build being executed in the BuildEvents_OnBuildProjConfigBegin handler.

    I am writing a macro that I want to execute when the user choses any Build command, except for any of the Build.Clean... commands. My question is how to determine what Build command the user has chosen within the BuildEvents_OnBuildProjConfigBegin handler I am using Visual Studio 2005. Thanks in advance, Jim PS> I tried catching the CommandEvents_BeforeExecute event. But, for whatever reason, the event is not being called.      Connecting to command events is the best method, and it should work. Some of the common causes of this type of problem with events is that ...Show All

  • Visual Basic Combo boxes in datagrid view give errors when closing form (VB 2005/.net2/sql 2005)

    Hi, Althiough an experienced programmer (20+ years) this is the first time in 10 years that I've had to use VB so apologies if obvious answer. I'm using a combo box inside a datagridview. The combo works correctly pulling data from lookup table and placing it in the grid table. I can save the data okay. I can exit the application fine, but if I try and close the form either programatically or using the close button on the form I get an error that the values in the combo box are invalid. This occurs after the FormClosing event is fired. Anyone else seeing this or know of a workaround. It didn't occur in the VS 2005 CTP but does in the ...Show All

  • Visual Studio Express Editions Variables values

    How can i see the variable values while program is running cool, i've solved the error problem and in this project the breakpoints worked well and i can use the watch window. i just dont understand why it dont work in the other project thank you cgraus! ...Show All

©2008 Software Development Network