Krishna Govindayapalli's Q&A profile
Visual Studio Express Editions where are the databases?
All I get is sql surface area configuration. Who thinks of this stuff Where are the databases What databases Where are you looking Do you have a database installed What are you trying to do How does this relate to Installing and Registering VS Express ...Show All
Visual Studio Express Editions How to Highlight a complete row in VSNET2005
Hi all, I am using a DataGridView1 object to display a group of records from my SQL Server 2000 database. My Question is how to force my datagrid to highlight the complete row instead of high lighting each cell individually Thanks alot! Mahmoud. ...Show All
Visual Studio Team System Merge tool - missing dialog button labels and toolbar icons
When comparing two identical files, the Visual Studio dialog box that should read "The files are identical" does not display the message or the "OK" or "Help" button labels. When comparing two different files, the differences are displayed but the toolbar icons are missing. What is odd is that it is only occurring when using the merge tool. I thought it may be a control library issue, but the controls in Visual Studio, SQL Server, and other applications render fine. OS: Windows XP Pro SP2 VS: 8.0.50727.42 (RTM.050727-4200) TFS: Beta 3 Refresh .NET: 2.0.50727.42 Any comments, suggestions, etc. will be ...Show All
Visual Basic Creating a Master/Details Form Using Two Windows Forms DataGridView Controls
http://winfx.msdn.microsoft.com/library/default.asp url=/library/en-us/dv_fxmclictl/html/c5fa29e8-47f7-4691-829b-0e697a691f36.asp I tried the above example - Creating a Master/Details Form Using Two Windows Forms DataGridView Controls . The difference is I tried the example with MySQL database. But it is not working for me. As per the article, when you select a row in the master DataGridview, the detail DataGridVeiw should be automatically filtered to show the related detail records. But when I execute my script, the grids displays all the records and no filtering is occuring. I used the mysql ODBC 3.51 driver. Please look @ the ...Show All
Visual Studio 2008 (Pre-release) Exceptions thrown from the service is seen as CommunicationExceptions on the client
Hi, I have made a service which is hosted in IIS 6.0 using wsHttpBinding, that in some cases may throw an exception. Using the January CTP this worked perfectly, as I received these exceptions and their messages with no problem. I have now upgraded to the February CTP and made the neccessary changes to the configuration files, and I can call the different methods on the service. The problem happens when an exception is thrown by the service, this is now always shown as a CommunicationException on the client. The binding is configured with a behavior where returnUnknownExceptionsAsFaults = " True ". Do you have any sugge ...Show All
SQL Server deploying sample databases like AdventureWorks,AdventureWorksDW
While installing SQL Server 2005 SEPT CTP, I did selected in Advanced option to install entire feature of sample databases on local hard drive. I can see the sample db and cube got installed on my local hard drive but how can I get it deployed so that I can see in Management Studio and in Business Intelligence Development Studio. Thanks, You can see the files in the C:\Program Files\Microsoft SQL Server\90\Samples folder (this is sing the default installation). You will see a couple of folders pertaining to samples for each service. It would be best to install Visual Studio 2005 as wel ...Show All
SQL Server Error creating Report Model based upon Oracle Database
In MS Visual Studio, when creating a new Report Model Project, after defining a datasource to an Oracle database (and successfully testing it), and a simple datasource view (1 table), when I click "Run" in Report Model Wizard, I receive the following error: "ORA-02179: valid options: ISOLATION LEVEL { SERIALIZABLE | READ COMMITTED }" It does not appear that one can create Report Models from an Oracle database (since the SQL being used to query the Oracle database cannot be edited and contains syntax errors ). Is this the case Thank you. I've installed SQL Server 2005 SP2 ...Show All
Visual Studio VS 20005 Multi project template
Is there any way to change or parametrize project name in multi ptoject template ...Show All
Visual Basic I have problems in my registry app, please help?
Hello, I got this application which was compatiable with Visual Basic 6.0 so i upgraded to Visual Studio (basic) 2005 BETA 2 and then it didnt work. What it does you click a command button and it inserts keys to the registry and adds a Shell Context Menu and 'Upload to GuruImages' will appear when you right click a .png file. Could somebody tell me why this doesnt work, and how would I make it insert these keys into the registry on installation and how will I set the values Thank You, Here is the code: Option Strict Off Option Explicit On Friend Class Form1 Inherits System.Windows.Forms.Form &nbs ...Show All
Windows Forms Combobox???
I'm having trouble finding the right control to use on a WinForm. I need a dropdown that a user can enter a value in, which brings back data from the DB that matches the query, but also displays another couple of fields in the dropdown list, to help clarify the exact record the user wants. For example, the dropdown might be for the Employee_Surname field of the Employee table. The user may enter "Smith" and I need the dropdown list to show all the Smiths, but also their first name and City. Other than creating it all as a string, which looks messy, is there a way for the dropdown to display them in seperated columns So instead of ...Show All
Visual C++ lnk2034 error metadata inconsistent with COFF symbol table:
This is my first try to convert programs to VC 2005. I am trying to convert from Visual C++ 6 to Visual C++ 2005. I am including .h files that reference VC++6 libraries. These calls may send a few values and generate a report nothing extraordinary. The application is a basic console application. I made no changes to the libraries. I can't find much on this error. This is a copy of my build log. Any clues < html > < head > < META HTTP-EQUIV ="Content-Type" content ="text/html; charset=utf-16"> </ head > < body > < pre > < t ...Show All
Visual Studio Team System Count the number of Constructors
Hi, I need to count the number of constructors for a Type. the code i have used for this is...... public override ProblemCollection Check( TypeNode type) { if (type.NodeType == NodeType .Class) { int memberCount = type.Members.Length; int constructorCount = 0; for ( int i = 0; i < memberCount; i++) { if (type.Members .NodeType == NodeType .Method) { Method method = type.Members as Method ; method.Name.Name); if ( CciHelper .IsConstructor(method)) { constructorCount++; } } } if (constructorCount > CONSTRUCTOR_COUNT) { Problems. ...Show All
SQL Server Parent Package Variable visibility when designing packages
I've created an SSIS package that uses parent package variables at several steps in the data flow. However, those parent package variables are only visible during runtime, making debugging the package practically impossible. Let me give you a simplified example: In the parent package, I have a string variable named "sqlLookup" that looks like this: "SELECT * from tblTest WHERE city = " + @city Also in the parent package is a variable named "city" which I can set to the name of the city that I want to query on. This dynamically updates the sqlLookup variable, which is being evaluated as an expression. ...Show All
Visual Studio 2008 (Pre-release) How to access database server from business server using WCF?
We use netTcpBinding binding in a NT service on the business server to access database server with Windows trusted connection only. Impersonation of user calls is OK on the business server using ImpersonationOption.Required, but just cannot access the database server. Code like this dosn't work either. We have WCF Feb CTR. using ( ServiceSecurityContext .Current.WindowsIdentity.Impersonate()) { Database pDB = DatabaseFactory .CreateDatabase(); } Thanks in advance. Thank you very much for your help. We knew impersonation works on the same server. Unfortunately, we do have one server f ...Show All
Visual Studio Express Editions Getting the ID from a newly entered record
I hope this describes what I am trying to accomplish, on a form I want users to enter information in fields that will be used as header information then enter information in fields that will be detail records and each of the detail records need to have the ID = to the ID of the header record. I created a simple form to try and test this but I need a little help if someone could be so kind it would be most appreciated. Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load 'TODO: This line of code loads data into the 'StrangDataSet.Quotes' table. You can move, or remove it, a ...Show All
