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

Software Development Network >> xu.richard's Q&A profile

xu.richard

Member List

Rellik
sally8377
dejann
Ravi Sankar Samanthapudi
fee
eko007
BatchBoy
MLynch
Paytheon
BigDog99
Wayne Sepega
spectrablue
Chris Trobridge
dotnethead
moory
Ashari Imamuddin
enchiw
Constantin Crstian
Priyaranjan
Alexander N Mikhaylyukov
Only Title

xu.richard's Q&A profile

  • Visual Studio Team System Error 28100. Error Loading Event web server Team Foundation Server Trial Version

    I'm getting the above mentioned error in the final stages of the TFS install when installing on the application tier. Everything has been going ok until the last step of the application tier install. I'm doing a dual-server installation. I've doubled checked the security accounts I'm using including the local policies that should be set for each on the application server. Here is the error message in the msi log file: Failed to load EventService proxy object: Could not load file or assembly 'Microsoft.TeamFoundation.Common.Library, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. Access is ...Show All

  • Visual Studio 2008 (Pre-release) How do I Develop a WCF Service on OS WinXP SP2 with VS 2005 Installed

    Hi, I truied to develop a WCF service on Win XP SP2 with VS 2005. I had also installed the WinFX runtime prior to starting my development. Now I am stuck as I am not able to find System.ServiceModel.dll. What should I do I don't want to install Windows Vista. Is there any workaround Thanks, Akhil Hi You don't need Vista to use WinFX, windows xp is good enough. I'm unclear as to what "not able to find" means - can't you find the dll under c:\windows\winfx Or does VS complains it can't find it because it's not in the project reference If you can't find the file on your d ...Show All

  • Windows Forms Drag&Drop

    I want to Drag&Drop a picture. I want to see the picture while I'm dragging it.  So: I want to see the picture under/instead of the mouse cursor while I'm dragging it. Can you help me You should post these types of questions to the GDI+ and graphics forum. They've got the real experts over there.  This guy chris sano wrote a ...Show All

  • Smart Device Development program crash for unknown reason - help!!

    Hi! i created a vb app with a C++ dll and made no changes to the dll but added another form to the vb app. the form does nothing except display a few images and text (a temporary help file). the application itself is a recorder and player that has been working for some time now. after adding the 4th form and deploying to the device, my recorder caused the app to hang and my player caused it to crash. this never happened before and i didnt make any corrections in the code. the 4th form is working fine. I also tried running the previous version of the form (the one without the temporary help file), which had been operating successfully before. ...Show All

  • Visual Studio 2008 (Pre-release) IQueryable with out GetEnumerator (foreach)

    Can I move manually through the IQueryable collection with out using GetEnumerator (foreach) I mean: I have this query IQueryable < Person > q = from c in db. Person select c; and now I want to work with the Person Objects which I get from the query but without using GetEnumerator (foreach) Can I move separately through the IQueryable collection IQueryable is not a collection, it is a query.  Think of it as a description of what you want done when you call GetEnumerator().  Like Jacob mentioned above, if what you wan ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Updating textures with SetRenderTarget

    I'm working on the terrain rendering technique which involves displacement mapping. I have a couple of textures that are, logically, the mip-map of the terrain. Now, I have to update them all, from the biggest to the smallest, and to do so I do the following: device->GetRenderTarget(0, &oldRT); device->GetDepthStencilSurface(&oldDSS); device->BeginScene(); for (i = 0; i < levels - 1; i++) { // // Set the current texture as displacement map device->SetTexture(D3DVERTEXSAMPLER0, level .displacement); // // Set the next texture as render target and the depth surface as NULL device->SetRenderTarget(0, level[i + 1].disp ...Show All

  • Visual Studio Express Editions Upgrade Visual Basic 6.0 to VB 2005

    How to upgrade from visual Basic 6.0 to 2005 Hi Revoldo, There are a bunch of resources out there that describe upgrading from VB 6 to VB.NET  2005. Here are some links that should help: http://msdn.microsoft.com/VBRun/default.aspx pull=/library/en-us/dnpag2/html/VB6ToVBNetUpgrade.asp And there is even a code advisor that helps with the migration: http://msdn.microsoft.com/vbasic/previous/2003/downloads/CodeAdvisor/ I don't know if it exists in Visual Studio Express but in Visual Studio Team Edition there is a Upgrade Visual Basic 6 code menu item that can be found from within Visual Studio 2005 under the to ...Show All

  • Visual C# How to write a function that will return the number of days in a month (not using System.DateTime)

    Please help me with the question Regards, Vinoth.N An easy solution here enum Months { January, February, March, April, May, June, July, August, September, October, November, December } int NumberOfDaysInMonth(Months month, int year) { int days = 0; bool IsLeap = false; IsLeap = (((year % 4) == 0) && ((year % 100) != 0) || ((year % 400) == 0)); switch(month) { January: days = 31; break; February: if(IsLeap) {days = 29;} else {days = 28;} break; March: days = 31; break; April: days = 30; break; May: ...Show All

  • Visual Basic filter a stirng

    hi !! i wish someone can help!!! i have string that i receive as returend value.....something like that ID: f002107a8af2b525e7765ece To: 447949606666 ID: 9e821d477915fe5d7a10c5c To: 447949606663 i want to filter this string so i do not need ID: and the To: because i need to save these values in database so basically .... each ID: followed by a number To:  belongs to one data entry ....... Can you help me please how to write this !!!! i appreaciate your help ! thanks for your reply !!! BUT i still did not solve my problem!!! i will give you example it might be that i did not make it enough well ot understand ..... i do apologyse ...Show All

  • Windows Forms Setup Error - Failed to load resources from resource file.

    I am getting following error at random places in my application. "Setup error - Failed to load resources from resource file. Please check your Setup" Application closes if I click on OK button on the message box. Also, it does not happen on development machine, it only happens on client PCs. The client PCs has .NET Framework 1.1 Please help me. If you have a solution or recommendation then please reply. Regards, bmgohil Same problem here. We are not using any third-party application software, its our own application which is causing the error (ok, we are third-party then... ;)). The application in written ...Show All

  • Visual J# Problem with subclassing a form AND J# interface in C# 2.0

    I have an existing application that declares a class that derives from System.Windows.Forms.Form and an interface. This compiled and worked correctly in 1.1 but an error is reported during in C# 2.0 "IRecitalMirageForm - type is not supported by the language". The interface is written in J#. public class Form1 : System.Windows.Forms. Form , IRecitalMirageForm Is there any workaround for this behavior This is a difference between 2.0 and 1.1 In 1.1 you could define interfaces which have fields in them. This compiles ok using j#, however c# fails to compile when an interface is used that has been c ...Show All

  • Windows Forms Results do not display in List Box

    I am using Visual C#.Net version 2003.  A Form is created with a List Box, List View and a button to populate the lists.  Clicking the button should produce the output in both lists.  After clicking the button the text does not display in the List Box but will display in List View.  This works fine on PCs that Visual Studio.Net was installed prior to XP SP2 - it displays in both lists.  On PCs where Visual Studio.Net was installed after XP SP2 I have the problem.  Any ideas   Thanks Sample Code: using System; using System.Drawing; using System.Collections; using System.ComponentModel; ...Show All

  • SQL Server Problem Installing SQL Mobile 2005 Tools

    I'm trying to install the SQL Mobile 2005 Server tools on a Windows 2003 Server with IIS & MSSQL 2000 sp4. I've stuck .NET 2.0 on already, but the installer for the server tools Sqlce30setupen.msi just goes straight to the last page of the wizard and says the install was interrupted. I've run the install with logging turned on and this is the last portion of the trace. Can anyone shed any light on whats going wrong. -------------------------------><------------------------------------- MSI (c) (9C:14) [14:12:35:912]: Doing action: FindRelatedProducts Action start 14:12:35: FindRelatedProducts. Action ended 14:1 ...Show All

  • Visual Studio Tools for Office Shared COM Addin with VS2005TO

    Is it possible to create een COM Add-in with Visual Studio 2005 Tools for Office. Or do I need Visual Studio 2005 Proffessional for this (I am currently working with VB6 and use the project type Addin.) This COM Add-in must also work with Excel 2002. Gr. Arie       Thanks for the response. Is this projecttype available in Visual Studio 2005 Tools for Office Or just in Visual Studio 2005 Professional ...Show All

  • Visual Studio Random behaviour with ITaskItem[]

    I have a target that I pass an ItemGroup to. I then call a task that takes this ItemGroup as a parameter and a ITaskItem as another parameter. Sometimes, if I pass an ITaskItem[] to the ITaskItem parameter, MSBuild is clever enough to realise that I want the task called once for each item in the ItemGroup. Most of the time, however, I get this error: Multiple items cannot be passed into a parameter of type "Microsoft.Build.Framework.ITaskItem" Anyone any ideas why this behaviour would be so random Okay, it appears to be related to transforms and the Outputs parameter. If I specify ...Show All

©2008 Software Development Network