tigreye007's Q&A profile
Windows Forms how to resize tabpage title?
Is there a way to resize the tabpage title I couldn't find this option in the IDE. Thank you, In order to change the tab's width you need to set the TabControl’s SizeMode to Fixed. ...Show All
Visual Studio Team System Difficulties in getting Code coverage information
I am testing ASP.NET web controls and am facing difficulties in getting code coverage information from my tests. For testing our web controls, I am using the [HostType("ASP.NET")] and [UrlToTest(" http://localhost/TestSite ")] attributes in my test projects to either test a website that has these webcontrols, or dynamically add these controls to a empty test website and test their properties and methods. So my project structure is like t ...Show All
Visual Studio VS .Net 2003 setup hangs on CompactFrameworkSDK install
Context: WinXP SP2 VS .Net 2003 from May 2005 MSDN DVD Problem: Setup is hanging trying to install the Setup.ini file in ...\CompactFrameworkSDK\ConnectionManager\Bin\DriverInstall Were you able to install VS .NET 2003 I am having the same problem. I turned off all non-MS items in MSCONFIG and disabled all STARTUP items. Install still hangs at the same place. Thanks. ...Show All
SQL Server How can I detect which version of sqlServer I am connected to using smo?
Hi, I have a quick app to do few scripts and generate sps.However some stuff which is new to sql 2005 dont work in sql 2000 as not supported. Basically. I choose a server from a combobox and connect to the database. now at this point i need to know if I am running a sql 2005 server or 2000 . Is there a call I can make is SMO to achieve this thanks a lot in advance Hi, try this one here: Mi ...Show All
Software Development for Windows Vista error code 0x8004020c
i use direct show 9 in c++. the call IVMRWindowlessControl::RepaintVideo rturns error 0x8004020c with te text COM+ required but not installed or somthing like it... i also found it regarding "No buffer space has been set.". i dont understand either of these massages. do u know what the problem is and how to fix it ...Show All
Windows Forms Sample Code: TreeGridView - collapsing/expanding DataGridView
I've just started a blog and the first main post is a sample that I wrote to customize the DataGridView to support collapsing and expanding. I call it a TreeGridView: http://blogs.msdn.com/markrideout/archive/2006/01/08/510700.aspx Let me know what you think! -mark DataGridView Program Manager Microsoft This post is provided "as-is" Fantastic code Mark ...Show All
Smart Device Development Unable to deploy solution to Smartphone Emulator
Folks, I wrote a very simple app (sort of hello world) for Smartphone. Now when I try to run the solution I repeatedly get the following error Connect to device failed. How do I deploy this application to the emulator By the way I'm trying this on Smartphone Magento but if I do the same on Smartphone 2003 it just deploy's without any problems. Do I have to configure something for Smartphone Magento Thanks, Uday Amit, I udpated both t ...Show All
Visual Studio Express Editions Is true that VB EXPRESS do not connect to Remote Server?
Dear Friends, I have on my pc a well working istance of SQL SERVER 2005. I can connect with it by "SQL Server Management Studio Express CTP" and successfull create database, table ecc. But Visual Basic 2005 "Database Explorer" don't view any istance of SQLEXPRESS Server . The first row of Database Explorer say: "......Data Connection ". In this manner I cannot use database that are inside a SQL SERVER! ...Show All
Visual Studio 2008 (Pre-release) TabControl Border problem
I'm seeing a strange border artifact when setting BorderThickness="0" ... the border is still being drawn on right and bottom sides of the control... How do I get rid of that <Grid xmlns=" http://schemas.microsoft.com/winfx/2006/xaml/presentation " Background="sc#1, 0, 0, 0" Width="640" Height="480"> <Grid.ColumnDefinitions> <ColumnDefinition/> </Grid.ColumnDefinitions ...Show All
Visual C++ How to Port MFC to .NET; from VC6 C++ to Managed C++ and/or C# .NET
Can someone point me to information on how to port and/or reuse a portion of a huge MFC app to C# .NET managed and/or C++ .NET managed code. Willing to rewrite most of the user interface, but need to preserve/modify existing code that is based on 50+ classes derived from MFC's CObject. I need the "Serialize" portions of CObject so that my existing data files can be read into the ported app, or so I can create a conversion app. I ...Show All
.NET Development I get scope_identity equal to 0
I delcare my sqlCommand sqlcmdInsNeAcc and connection from system.data.Sqlclient, I open my connection. all goes well then I do: sqlcmdInsNeAcc.CommandText = "set nocount on insert into TblAccount(AccRisAsse,AccHldBll,Acctaxexm) values(@AccRisAsse,@AccHldBll,@Acctaxexm) select id=scope_identity()" pm = sqlcmdInsNeAcc.Parameters.Add(New SqlParameter("@AccountNumber", SqlDbType.BigInt)) pm.Direction = ParameterDirect ...Show All
Visual C++ msvcr80d.dll not found
I've created a simple Win32 console application. When I try to debug it, I get the message: "This application has failed to start because MSVCR80D.dll was not found. Re-installing the application may fix the problem." The Release version runs fine. Any idea as to what the problem could be Thanks, Jonny This means several things. a) your console application does not have manifest. Either embedded inside or ...Show All
Windows Forms how using RasDialDlg() in API
hello , how are you please i want ask about how i can using RasDialDlg() function in API to connect the internet by dialup and what is the it structure by C# Thank you Ahmed Osama Try posting your question on the Microsoft Newsgroups. These forums are only for technical programming questions on the Windows Forms technology. http://support.microsoft.com/newsgroups/default.aspx ...Show All
Visual Studio Express Editions Problem with SQL query
Hi I'm trying to write a query ---------------------------------------------- SELECT field1, field2, field3 FROM table WHERE field1=form.textfield ----------------------------------------------- Where form.textfield is a link to textbox in form. It doesnt understand this link. In previous versions (VB6) it works. Is there any changes in syntax in new VS Think of SQL as an entirely different ...Show All
Windows Forms Refreshing a data source
I've added a BindingSource control to my form, and set its DataSource to my project data source. When I add fields to a view in the SQL Server 2000 database behind the data source, I can't get the new fields to appear in the view, even if I refresh the data source. I can refresh the server in Server Explorer and it updates the new fields, but I still can't get the data source to pass the new fields through to the form. How can I get the da ...Show All
