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

Software Development Network >> K.Murugan's Q&A profile

K.Murugan

Member List

Khookie1982
Paritosh Mhaisekar
wildlife
billqu
Andy Lindley
sgcuda
R_Houtman
Caleb T - MSFT
gcs_78
suryavbnet2005
Awsok
AmR EiSa
Madcoder
Mister_B
e-u-l-o-g-y
zelda
c#re_eye
Kutta Srinivasan
fourmi
totalidea
Only Title

K.Murugan's Q&A profile

  • .NET Development Unable to connect to Access database

    Hi, I just installed VS 2005 team suite and was unable to access the Northwind database through add a connection wizard. The message I got when attempting to connect to it through Jet or ODBC was Unable to add data connection. Could not load type Microsoft.VisualStudio.Shell.InterOp.IVsProjectDataConnection from assembly MicrosoftVisualStudio.Shell.Interop.8.0, Version=8.0.0.0, culture=neutral, PublicKeyToken= etc.' I did not set up admin rights ...Show All

  • .NET Development Relationship and Datagrid get renamed deleted when I load a saved project

    Ok this is wierd. I've created a form added all the controls for the header data, then added a datagrid for the details. This was done using the datasource wizards. Everything was working. The relationship between the tables was fine, I could add delete, edit records. Last night I saved my project. Due to losing a complete project a day ago for no reason, I even copied my project locally on my desktop to make sure it would not be deleted. This ...Show All

  • Visual C++ Watchdog Timer

    Hi Everyone, Are there any accurate timers in Windows that can be used like a Watchdog timer What is the closest to it Is there a type of timer in windows (besides SetTimer and KillTimer) that will call a function after a time expires Thanks, Jason SetTimer can also take a function parameter. Just read the docs. Still SetTimer needs a message loop, and without running MessageLoop no WM_TIMER or TimerProc is executed. Otherwise you ...Show All

  • Visual Basic Little bit of help, would appreciate it thanks.

    Hello all, I am currently in School for a Network Admin Degree, but i am also taking up .Net developing. I am currently doing Visual Basic.NET. My assignment is to make a form that goes to another form and in the second form there are 3 fields ( UserID, First Name, and Date) then there are 2 buttons; Validate and Exit. The purpose of this form is when you click validate for the form to validate that the 3 fields have the correct information in t ...Show All

  • Visual Studio Express Editions set up help, PLEASE

    OK, two questions: 1. Is there a "getting started" guide that shows how to start a project WITHOUT the dotNET dependency It seems as though the IDE wants to default to .NET I followed this: http://lab.msdn.microsoft.com/express/visualc/usingpsdk/default.aspx where it describes setting up the PlatformSDK. I followed it to a "T", and the part where it says: "From the File menu, click New Project. In the New Project dialog box, ex ...Show All

  • Visual Studio Error. Failed to load expression host assembly. Trying to use local report manually copied to mapi dir (VSTO project)

    You may see from earlier posts that I'm having difficulty deploying report solutions (VS2005 B2) and VSTO. My VSTO app opens a winform report viewer.  Even very basic reports (no data) fail. My last attempt was to use the report path option.  The first error said the report def was not found in the dir 'C:\Program Files\Common Files\System\MSMAPI\1033', so I manually copied the rdlc file there.  Now I get another error "Proce ...Show All

  • SQL Server FREETEXTTABLE

    Hi.. I have used Full-Text Search in a stored procedure with English words whithout any problems..But when i use it with Arabic words it gives me THE Error: Server: Msg 7619, Level 16, State 1, Procedure SearchProject, Line 19 Execution of a full-text operation failed. A clause of the query contained only ignored words. The stored procedure : CREATE PROCEDURE SearchProject ( @SearchString nvarchar(500), @CultureName nvarchar(50), @H ...Show All

  • Visual Studio 2008 (Pre-release) New channel/client event

    Hi Is there an event I can subscribe to in the servicehost which will notify me on new incoming connection OperationContext .Channel.Opening or Opened should do the trick. Thanks, Scott ...Show All

  • Visual Studio Team System rsRenderingExtensionNotFound - An attempt has been made to use a rendering extension that is not registered for this report serv

    MS Staff, We've succesfully created our first Team Project, but a few of the portal's web parts (Builds, Quality indicators, etc.) are coming up with the error: "An attempt has been made to use a rendering extension that is not registered for this report server. (rsRenderingExtensionNotFound) " Any guidance on where to hunt down a resolution to this error Thanks, Tony Bierman HNI Corporation We're having the sa ...Show All

  • Visual Studio Team System Build Error

    I keep getting this error when I try to build any of the projects under my Team build folder: The build service could not validate the caller.  Please ensure that the network connection between Build machine and Team foundation server is proper, and the caller is valid. Other people can build the same project on their machine.  Any help would be appreciated. Thanks, Anna got same problem with VS2005 T ...Show All

  • Visual Studio Team System Fail Team Project creation

    After installing TFS Beta 3, everything seems ok. Can connect to it, manage it, etc. However I cannot create projects sucessfully. When I try to I get this (excerpt from log): Event Description: TF30162: Task "SharePointPortal" from Group "Portal" failed Exception Type: Microsoft.TeamFoundation.Client.PcwException Exception Message: Unable to connect to the Windows SharePoint Services at TEAMSYS1 Exception Details: The Project Creation Wizard w ...Show All

  • .NET Development Is WS-ReliableMessaging implemented in .NET 2.0?

    Hi, Can I download the extention or source code for WS-ReliableMessaging Thank you, Alan Thank you Vikram. Your post really helped me. Regards, Alan ...Show All

  • SQL Server No duplicates exist but get Msg 2627, Cannot insert duplicate key in object

    On SQL Server 2000, a transaction of thousands of INSERTs contains these three consecutive INSERT statements: INSERT INTO PARAMETER_ATTRIBUTES ( ID , MIN_VALUE , MAX_VALUE ) VALUES ( '05b3b88a-f0f2-4e7e-a82f-73a7bd177a96' , 0 , 1 ) INSERT INTO PARAMETER_ATTRIBUTES ( ID , MIN_VALUE , MAX_VALUE ) VALUES ( '05e51bee-ac3b-4257-90f1-f34adcb185cb' , 0 , 128 ) INSERT INTO PARAMETER_ATTRIBUTES ( ID , MIN_VALUE , MAX_VALUE ) VA ...Show All

  • Windows Forms email program - connect to server w/ uName and PW

    I have sent mail plenty of times using web forms, but this time I'm building an email app for windows. The server in question needs logging into I assume, for it to work. I can get this far... SmtpMail.SmtpServer = "smtp.isp.com"; // SmtpMail.Send(myMessage); //error here of course because I have not logged in I have searched around for a sample with no luck. Anyone have a sample to log into a server THEN send the em ...Show All

  • Visual C# How to validate correct Enum name?

    Based upon content in a code table in a database, I want generate an enumeration. However, the code table could contain names that are not valid enum names. Is there a function or a way to "convert" and check these names in order to generate a properer enumeration name. For example, the HumanResources.Department table of the AdventureWorks sample database contains "Engineering" (=ok) and "Tool Design" (=nok). ...Show All

©2008 Software Development Network

powered by phorum