SteveGY_CN's Q&A profile
Visual C# Need good tutorial for Query Builder
Where can I find a really good tutorial on the VS 2005 version of Query Builder using C# I have limited SQL knowledge and no experience at all with previous versions of the Query Builder. I posted this in Visual Studio General as well. My question isn't really specific to C#. ...Show All
Visual Studio Team System Visual Studio 2005 Team Suite Release on MSDN Subscriber Downloads (Universal)
Hello everybody, Today Visual Studio 2005 Professional was released on MSDN Subscriber Downloads. We were unable to find the Team Suite Release. Any help Best regards Ralf Rottmann Word on the newsgroups is that your transition options are limited by your partner level. I've heard variously that - Gold partners get Team Developer, no role choice, no upgrade - Standard partners get Professional only, no Team Sy ...Show All
SQL Server Table Column Change causing errors in Cube
I've changed the column width a table one of my cube's dimensions is built upon. When the cube was originally created, the column was defined as char(2). I've increased its size to char(6). I've refreshed the .dsv view and it catches the changes. However, when I deploy the cube, it doesn't detect the change and processes correctly (without really doing anything). When I manually process the dimension, I get the process error: E ...Show All
SQL Server Reporting Services Report Manager Authentication Issue
Hi, I have installed Reporting Services 2000 on my pc. And i've used the report viewer control to view the report on a ASP.NET Page. When i view that .ASPX page, i get a windows authentication window before it opens the actual report. Is there any way to disable this windows authentication dialouge box Regards, PS: in the viewer i give the path of the report as http://local host/Rerport/ABC.rdl This forum is on .Net Framework (C ...Show All
.NET Development Oracle Databinding on Formview.
Ok, Love VS2005, but it's not that Oracle friendly at first sight. I can create a FormView bound to a SqlDataSource, and Bind() fields to view the data (I have to manually create the query because of [] around each field, but that's part of the incompatibility...), but anyway, the viewing works fine. This is ODBC->Oracle 9i, Feb CTP. I cannot get the update to work though. My UpdateCommand is: UpdateCommand="UPDATE MYTAB SET ID = @ID WHERE ( ...Show All
Visual Studio Team System Team foundation Server
We've install TFS and we have no problems when connecting from our workstation to TFS if we use TFSSETUP user. We do not know how to connect to TFS using other accounts because always it connects automatically with the same user TFSSETUP with no opportunity to change it. We've add users to Team Foundation Administrators but we don't know how to use them. Ramon, The following thread may help:- http://forums.microsoft.com/MSDN/ShowPost.aspx ...Show All
Visual Basic Networking probelm
Hi; Is it possible to make workgroup-based networking using different operating systems( like windows XP & windows 98). Any suggested good refernece to networking (best books) Thanks Hasan This forum is for Visual Basic 2005 and related questions only. Please post you question on the Microsoft Newsgroups . ...Show All
Visual Basic Can't deploy...
Hi, I am getting the following error message when I try to install the application I published. "Application Failed. Unable to continue. The application is improperly formated." This is the second time I'm publishing an application with VB 2005 Beta2. I didn't have any problems at all with the first one. My applications runs smoothly, but I can't install it to the client, or even to my own PC. I publish it to my desktop by choosing "From a cd- ...Show All
Visual C# alt text in image
Well, when u put the mouse over a img in the internet it shows a text. How can i do it on c# Do you mean in an ASP.NET web page or a windows app If a Windows app... simply use a ToolTip when the MouseEnter event is raised by the image holder. ...Show All
Visual Studio 2008 (Pre-release) Perf. Monitororing
Hello, what tools can I use for measuring WPF apps performance Thanks. There is a tool called Perforator that comes with the Windows SDK . HTH, Drew ...Show All
Windows Forms Windows Forms
i develop a small windows application using C#, and i call this exe file from html page, the error occured is : An unhandled exception of type 'System.Security.SecurityException' occurred in IEExec.exe Additional information: Request for the permission of type System.Security.Permissions.SecurityPermission, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 failed. any one can help me in ...Show All
Windows Forms How to get a stored procedure instead of a table?
Hi, How to get a stored procedure instead of a table CREATE PROC dbo.myStoredProcedures @tablename NVARCHAR(256), @columname NVARCHAR(256) AS DECLARE @query NVARCHAR(1000) SET @query = 'SELECT ' + @columname + ' FROM ' + @tablename EXEC (@query) Thanks, Adisrod ...Show All
Visual C++ VC++ 2005 redistributable (vcredist_x86.exe etc.)
Hi there, I noticed that the Beta 2 redistributable is hosted on the Microsoft download library, but the final ones seems not to be. Will it be hosted on microsoft.com (or is it already somewhere ). Also, it has been reported to me that on Windows 2000 the (RTM) redistributal gives an unuseful error message if Windows Installer 3.1 is not installed. The message is error 1723. "A DLL required for this install to complete could not be run." ...Show All
Windows Forms Accessing STL Strings
Hi folks, I setup a basic Windows Forms application and wanted to try using the std::string namespace. However, when I went to build the project, the Studio complained that the it was an unknown namespace. Should a .NET app be using some other class or am I doing something wrong here You could use the STL string class but since you're building a WinForms application you probably don't really need it. Just us ...Show All
Visual Basic Doing a boolean with datarows: the correct way?
Hi, I am trying my make my app do a boolean query. On coding in the line below, the blue squigle appeared stating that conversions from boolean to integer is not allowed ( I have option explicit turned on) For Each di As DataRow In perTable.Rows If CInt(di(sC1)) And CInt(di(sC2)) <= pSm Then di.Item("Comments") = "Warning! Needs attention" End If Next Is there a safe and correct way to do ...Show All
