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

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

Ankith

Member List

amicalrahul
Gary Winey
Suganya Mahadevan
Javier Martinez
Halze
venp
skynes
Warner Young
JOshLewis
Alanu
Harry CC
Hila123
bvod5647
Smalldust
DOSST
ErrantOne
Kain363399
KitWest
Cest la vie
Inferno986
Only Title

Ankith's Q&A profile

  • .NET Development DataSet.RejectChanges() vs Transaction.Rollback()?

    are these the same thing if not what is the advantage and disadvantage from your experience Thanks You've been doing some financial calculations on a piece of paper and you've decided not to do it and crossed it all out, that's DataSet.RejectChanges() equivalent – local changes in memory are canceled. You've done calculations above, wrote a check to somebody based on results. But something gone terribly wrong, so now you're calling your bank to stop payment; that's Transaction.Rollback() equivalent. Changes are canceled while been submitted to the server, it’s no longer a local thing.   ...Show All

  • SQL Server Linked server from SQL2005 to SQL2000

    Hi I use the following SQL statements to create a link server. RemoteServerName is an SQL2000 and I am executing this in another machine which is SQL2005. Though the link server is created successfully, I am not able to se the tables under it so could not query anything. ---- USE [master] EXEC master.dbo.sp_addlinkedserver @server = N'RemoteServerName\InstanceName', @srvproduct=N'SQL Server' EXEC master.dbo.sp_serveroption @server=N'RemoteServerName\InstanceName', @optname=N'collation compatible', @optvalue=N'false' EXEC master.dbo.sp_serveroption @server=N'RemoteServerName\InstanceName', @optname=N'data access', @optvalue=N'true' EXEC master.dbo.sp_serveroption @server=N'RemoteServerName\Ins ...Show All

  • Visual Studio Team System Beta3 Error 32000 (tfsadminutil) on app tier

    When installing the Beta3 application tier I encountered an error 32000 near the end of the setup. Data tier went perfect. Both data tier and app tier are installed on a clean virtual Win2003SP1 machine. Followed all the steps in the manual, but had to cancel the setup of the app tier because the service account had disappeared from the local admin group. Added this user to that group again and started setup. Everything went fine until 95% of the service setup: Error 32000: The Commandline "'C:\Program Files\Microsoft Visual Studio 2005 Team Foundation Server\Tools\TfsAdminUtil.exe" Setup VSTS2\tfsservice  beta3-data TfsWorkItemTracking;TfsVersionControl;TfsActivityLogging;TfsBuild;TfsIntegration' returned non-zero value: -1. When run ...Show All

  • SQL Server SQL Server 2005 "Login failed for user" sa

    I have not been able to install SQL Express SP2 (standard or advanced) on Vista Ultimate (RTM). Every time I try to install, I get the following error message: SQL Server Setup could not connect to the database service for server configuration. The error was: [Microsoft][SQL Native Client][SQL Server]Login failed for user 'sa'. Refer to server error logs and setup logs for more information. When I check the logs, the only information I can find that is at all useful is: Doing Action: Do_sqlScript PerfTime Start: Do_sqlScript : Thu Mar 01 21:35:42 2007 Service MSSQL$SQLEXPRESS with parameters '-m SqlSetup -Q -qSQL_Latin1_General_CP1_CI_AS -T4022 -T3659 -T3610 -T4010' is being started at Thu Mar 01 21:35:42 2007 SQL service MSSQL$SQ ...Show All

  • Software Development for Windows Vista Database Access within Activity

    Hi, If some of my activities (such as Code Activity or Custom Activity) need to connect to the SQL database to collect or update some data. What is the best practice to store the Connection String I don't want to hardcode the connection string as it may change. Andy Ho Hi During some Activties like Design Time Activity the application cann't read information from Configration file, so we store information that is required in designe time in Registry and full these information when required. You can also create a file to put information but it is not a standered way of doing the job I think so., Because Microsoft Also use registery for information like this one, The store to retrive the registe ...Show All

  • Visual Studio 2008 (Pre-release) How to drag/drop custom control in grid.

    I was wondering if anyone has a good example of how I could drag and drop a custom control into other columns and rows within a grid. Yes. His is the code that I am currently using. The problem is that I need to lay out objects in a linear fashion. If I could have this work in a grid it would be great. Also I need to be able to drag from one grid to the next grid. Or in Josh's code, be able to drag from one canvas to another. Any ideas ...Show All

  • Windows Live Developer Forums request.locale needs a default value

    There is a flaw in the sdk examples. The search fails with an undocumented soap exception unless the request.locale is specified, generally "en-US" . Shouldn't this default to some value ...Show All

  • Visual Studio Team System How to keep the changeset history in TFS when I make a merging or branching?

    I found that it's difficult to keep all history when I made a merging or branching. Both processes got the history lost. For example, the new branch just starts with a new changeset history. How to solve this problem Can I export the history firstly then import it into the new branch Thx in advance. Thx for your info. But if I really wanna include/import the history of the branch ancestor, not just view it by extended command switch, is it possible ...Show All

  • Software Development for Windows Vista HELP: Adjusting/Controlling Attenuation (Volume) Level

    I need help guys ... How can i adjust the volume of the audio playout in real time For e.g Left Channel Right Channel 50% 50% 30% 30% 0% 0% 30% 0% 0% 30% i really need this program, good if there's an article of it or a source code or at least steps that where can i get this achive. note that im using simple audio playout using directshow that make use of the Quartz.dll thank you in advance I found this.. http://www.codeproject.com/audio/volumeclasses.asp but the problem is, its in c++ code where im need to build it in c# please help.. kudasai ne :( ...Show All

  • .NET Development remoting new guy - have some questions

    I am interested in learning about remoting and I have some simple questions. I am new to remoting and would appreciate some help. I would like to have our customers remote to our server for all data access functions so that we can store data in our secure data center for our clients. (ASP type model essentially where we host the data for the customer and allow them to access it from anywhere) Our Data Access layer has about 200 classes today each implementing custom methods like so: Example: public class OrderDAL { public dataset getOrderInfo() } public class CustomerDAL { getCustomerInfo() } I want our users to be able to remote to our server and call any method in any of these Data Access Layer ...Show All

  • Visual Studio Mutliple DSL Installation

    I know there is no support for mutliple DSL intergration yet. But, it will be great, for those ones that are developing the integration "by hand", to have, at least, an only installation project. There is a way to achieve this with the current version Thanks in advance... Yes, something like that. I thought in one only Package, but, this approach could solve my problem too. How can I integrate several wxs files in one only msi project I am new in this stuff. Thanks in advance.. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Drastic FPS fall,when rendering QUAD

    Hello guys, I've been working on my 3D directx game for a while and I've recently added QUAD(ship cockpit), inversly transformed to VIEW, so its like GUI. However, I am encountering big fall FPS - well normally my time delay between frames is 17 ms, but when I render quad it jumps to 50 'ms'. What's strange is that rendering tha quad + needed preRender+postRender takes just 6 'us'. So why is there 5000x longer delay. Moreover, I've noticed that I can bypass time delay increase by rendering quad without being scaled and transformed to [0,0,1]=> (further to the front) position - there is no TIME INCREASE...but then the "cockpit image" takes just 30% of the screen and so it is not very realistic. Some info about the imag ...Show All

  • Visual C++ Please read. Thank you

    Hi, I am trying to compile an Win32 project but I keep getting linking errors. I tryed to fix and search forums and google but really nothing helped, if anybody could help id be really greatful. Anyway here is the error report. I am using Microsoft Visual Studio 2003 .net Pro. All my libs and includes are located right. Header for main.cpp #include <windows.h> #include <stdio.h> #include <fstream> using namespace std; #include "main.h" #include "d3d9.h" #include "d3dfont.h" #include "d3d9dev.h" ------ Rebuild All started: Project: TatniumD3D, Configuration: Release Win32 ------ Deleting intermediate files and output files for project 'TatniumD3D', configuration 'Release|Win32'. Compiling... d3d9tex.cpp d3d9int.cpp d3d9de ...Show All

  • Visual Basic Multiple selection on DataGridView

    Hello. A question please. If the user select more than 1 rows (blue color) on a datagridview, how can I recover the data of each row of the datagridview Thanks... THis would work just fine.... For Each row As DataGridViewRow In Me.DataGridView.SelectedRows 'Put your code here Next Selectedrows is a collection of datagridviewrows. Are you saying the the Me.DataGridView.SelectedRows.Count property is returning 1. Did you select both rows by selecting both rows or did you simply highlight all the cells in both rows. Does the loop iterate twice. DataGridview has a number of other properties such as SelectedCells, SelectMode etc. If you have fullrowselect as the mode and hav ...Show All

  • Visual Studio Express Editions Save project as

    Is there any way to save a whole project as a new name (new project) - not just Form1 I miss a file menu point like "Save project as". A VB project consist of an awful lot of files in nested libraries so if you want to test a modification it would be very nice to be able to save the entire project under a new name. That functionality does not exist in .NET Work around is to manually copy the entire directory to a new directory and rename the *.VBproj/*.sln/*.sou file(s) ...Show All

©2008 Software Development Network