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

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

shron

Member List

Vachan
Alemus
atif ahmed
Codecredible
MuratCapanoglu
Johnathan Seal
jackycn
Jagadesh
Dolphins
Abhishek Arya
sgcuda
floodzhu
mrmrcoleman
Bunchito
Noizu
Sumit Debnath
tvadnais
hostile1
Marco Russo
kanuhelp
Only Title

shron's Q&A profile

  • 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 C# Create a snap-in using VisualStudio 2003 C#

    Hi I have to create a snap-in(for a MMC). I'm trying to do that using VS2003, C#. The .NET framework version is 1.1 I searched for information and I found a basic sample at the following link:http://windowssdk.msdn.microsoft.com/library/default.asp url=/library/ en-us/managedmmc/html/56f458d3-5c65-4664-8107-2ba04efd7d65.asp I tried to compile the code, but I got an error message "The type or namespace name 'ManagementConsole' does not exist ". So, I succesfully installed the MMC 3.0 version for XP(with SP2). I also found the microsoft.managementconsole.dll file(C:\Windows\system32\) and I tried to add a reference to it in ...Show All

  • .NET Development Is XP SP2 mandatory to run a .NET Framework 2.0 app?

    Hello, I noticed that when I tried to install .NET Framework 2.0 Beta , Win XP SP2 should be installed in order to continue! Will it be also required on the final release of the .NET Framework 2.0 Thanks. http://www.microsoft.com/downloads/details.aspx FamilyID=7abd8c8f-287e-4c7e-9a4a-a4ecff40fc8e&displaylang=en You will need the redist from at least the version it was developed on (an app developed in 2.0 requires it.)  I'm not sure the redist requires SP2 though, doesn't look like it at the page above ...Show All

  • .NET Development How to create intellisense

    Hi Does anyone know how to actually create Intellisense MY eventual goal is to make a SQL Intellisense. I know there are a couple out there but the real joy is making one by myself. From google, i could figure out about something to do with system level keystroke hooks. any guidance is appreciated. Murad Do you want to add Intellisense support to Visual Studio for SQL Files Or do you want to create your own editor component that can be used in other applications that provides this ...Show All

  • Visual Studio Team System TFS Warehouse errors

    The trials with Beta 3 are still going well, but I've spotted the following in the Application Log. Apart from watching TFS Version Control, TFS Services, TFS Warehouse and TFS WorkItem Tracking stopping and starting themselves, we've been getting hourly errors. It has settled down now to be: ERROR MSSQLServerOLAPService : Event 3 : OLE DB error: OLE DB or ODBC error: The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value.; 22007. WARNING TFS Warehouse : Event 3000 : An unexpected condition has occurred in a Team Foundation component (etc.) Process Details: Process Name: w3wp P ...Show All

  • Windows Forms PocketTaskVision in VB.NET?

    Will there be the sample PocketTaskVision also available in VB.NET Thanks Michael Update on PocketTaskVision for VB .net Andrew ...Show All

  • .NET Development web service does not work on webserver only on local box!

    Hi there. Interesting thing I just found. I made a webservice which updates my app on request. This is the way it works, simple pseudo: [webservice] Recieves incoming versioning compares with server files if server file versioning > incoming versioning    send the file name end if [client] if filename != null    create the file    request file size from webservice [webservice] recieves incoming request for update file size sends update file size in byte[] [client] creates byte[] of size of file in byte[] sent by server thats just a quick psuedo of what is happening My app consists of 2 apps: Server (runs on ...Show All

  • Visual C# copying the file from one machine to another

    Hi there Please tell me how to copy a file from one machine to other connected by the LAN through asp.net using C# If you are using the default settings then the user that your asp.net code is running under does not have the rights to access shares on the network.  You'll need to make your asp.net run using a user that has the appropriate permissions. http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpguide/html/cpconaspnetimpersonation.asp ...Show All

  • Visual Studio Team System File locked by another programmer

    I have a project that has a file locked by another programmer that is no longer working with me and I can't get him to check the file back in.  How do I (as an adiministrator) remove the lock from TFS source control Please add your thoughts to the following blog post.  The tfpt features are certainly high on the list for a VS power toy. http://blogs.msdn.com/buckh/archive/2005/11/16/493736.aspx Buck ...Show All

  • Visual Studio how can i get the latest version by command line ?

    Hi, I need to get the latest version of my project by command line , i checked the VSS 2005 help i didn't find any real example. Please can u give me an example (with recursive option) Thanks, Tarek Ghazali SQL Server MVP Thanks for the info. This is pretty much the answer I thought I'd receive, despite what my hopes would be. Didn't think about using the Share command in VSS to create links to individual projects in the solution's VSS directory. Would that allow me to retrieve one project and get the appropriate sub-directories using both the ss command and VS.NET If not, looks like I'll ha ...Show All

  • SQL Server full-text indexing failed

    I have been trying to set up full-text indexing. All the CONTAINS searches, however, always returns 0 row. It seems the index is always empty. Could you please help figure it out Here is how I created the full-text catalog and index: CREATE FULLTEXT CATALOG ft_catalog AS DEFAULT; CREATE FULLTEXT INDEX kb(title, body) KEY INDEX PK_kb WITH CHANGE_TRACKING AUTO; Then from the full-text crawl log, I found 2006-05-06 10:59:15.14 spid15s Error '0x80040e09' occurred during full-text index population for table or indexed view '[dbs].[abc].[kb]' (table or indexed view ID '2073058421', database ID '5'), full-text key value 0x00000007. ...Show All

  • Visual C++ Static const C++/CLI class members

    Static const C++/CLI class members can be changed from C# client: public ref class Server { public: static const int someValue = 25; }; C# client code: Server.someValue = 50; // successfully compiled How can I prevent this Looks like a C# bug to me. It's ignoring the IsConst modopt. One reason they overlooked this may be because C# does not support static const members. ...Show All

  • .NET Development Compile error if I take back up while migrating from VS 2003 to VS 2005

    Have my web application...Install it using the .msi When I try to open the project(.csproj/.vbproj) Get the message box asking for conversion from VS2003 to VS 2005. Follow the steps..... you reach a screen which says "do wish to take back up (Yes or No)" If I select YES and once the code has finished conversion, I try to compile the same.. I am not able to do so as it gives following error message: " It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level.  This error can be caused by a virtual directory not being configured as an application in IIS. " I have configured the vi ...Show All

  • Visual Studio Tools for Office Made a mistake...unable to uninstall!

    When I was trying to find a right SolutionCodeGroupName, I forgot to change it into the right UninstallCutomActionData... So, I've been able to install it (I found the error, there was a space missing)...but I cannot uninstall it, even using the Add/Remove program of the Control Panel... What can I do I tried however to develop it again, using another name...it gets installed, but it gets an error on runtime so the AddIn isn't loaded! But, when I tested the adding using VS it worked perfectly... What can I do in order to find why it doesn't get loaded Bye LastHope Yes, it did help indeed ...but I'm forced now to open a new topic Stil ...Show All

  • Visual Studio Tools for Office VSTO Word Template

    G’day. I have a VSTO 2005 project which fires some code on DocumentClose. I have followed the guidelines and installed to shared network folder and it runs fine - if and only if I dbl-click the template in Explorer. If I call the document from my Application using Interop calls the code behind doesn’t fire when run on the network share. If I run it from my development machine but have the Word Template in another directory it doesn't work, but after I used caspol to grant full trust to the folder it does work. Still cant get it to run on the Netwrok Share... It must be some kind of security issue, but I can’t figur ...Show All

©2008 Software Development Network