Software Development Network Logo
  • Visual FoxPro
  • Smart Device
  • SQL Server
  • Visual C#
  • Architecture
  • Windows Forms
  • Windows Vista
  • Visual C++
  • Visual Studio
  • VS Team System
  • Visual J#
  • Visual Basic
  • VS Express Editions
  • .NET Development
  • Windows Live

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

DeepakBakshani

Member List

M S K Aditya
Carsten-S
Maksim V.
laks_win
eperales
Sandyboy
oananiev
Doug Maynard
Dirk Rombauts
Rebecca23
DJT_UK
Allivelu
Disconnected David
asvi
Phalanx
Charul Shukla
anandc
hobbitenok2005
MrNice01
Mike Vargas
Only Title

DeepakBakshani's Q&A profile

  • Visual Studio Team System 2 Questions

    Heard good things about performance testing with this tool. 2 Questions: 1. Is a free eval version available 2. Does the tool work with web apps that use client side digital certificates Here's the documentation on the WebTestRequest.ClientCertificates property. Note that this is only available in code, not from the web test editor. http://msdn2.microsoft.com/en-us/library/microsoft.visualstudio.testtools.webtesting.webtestrequest.clientcertificates(VS.80).aspx Josh ...Show All

  • SQL Server Could anyone attach the AdventureWorksDW to their SQL Server database engine?

    Hi, all here, I got a problem when trying to attach the AdventureWorksDW sample database to the SQL Server database engine. Error occured as: could not find row in sysindexes for database ID 21, object ID 1, index ID 1, Run DBCC CHECKTABLE on sysindexes . The sample database was downloaded from http://www.microsoft.com/downloads/details.aspx FamilyID=e719ecf7-9f46-4312-af89-6ad8702e4e6e&DisplayLang=en . So could anyone help me to solve this problem tho thanks a lot for any guidance and help. I am having the same exact problem and have been unable to find a resolution. Please post if/when you find something out. Than ...Show All

  • Windows Forms Excel Problem PLZ HELP ITS UGENT!(Could not find excel forum)

    I've been given the task of making a spreadsheet that will make a copy of itself, at the end of the day. I would like to have a button in my spreadsheet that creates a back up copy and then exit. Can I get it to check for (and maybe create) a folder called 'backup' (at the same level as the original spreadsheet) and then save it there I don't want the user to get too involved in this process - apart from clicking the 'Backup and Exit' button. My friend told me that i need to use macros. i am a beginner and dont know whts the steps are. Can some1 plz help me and tell me the steps to create the backup button ...Show All

  • SQL Server Send Muti-Values to Stored Proc?

    Hi all, I am not too sure whether someone asked this question before, but I am thinking is there a way to send multi-values (selected from a multi-value parameter) and send it to a stored procedure from a DataSet in reports Anyone have any idea how to go about this please help out. Thanks in advance. Daren If the data source type is "SQL Server" or "Oracle", binding a multi value report parameter to a query parameter of the stored procedure will pass in the selected values as comma-separated concatenated string query parameter value. E.g. selecting "A" and " ...Show All

  • Visual C# Why I can not get image from Northwind Database ?

    I can get image from my own database into picturebox but I can not do this with Northwind database. Please tell me how I can get image from this database. Thanks a lot can you please send me your code snippet for my reference. I am sure it's possible to get the image from Morthwind database. If possible send me your sample to  spam@spam.com  this topic. Thanks. ...Show All

  • Visual Basic Why 'Events cannot be declared with a delegate type that has a return type'?

    I am just surprised at the fact that VB.NET does not support event that has a returning type. In C#, delegate can be any function prototype (in the old C/C++ days) and C# keeps this advantage. I hope it will be better in the final release. Post a suggestion on the Microsoft Product Feedback Center . ...Show All

  • Windows Forms listing xml items...

    Hi, I have an XML like this: <links>   <item>     <title>Blabla</title>     <url>http://ddddddd</url>   </item> </links> ........ I have an asp literal on my web page, and I want to list these items on it... how can I access them in c# Thanks Have you looked at the XmlTextReader classes etc ...Show All

  • Visual Studio Express Editions making a console application with MSVC++ Express 2005

    since there is no project (that i could find) for making a console application i used general->empty project... but i can't seem to get it to work... i tried changing properties->linker->system->sub system to console but then it produces this error unresolved external symbol _main referenced in function ___tmainCRTStartup any help is appreciated What Martin said. Please restore the settings. The General | Empty Project is all you need for making a standard C/C++ console application. I suggest you find one of the standard simple programs (like "Hello World") that are all ov ...Show All

  • Visual Studio Team System 'Work Items' report is failing in VSTS beta3

    Hi there,      I have installed successfully VSTS beta3 server, few reports inabled but few of them are failing. Like 'Work Items' report is failing with error: 'An error has occurred during report processing. (rsProcessingAborted) Query execution failed for data set 'dsExitCriteriaParam'. (rsErrorExecutingCommand) For more information about this error navigate to the report server on the local server machine, or enable remote errors '   How do I fix it Thanks, Anu We've never been able to solve that error. There are tasks in the system and we reprocessed a number of times. A troubleshooting ...Show All

  • Windows Forms Interaction w/Access from winForm through Com - Access process will not exit

    See the following thread for additional background: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=300327&SiteID=1 I am testing the ability to interact with a winFom in vb.net (VS 2005) from within Access 2003 by using a COM Wrapper around the form. In testing based on the links received in the above post, I have found that I can open and close my test winFom from Access just fine. But as soon as I go beyond openning and closing by interacting with the form, I have an issue. When I close Access, the MSAccess.exe Process continues. I have closed and cleared all objects in both the winForm COM wrapper as well as w/in Acces ...Show All

  • Visual Basic How to delete access database from dataadapter and dataset

    I know how to do this programmatically through building my own objects and executing them.  I do this with SQL all the time. On this project, however, I'm trying to do something different and use a small Access Database with one table, Jobs.  I created a New Connection in the Server Explorer to the database and then did a drag-n-drop from the Jobs table to the Windows Form. Here it walks you through the part where you do the query builder to auto-generate the SELECT , INSERT , UPDATE , and DELETE statements.  So once all that is finished, it creates an OledbDataAdapter and an OledbConnection on the form.  The ...Show All

  • Visual C++ Need help with a funtion to take a name entered by a user

    I want this function to take the name of the user and then display it. However it will only display a number when I run the program. I am new to C++ and programming for that matter so any help would be appreciated. char GetNameOfInvestor( char name) { numberOfYourFunctionsCalled++; Console::Write(S"Please enter your name: "); String __gc * input = Console::ReadLine(); return name; Hi.  You seem to be starting out with managed C++.  I do not recommend this.  Either learn C++, or learn C#, is my advice. A char is a single character, which can be represented by a letter, or a number.  You're correctly rea ...Show All

  • Visual Studio Express Editions How to publish

    When I published my application, I have no idea where it installed it self to what directory. My publish location is c:\program files\rma\ Yes it does put files here, but when I double click on an excutable file to install it, I think it went to c:\my document setting\etc. I want it to install to C:\program files\rma program\. Where is the setting path for this.. thank u Hi, If you have created setup project for distribution of you application then go the file system editor in setup project and in the Application Folder's Default Location Property put this value... [ProgramFilesFolder]\rma ...Show All

  • Windows Forms New Text Box with scroll bars

    Hi, everybody! I was just wondering how could I write a TextBox-like from scratch, but my problem is with the scrolling stuff. You could help me Tnx. ...Show All

  • SQL Server Maintenance plans: online rebuilding of indexes...

    I'm using SQL Server 2005 SP1 Standard. On the Rebuild Index Task there is a checkbox at the bottom that says 'Keep index online while reindexing'. Great I thought, I'll check that. Later, when I tested the job, I got this error: 'Online index operations can only be performed in Enterprise edition of SQL Server.' Why have that checkbox available to check, if I'm running a version that doesn't allow it Where's the bug Thanks Ed ...Show All

©2008 Software Development Network