SelvaVenkatesh's Q&A profile
Visual Studio Team System Dual Server App Tier System Health Check Fails
I was able to install the TFS Data Tier but I am stuck when I attempt to install the App Tier. I followed the TFS Install Guide and created the dedicated TFS user accounts and installed SQL Server Reporting Services on the App Tier. My current problem is when I attempt to install the App Tier, the System Health Check fails. I get the following error message: "SQL Server 2005 Reporting Services service is not installed". Do you know the SQL used to verify the SQL Server Reporting Services install Any help is much appreciated. Ya. I understand that SQL Reporting Services installed in Data Tier....but did the Reporting Services and all other services are all set to Automatic and Sta ...Show All
Visual Studio Tools for Office Getting Memory Erros with Add-In
I am deploying the Add-in in windows XP. As soon as Outlook tries to load the the adding I get memory errors. Then Outlook disables the add-in. The same addin I have installed in Windows 2003 both stand alone and in terminal services mode. I don't know if any one has found these problems with XP. Thanks, Shrini Mark, This Add-in simply creates a new menu group and few menu items under it. Each menu item, simply performs a set of tasks using WebService. This is nothing special. Windows XP SP2 with latest updates & Office 2003 SP2 and latest updates. Error Message: Microsoft Office Outlook has encountered a problem and needs to close. We are sorry for the inconvenience. When I ...Show All
SQL Server How to pass a value from a view to a filter in a cube?
I'm trying to figure out how to pass a value from fact view to a filter in a cube. Purpose is to avoid update of cube with a redundant data. I tried to hardcode filter value in incremental processing of a cube and it works fine. For ex. "month > 10" How can I replace the hardcoded value in the filter with a dynamic value, a value from the underlying view Something like "month > getMonth from dbo.ViewXXX" Could it be done in DTS or Analysis services It is a SQL server 2000. Thanx. ...Show All
Windows Forms Printing a designed layoutform
Hi all, I'm building a program, which can be used to create a layout for a label that needs to be printed. I've created this using drag and drop. So the user can drag textboxes, lists, images onto a panel. The locations of the textboxes, etc... are saved in a database, their values, offcourse, too. Now I want to be able to print this panel containing controls, all in exact location. Which is the easiest way to accomplish this Sincerely, Tobias So if I've got a panel(pnlTarget) containing panels with imageboxes, richtextboxes, etc.. in it, I can just do Dim bmp As New Bitmap(pnlTarget.Width, pnlTarget.Height) pnlTarget.DrawToBitmap(bmp, New Rectangl ...Show All
Visual Basic vb5 to vb2005 express
How can i convert my vb5 sources to vb2005 without vb6 Great, thanks Stephen. it's sometimes so simple you never try. It read the vb5 project file and shows me a couple of hundreds errors and warnings, but now i have something to work with. Some forms don't show, some are correct. Most of the coding seems fine, most errors in declaration sections causing a lot of other errors. Thank you again ...Show All
Internet Explorer Development IE 7 CPU Utilization
I recently installed the IE7 release candidate. Over the past couple days, there have been numerous incidents where iexplore.exe process uses 95%+ CPU, and it hangs there for a minute or longer. I haven't found anything specific on this, but is it a known issue that Microsoft is going to fix Thanks, Jen I"m having the same problems too... I HATE IE7, its a memory hog when opening tabs or multiple windows and CPU utilization is usually 97% or so...... ...Show All
Visual C++ what after win32 api? and general programming advice!
Hie , i'm nearly 16 , i started programming in flash and javascript when i was 13.I moved to VB when i was 14 and also recently made a full fledge application in VB6 .Then i moved to VC 6 some time ago.I know C but NOT C++.I made a few SIMPLE applications in VC using C and win32 API only.and i did'nt forget flash.. i'm still keeping myself updated there! now i got VCE 2005 , and some explained to me that i need to install the PSDK to have win32 api support. I'm still not well versed with VC so i'm reading charles petzolds book on windows programming.Now my question is .. where do i go next.Should i learn C++ and MFC , and when should i move to C++ immediately after i finish this book i have bruce eckel's : thinking in C++ , but does any1 ...Show All
Visual C# LinkedList of class object
I am trying to create a LinkedList of class objects. Partial code is: public class Game1 : Microsoft.Xna.Framework.Game { private Object3D my3DNode; LinkedList<Object3D> myPrimitives = new LinkedList<Object3D>(); public Game1() { my3DNode = new LinkedListNode<Object3D> (new Object3D(Vector3.One,0.0f,0.0f,"Media\\chamferedcube")); etc... } Object3D is a class definied in another file, but the constructor does take the 4 parameters I am trying to use above. I get this error msg on the last line of code above Error 1 Cannot implicitly convert type 'System.Collections.Generic.LinkedListNode<Tetris3D.Object3D>' to 'Tetris3D.Object3D' C:\Data\Personal\GameProgramming\Tetris3D\Tetris3D ...Show All
Visual C# calling an object in MainForm from Form2
Hello to everyone, suppose that i crated an object (textbox or serial port .... for example) in a mainform for my app, how is it possible to call this object from an another form2 -------------------------- ----------------------------- Main Form Form2 textBox1 <<<<<-------------------------- How can I call TextBox1 from here 10x for ur help take a look at this on passing variables between forms/classes: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=729974&SiteID=1 http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=777222&SiteID=1 ...Show All
Windows Forms Child Form is not getting in active state that is focus is not set
Hi, I have MDI form in that I have 4 panels left panel has treeview control top panel has heading, version, label, Bottom panel has status bar for MDI and right side panel is work area where I have child form. When I load my child form from the treeview I am not able to set the focus for the child window. I give example is when I open two child window one will be active (that is title bar will be blue color) other one will be shaded (brightness will be less) so the form is not in focus. When you click on the form it will get focus will be blue color. In my case the child window is inside the panel and its not active but i am able to access the control inside the forms. But my titlebar is brightless so its not in full blue color. ...Show All
SQL Server Foreach Loop Container in SSIS
Could someone send me any links or information on how to loop through an ADO.NET dataset in SSIS I need step by step information please. Thank you, Shiva In SSIS you can handle errors one row at a time as Jamie describes. See http://msdn2.microsoft.com/en-us/library/ms141679.aspx What kind of errors do you expect to encounter Donald ...Show All
.NET Development XslCompiledTransform.Transform Error when reading Ascii special characters
I'm trying to run an xsl transformation on XML generated from a DataSet. In that dataset I have a string that is a list of values separated by ASCII char 30: qualArray += dr[ "Qualification" ] + (( char )(30)).ToString(); When I use a "|" or some other regular character the transformation works fine but when I use a special ascii character it fails. How can I use the special character as a separator in my string and succesfully run the transformation Here's what I'm doing now: XmlDataDocument xmlDoc = new XmlDataDocument (TransformDS); // Load the style sheet. XslCompiledTransform myXslTransform = new XslCompiledTransform (); System.IO. StringWriter stWrite = new System.IO. StringWriter (); ...Show All
Windows Forms Resizing labels and other controls
Hi, I am having a query. I am using .Net 1.1 C#. There are a number of labels in a group box, one below the other and there are 4-5 groupboxes lying 1 below other. These labels get populated from backend so i m not sure how much amount of data could come. Actually there is no limit to it since the backend data type is Text for most of the fields. So now the problem is accomodating the text inside label and resize it according to values, at runtime. .Net does offer AutoSize property, but that only expands in width. My requirement is, it should not expand in width but rather in height. Now resizing the label can be done using Label.Height, but with this i also have to change the Y location, to accomodate it on the screen. ...Show All
SQL Server Exception : Create Database failed 'tmpDb'
Hi I'm getting Create Database failed 'tmpdb' when I'm executing fallowing code ServerConnection scon = new ServerConnection ( "local" , "sa" , "" ); Server GSer= new Server (scon); Database db2 = new Database (GSer, "xyz" ); GSer.ConnectionContext.SqlExecutionModes = SqlExecutionModes .ExecuteSql; db2.Create( ); Can Anybody help me in this Thanks in advance Hi, I guess you are trying to create a database on local server. If that is the case please use (local) or . instead of local (notice paranthesis). Ex: Microsoft.SqlServer.Management.Common. ServerConnection scon = new Microsoft.SqlServer.Management.Common. ServerConnection ( &q ...Show All
Smart Device Development Put Tabs on top instead of bottom
Hi, I am new to .NETCF. I like to use a tab control in my app and put tabs on the top instead of bottom (default). Is it a way to flip the control Thanks, Jazure ...Show All
