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

Software Development Network >> Navneet Gupta's Q&A profile

Navneet Gupta

Member List

Malmer
Palace
dematt_787
Nick Efremov
imba
Hamish_NZ
msraja
MikeT1021
i_al7
marcotoon
AlHenCoon
Andrew Tregonning
Wally Lawless
Allen Jensen
wojciu
CpnQry
Greg Motter
Rickard Magnusson
kiwilamb
Clark Snowden
Only Title

Navneet Gupta's Q&A profile

  • Visual Studio Team System Visual Studio team system as Test Case management

    Hi,     Can Visual Studio Team System be used for Test Case Management and test case scheduler, not just for unit test, but for all the test cases for the whole project for all the features/components, something like Microsoft's internal tool WTT Thanks, Anu Hi, This was a really old post. I believe your a looking for the VS 2005 SDK: http://www.microsoft.com/downloads/details.aspx FamilyID=7e0fdd66-698a-4e6a-b373- ...Show All

  • SQL Server Date matching

    I have done this twice now. I am sure I will do it again. I have a date dimension. Among other things the dimension contains columns for a meaningless id and raw date. If I want to translate a date to a the meaningless id for storage in a fact table, I use a look up component. All fine and dandy until I run the data flow and all of the look up's fail. Now what could be wrong with that I look at the redirected rows and for a split second think, ...Show All

  • Windows Forms Combobox AutoComplete

    We setup our comboboxes with the following properties: this .AutoCompleteMode = AutoCompleteMode .Append; this .AutoCompleteSource = AutoCompleteSource .ListItems; this .DropDownStyle = ComboBoxStyle .DropDownList; But we have a problem when our users type slowly. If they type "K" .... "E" the list jumps to to the K's then up to the E's. They have to type KE quickly to get to KEVIN. Is there a way to set a t ...Show All

  • Visual Studio 2008 (Pre-release) Sparkle Jan CTP available!

    Enjoy! http://www.microsoft.com/downloads/details.aspx FamilyID=ed9f5fb2-4cfc-4d2c-9af8-580d644e3d1d&DisplayLang=en BTW: it has its Forum...    Do you mean there's a Sparkle MSDN newsgroup I don't see a forum at forums.microsoft.com. I'm playing with it at the moment by the way, looks very promising :-) ...Show All

  • Visual Studio Tools for Office AdvancedSearchComplete return multiple results in Outlook Addin...

    Using VSTO in VS2005 Beta 2, I built an Outlook Addin that, among other things, creates a HashTable of unique topics from chosen folders. I've added handles to AdvancedSearchComplete and AdvancedSearchStopped to my Button_Click. On Button_Click, with every folder chosen, I iterate through the hash and, if the key matches the folder I'm looking for, I create a new search for each unique topic in that folder. Everything works well a ...Show All

  • SQL Server sql mobile question

    Hi friends, sorry for interposting but my question was left unanswered in another group. here's the question: The execution of follwing query against sql mobile DB goes fine in SQL Server Management Studio SELECT c.contactID FROM contacts c  LEFT OUTER JOIN contactNotes cn   ON cn.contactID = c.contactID but when I'm trying to execute it in Visual Studion, it transforms the query into: SELECT c.contactID FROM { oj contacts c LEFT OUTER ...Show All

  • Windows Live Developer Forums What is Windows Live Messenger?

    Today, Microsoft is announcing Windows Live.  As part of the announcement, MSN Messenger is becoming Windows Live Messenger. Check out the new MSN Space for the Windows Live Messenger team to learn more...  -Scott ...Show All

  • Visual Studio Error installing prerequisites

    Hello, I've create an installation program in VB.NET that add the following prerequisites. .NET Framework 2.0 Beta SQL Server 2005 Express Edition Beta Every computer I installed the application properly downloaded the prerequisites. However with the latest installation I receive the following message and the installation cannot continue. Setup has detected that the file 'C:\DOCUME~1\JSO1\LOCALS~1\Temp\VSD115.tmp\dotnetfx\WindowsInstaller- ...Show All

  • Visual Studio Express Editions How to use an external script in IDE

    I have many different .vbs scipts that I can click on to do various tasks (such as map network drives, WOL computers, and Remote Shutdown computers). All I want to do is to be able to press a button and it will activate the scipt. What is the code that would call the .vbs file and execute it in the IDE I tried to use "Add Existing Item" and put the script into the Solution Exploerer, but it either didn't put it in the IDE or I don't ...Show All

  • Visual Basic C# style documentation in VB

    is it possible to do c# style documentation in vb ie: ///<summary> ///This is a class ///</summary> public class . . . Just ''' (triple single quote) (upgrade to 2005 and you'll see what I mean) David Anton www.tangiblesoftwaresolutions.com Instant C#: VB to C# converter Instant VB: C# to VB converter Instant C++: C# to C++ converter and VB to C++ converter Instant J#: VB to J# converter Clear ...Show All

  • Visual Studio Team System VSTS 4 DB : How about OLAP?

    Hi all, Forget about other RDBMSs. Are there any plans to support SQL Server Analysis Services as well SQL Server Database Engine Generating change scripts, creating baseline schemas, cascading changes, unit testing, data compare, data generation......these are as equally relevant to SSAS as they are SSDE. I realise this won't be in v1.0....but is it in the pipeline for the future -Jamie So I assume you mean when data i ...Show All

  • .NET Development Problem inserting small date time in a sql server database

    Hi, I have a cell in a sql server database that is off datatype smalldatetime. I am trying to pass in the value of todays date in a sql insert command but I keep getting the error "The conversion of char data type to smalldatetime data type in an out-of-range smalldatetime value" Below is my code(C#) DateTime TodayDate = DateTime .Today; int Num = 1; string text = "Test" ; //To test that the insert work ...Show All

  • Visual Studio Express Editions registration of express products

    Could anyone describe procedure of registration of express products in case when i don't have link to internet from computer where express product is installed. I downloaded VC# Express today at my faculty, but at home I don't have internet access Thanks Dragan I think it'sn't possible. Becouse the code is generated also with some infos of your installation and of your user's account... But I'm not so sure about that... That is what I lea ...Show All

  • SQL Server A Clarification required on xp_terminate_process

    HI , I have a problem where i have to kill a windows process in my procedure. In sql server 2000 i could find a procedure called xp_terminate_process ( which takes process id as parmeter and kills the process) . but i couldnt find any replacement or another new one to do the same in sql server 2005. if any body have any idea or suggestion regarding how to go about this are welcome.. Thanks in advance Mohan I just can't imagin ...Show All

  • Windows Forms Button Click not firing after Validation event

    I have a textbox and a button my form. My button has CauseValidation turned on. If I click the button, the textbox validation fires. If the validation is successful, the button receives focus, but the Click event is not fired.  I would like&nbs ...Show All

©2008 Software Development Network

powered by phorum