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

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

kats

Member List

SenthilNathan
ahmedWebDev
VitCon
Jurciks
fdouilly
meighlough
ஐ moda.asp.net ஐ
J A Y
Rembo
John Lieurance
kinny_k
Pat.V
Andrey Makarov
Eric Wellnitz
ChenHeng
Avi120
NateRickard
drew_p
THE RAZI
skrajmohan
Only Title

kats's Q&A profile

  • Visual C++ using split method

    Hello Sir, i want to convert a string to an string array. e.g. i have an string as "munish, ramesh, hitesh" i want to convert it into a string array with array[0] = "munish", array[1] = "ramesh", array[2] = "hitesh" Pls help me in doing this. Thanks Munish Gupta Hi, For .NET framework this is a sample code: #include "stdafx.h" using namespace System; array <String^>^ Get_Words(String^ line) { array <String^>^ res = gcnew array <String^> (0); int i = 0; String^ temp; char c; while (i < line->Length) { temp = "&quo ...Show All

  • Visual Studio Team System Execute Target after compiling a solution

    Hello, I have an ItemList of SolutionsToBuild in my TFSBuild-file and I want to copy certain files (.lib, .h,...) of each solution to a certain folder after the compilation. The next solution needs those files for its compilation. How can I do this Do I have to overwrite the CoreCompile Thank you! Thank you for the answer, but I dont want to define this within a project as a post-build step since I have a lot of solutions to build. I found a blog where it's described, but I have problems with the realization of this: http://blogs.msdn.com/manishagarwal/archive/2006/05/09/593510.aspx As soon as the target CoreCompile is executed the build process ends with a failure, but in the logfile no error is reported. ...Show All

  • SQL Server Problems with regard to connection string

    hi! I have 2 questions that needs to be clarified. I have Sub packges being executed from the main package. I am executin the Main Package with the Conn string set through the C# UI like string connect = @"TahoeDB;Data Source=SE413695\AASQL2005;Initial Catalog=TestDB;Provider=SQLNCLI.1;Integrated Security=SSPI;"; jobCommand = new SqlCommand("xp_cmdshell 'dtexec /f \"" + path + "\" /Conn \"" + connect + "\" /Set \\package.Variables[User::ArchivePackageName].Properties[Value];\"" + name + "\" /Set \\package.Variables[User::ArchiveFileType].Properties[Value];\"" + type + "\" /Set \\package.Variables[User::ArchiveFlatFileConnectSt].P ...Show All

  • SQL Server Digest Authorization on HTTP Endpoint

    I need to enable digest authorization on an HTTP endpoint, because the integration tools for some java code that needs to connect to it does not support NTLM or kerberos - only digest and basic. I setup a test endpoint in order to test only digest authorization (as opposed to the final endpoint which needs both digest and integrated), but I can't even get that to work - when I point my browser to it to see the wsdl it pops up with the login box, but the login always fails. I have the feeling I'm missing some very minor piece that will just make the whole thing work. Below are some log entries as well as the script to create the test endpoint I'm hitting. Any ideas are very welcome, I've banged my head on this one for far too long. ...Show All

  • Visual Studio Team System Help me to get started...

    I've installed VS 2005 Team Suite. Nothing was installed before. Now - how i can connect to the Team System Server All guides just refere Tools->Connect to the Team System server menu. But I don't have one. Maybe I missed something during the installation Thanx Team Explorer (the client for the Team Foundation Server) must be installed into your Team Suite. To do this, insert the Team Foundation Server installation disk and install the client. Alternatively you can download it from here:- http://download.microsoft.com/download/2/a/d/2ad44873-8ccb-4a1b-9c0d-23224b3ba34c/VSTFClient.img You'll need to rename the downloaded img file as an iso file if you want to use it with most disk burning applications ...Show All

  • SQL Server problem in connecting to sql server Express

    Hi to all, i'm installing sql server in my pc as netwrok service. when i try to connect it, it showing me a error sql server does not allow remote connections error 26 error locating server/instance (MS Sql server ) how can i resolve this plz help me out. it not able to connect the server locally. when i try to connect it with .\SQLEXPRESS or localhost\SQLEXPRESS it will connect to the DB But when i use ServerName\SQLEXPRESS it wont connect to DB what the problem plz help me with Regards Amjath Hi, These are the Services , SQL Broswer service required because it gives connection information to client computers, start them and see if it works. And what about the other question i asked !!! When did you ...Show All

  • SQL Server Using IN and LIKE together (multi-value startswith)

    I use Oracle as the database and my problem I faced occured on the Crystal Reports' to SSRS migration. We can select multi-value for our parameters and I declared the parameter in the pl/sql query as below. Let's say our available values in the list are: BIOS DBH ERPA GUNDEM IBRAHIMA We select BIOS and ERPA SELECT * FROM PROBLEM_TABLE WHERE CLOSED_BY IN (:paramclsby) There is no problem with that query, it queries the table with the field CLOSED_BY includes BIOS or ERPA. But there are also records the field contains starts with ERPA1, BIOS-AS etc I want to get these records but I cannot produce the query. In Crystal Reports, the Select Expert has expression; {PROBLEM_TABLE.CLOSED_BY} startswith ["ERPA&quo ...Show All

  • SQL Server How to Start NS

    Hi All, Iam new to Notification Services in SQL Server 2005. I have a task like to notifiy me when ever some DB changes occur. I need to notify either by an email or some other type of alert. Can any one tell me how to start and where to start using this Notification Services Please suggest me any blogs or url's for the above.. Thankx in advance.. any suggestion is greatly Appriciated.. Hi New2NS - Welcome to the wonderful world of SSNS!! Book mark this forum as you'll want to visit it often. Same goes for the newsgroup microsoft.public.sqlserver.notificationsvcs. I usually encourage those who are new to SSNS to start with the BOL walk-through. It'll step you through creating your f ...Show All

  • Smart Device Development Setting TAB Order

    Hai, I want to develop a smartphone 2003 application in Visual studio 2005 . During the development i found that the tab order setting is disabled in the menu View ->Smartphone Taborder , also there is no tab index propery found in the controls . In VS 2003 smart phone tab order can be set without any difficulty. So how can i do this with VS2005 .. PLz Help me Thanks in advance Ratheesh I see... Well, there's no such functionality in VS 2005, but all it does is swapping order controls are added to the form. You can swap lines manually if needed or rearrange at runtime. this .Controls.Add( this .textBox1); << textBox1 has first tab this .Controls.Add( this .checkBox1); << Second tab this .Menu = ...Show All

  • Windows Forms DataGridView with DataGridViewComboBoxColumn: How to single click for dropdown list?

    Hello, I have DGV on a form that is working perfectly well, except I want a single click on the cell to begin editing rather than clicking two times. For example, I would like a single click on a DataGridViewComboBoxColumn's cell to cause the dropdown list to appear and a single click on a DataGridViewTextBoxColumn to permit the user to start editing the contents. I have the written the following code, which is attached to the MouseUp event, but I am not certain what I should have it do to the cell to achieve my goals. I've tried setting focus on mouse up, but to no avail. Thanks in advance for the help! Mike private void dataGridView_MouseUp(object sender, MouseEventArgs e) { DataGridView.HitTestInfo hti = dataGridView.HitTest(e ...Show All

  • SQL Server database transfer error

    I am in SSIS and have setup a transfer database task between my old SQL 2000 and new SQL 2005. I have it simply copying in online state one database from old to new servers. I get an error code of 0x80131500, "the system can not find the path specified" So when it goes and looks up the path on the old sql 2000 machine apparently the path that it found automatically is not correct. Any ideas ...Show All

  • Visual C# Calling Method Problem

    I have a problem with this code: public Form1() { InitializeComponent(); draw(); } public void draw( PaintEventArgs e) { Pen rectanglepen = new Pen ( Color .Blue); e.Graphics.DrawRectangle(rectanglepen, 0, 0, 50, 50); } When I call the draw() method in the first part, the compiler tells me that something needs to go between the parentheses. What would it be (Remember that the actual method has "PaintEventArgs e" between the parentheses) You should move your code to a handler for the Form1 Paint event. There you will have the PaintEventArgs and you will not need to call it on the constructor. That solves the problem ...Show All

  • SQL Server Execute SQL task to update variables

    Hi there I'm attempting to update a variable using the Execute SQL task, I've read a lot of posts on this and seems reasonably simple but obviously not. The first time I ran it the variable was updated correctly, I then manually changed the variable value and since then it doesn't work. I have a task with the following properties; Resultset: SingleRow SQLStatement: SELECT MAX(Player_Daily_Data_Pull_Date) as 'PlayerDaily' From Job_Control On the resultset tab I have the resultsetname = PlayerDailyand the variable I want to update. The variable has a type of datatime and it's scope is the container that I'm running the sql task within. Any help would be appreciated. Derek ...Show All

  • Smart Device Development a deployment question :)

    Our application has some configuration values (server IP and server port). Until now, those parameters were set in the cab project that wrapped the exe with other resources. The process above was done by a programmer, but now we want to give this task to a non-programmer (which means that he/she doesn’t have VS installed on his/her machine). Is there a nice & clean way to make a CAB without the need to install VS (just to make the cab project..) Oren You can use cabwiz.exe to create a CAB file for your PPC devices. See MSDN article here http://msdn2.microsoft.com/en-us/library/aa458948.aspx Manav ...Show All

  • Visual Studio Team System Requirements as work items

    I wanted to see if this sounds reasonable. The plan is to tailor work items to capture requirements. We've determined we can capture our core feature requirements with at most 6 work items. The goal is then to write tests, either auto or manual and link them to the work items. I would then like to be able to run reports to tell how many requirements were tested in a given pass. Anyone else have experience with this methodology in VSTS Becky, That certainly seems like a reasonable approach. As D.A.V.E. points out we have requirement work item types that ship with the default templates. If you need more information about customizing work items, I suggest you pop over to the TFS work item tracking forum: ...Show All

©2008 Software Development Network