Software Development Network Logo
  • Visual C++
  • Visual C#
  • Microsoft ISV
  • Visual FoxPro
  • Windows Vista
  • .NET Development
  • Visual Studio
  • Visual Basic
  • IE Development
  • VS Team System
  • SQL Server
  • Smart Devicet
  • Windows Forms
  • SharePoint Products
  • Game Technologies

Software Development Network >> SN Ngaihte's Q&A profile

SN Ngaihte

Member List

m0
Krutika
ktdantas
MigiTheGuru
Frank Flack
wendling lionel
techbd
Dottj
rebeccat
tr_sreedhar
ps0118mj
Jennifer Three
R_Vogel
Gulden
simon_
Morten Dahl
xion.truth
Mehmet Metin Altuntas
SashaBr
Sunset
Only Title

SN Ngaihte's Q&A profile

  • SharePoint Products and Technologies Can you use Active Directory Manager data in workflow?

    I can’t seem to find a way to automatically rout a workflow task to a user’s manager using the person’s "manager" value from Active Directory. This seems like such a basic task, but I don’t see any option for it in the workflow roles available in SharePoint or SharePoint Designer. Has anyone had luck with this Hi All, I'm very interested in knowing how to get the Manager from Profiles as well. It's a fundamental request from lot of customers who want to create workflows using SPD. Hope anybody knows the way. Maybe rolling up data But how to do in SPD Jens ...Show All

  • SQL Server How to get sql server name with a vb-script?

    Is there anyone who knows how to get sql server name using a vb-script I have tryed this: bKey = WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Microsoft SQL Server\Instance Names\SQL") But it cant open it for read. Someone who knows a better way Regards SW-engineer That was god arguments! This application is only installed at computers with me as admin, so I decide which instance the application should use :) So are there a way to find out the name of the instance ...Show All

  • Windows Live Developer Forums Msn Live Not Working

    My msn live is not working. I turn on my computer log on and msn live does not open at the start like it normally does. I then click to open it and nothing. But when i press Ctrl Alt Delete i click the processes tab and msnmsgr.exe is their twice since i've opened it twice end one process and still it does not work. When it decides to work i sign in but it crashes when i click on it..... Please help... I know others have had the same problem.... I've tried unistalling and reinstalling and repairing but still nothing I had the same problem and i fixed it with this: i deleted this registry key: HKEY_CURRENT_USER\Software\Microsoft\MSNMessenger, and then i installed the last msn live messenger 8.1, ...Show All

  • SQL Server Encryption - Protect from attacks by programmers?

    I can encrypt columns in sql 2005 but where do I store the key to decrypt the columns I can store the key in the database (or server on which the database resides) but I think that offers little security. I could store the key on another server that the sql server accesses only upon startup (though I don't know exactly how to do that). Or I could store the key on a removable drive that is read (and only needed) when the sql server starts up. What are your ideas on this matter TIA, barkingdog As long as the password is not hardcoded in the application, for the programmers to see, they should not be able to get it from just examining the code. What are your concerns if the user is speci ...Show All

  • Windows Forms Addon Coponent Bar

    Hi all, Was wondering if I wanted to add my own toolbar In Internet explorer for example, what way would I aproach this Many Thanks, Stuart I'd start by reading these two Code Project articles ( 1 , 2 ). #1 will tell you much about extending the Explorer shell while #2 provides some specific code and examples on how to use those methods in VB.NET to do the same to the IE shell. ...Show All

  • Visual C# WTS_CONNECTSTATE_CLASS detailed

    Sorry for the specific topic, but can anyone help me to figure out the states of Windows Terminal Server Session Actually, I can use WTSQuerySessionInformation function to find out, what happens with session at the moment. The intresting thing is about the state of connection. Here what I found in MSDN: WTSActive means "A user is logged on to the WinStation." OK, this is understood. WTSConnected means "The WinStation is connected to the client." Erm, not sure, when it happens When user is WTSActive, he IS connected anyway, you now. WTSConnectQuery means "The WinStation is in the process of connecting to the client." And when this happens WTSShadow means "The WinStation is shadowing anoth ...Show All

  • Visual C++ How can i Add Reference on Solution explorer?

    Hi All, I could add the references in c# on the solution explorer, there is available one folder like "References" but in Vc++(MFC) there is not avail that folder, then how can i add references in my project. Currently i am using Visual studio 2005. Thanx in advance I think the references known in C# have sense only for C++ projects of "CLR" types. They do not have the same meaning for "MFC" projects. Maybe you should try another kind of projects -- "CLR, Windows Forms Application" ...Show All

  • Visual Studio Team System How to restore subscription table in TfsIntegration ?

    During evaluation of TeamSystem we accidently unsubcribed ALL events from the subscription table in the TfsIntegration table. I guess we unsubcribed some mandatory TeamSystem events, like DataChangedEvent and TeamSystem will not work properly. My question is how to restore the subscription table. I know that there is a TfsReg Tool, is it possible to use this tool Thanx in advance! I solved my problem now by restoring the old SqlServer backup's.I dind't make lot of changes the last days so this was actually the best solution for me. But anyway it would be nice to have a repair or analyze tool to detect and fix bugs in the TeamSystem database (like the SourceSafe Analyze tool). ...Show All

  • Visual C++ Interlocked issues

    Hi, I'm working with Vs2003, targeting multiple platforms and processors (including multicores). I'd like to replace some of the windows' CriticalSections used in our code for something faster. As using volatile (especially with 2003) is not very thread safe (no memory barriers, etc), i went for interlocked operations. Since the code i was suppose to patch was using something that looks like while( !m_bBoolean ) ; m_bBoolean = true; // ... volatile bool m_bBoolean; I introduced a new class to only need to replace the type of the value itself: template< typename T > class VolatileType { enum { LOCKED = 1, UNLOCKED = 0 }; public: __forceinline VolatileType() : _lock(UNLOCKED) { set(0); } __forceinline VolatileType( const T ...Show All

  • SQL Server list of Databases

    hello anybody now i need to find how many Databases in my local SQL server (programatically).i know i have 8 databases is there but i need to print each and every database. can anybody help me. thanx kiran. The problem with sp_databases is that it displays the system databases, together with Northwind and Pubs. I use this to identify my databases: USE master GO SELECT name FROM sysdatabases WHERE dbid>6 ...Show All

  • SQL Server Some problem in Data Flow while upload a "||" seperated text file

    I am facing one problem with sql 2005 SSIS while uploading a "||" seperated text file with Data Flow in SSIS.Below I am giving the sample data of the text file data||data||data data||data||data When I uploaded it using sql 2000 DTS it was not giving and it was being uploaded into the table but when I tried with SQL 2005 it is giving the below problem. "[Flat File Source [1]] Error: Data conversion failed. The data conversion for column "Column 2" returned status value 4 and status text "Text was truncated or one or more characters had no match in the target code page.". " Check the field definition in the flat file connection manager, and make ...Show All

  • Visual Basic using tabcontrol's tab pages to select a specific user control from a panel collection

    If you can catch my drift in the code below, I'm trying to select tabcontrol tabs on a tabcontrol on the right side of a split container. (There is a separate tabcontrol on the left, which has tabs, whose selection will spawn a different set of tabs on the right tab control. I am having a difficult time selecting a tab on the right, and having it display the correct user control. I am using only one panel with a collection of controls, rather than a tab page for each control.( For some reason that proved to costly performance wise.)  Does anyone understand what I am 'trying' to do Thanks -greg Private Sub TabControlRight_SelectedIndexChanged1(ByVal sender As Object, ByVal e As System.EventArgs) Handles TabControlRight.SelectedIn ...Show All

  • Software Development for Windows Vista WorkflowSubscriptionService

    Dear sir please give ideas about WorkflowSubscriptionService. I am excepting some examples also. Advance thanks to all Regards vijil Bangalore Hallo Vijil, I have found a source code example that illustrates the use of the WorkflowSubscriptionService in the appendix to the following article: Author: Chris Auld Title: Simple Human Workflow This article is located at the home page of http://msdn.microsoft.com/winfx/technologies/workflow Hope that will help you, Iris ...Show All

  • SQL Server XML Error

    My app was working fine (no change in the last couple of years) until recently. Here is an example of my XML - <root xmlns:updg="urn:schemas-microsoft-com:xml-updategram"><updg:sync><updg:before><ProbePart VFPID="28724"/></updg:before><updg:after><ProbePart ReconSell="5520"/></updg:after></updg:sync></root> which results in the Response - <H3>ERROR: 400.100 Bad Request</H3><b>HResult:</b> 0x80004005<br><b>Source:</b> Microsoft SQL isapi extension<br><b>Description:</b> Query not specified<br> Not sure where to look for resolution - any pointers would be appreciate ...Show All

  • Visual Studio Express Editions Databind to a ToolStripStatusLabel

    I have a BindingSource obtained by a DataReader. How can I bind a ToolStripStatusLabel to my BindingSource Can I make a Class with a Custom ToolStripStatusLabel bavaro1, In order to bind data to the ToolStripStatusLabel control, I recommand you to choose a data source for the StatusStrip control. In StatusStrip control, there is a property called DataBindings with three options: Advanced, Tag and Text. Just choose one of them and make a data source for the control. Please make sure that your SQL Express Edition and be accessed normally. When you finish the data source for StatusStrip control, please take a look at the property Application Settings in ToolStripStatusLabel control. In PropertyBi ...Show All

©2008 Software Development Network