chrisanderson's Q&A profile
SQL Server SQL Server 2005
I have just recently downloaded and installed vs2004/ss2005. So now I have the version of ss that comes with vs2005 and the developer edition of ss. I have been able to work with sqlexpress thru vs2005 but not with the developer edition. When I engage the configuration manager which is what I guess to perform the same function as the enterprize manager in ss2000, I am unable to find my databases. What am I missing here How am supposed to work with the developer edition Thanks, Fred H ...actually, that's http://blogs.msdn.com/sql_protocols . ...Show All
Visual Studio Tools for Office KB 907417 & 908002
Hi; Asking new because I think this got lost in the message it was a reply to... Just to confirm, if I have run the latest windows update and it shows no updates for Word, then the fixes in KB907417 should be on my machine - correct I have never run the fix in KB907417 and on my dev machine it has version 7.10.5077.0 but my test system, which shows no pending office updates, has 7.10.3191.0. So it looks like I do have to install it. Do we run this same update for Word 2002 and Word 2000 Or is there a different update in their cases And for our customers, I assume we have to point them at this fix Or will it be included ...Show All
SQL Server Reporting Services Performance
Hi, I'm just wondering if anyone else has had any problems with reporting services when generating reports. I have a rather large report (approx 5000 rows) and to be fair there are alot of links to other tables. However it takes 5-10 minutes to generate this report. If I manually pull the data from the database, perform the aggregations and all the table joins, it takes under 10 seconds to complete and I seriously doubt that rendering the table to put the data in takes 10 minutes to do. Any Ideas I have the following task to investigate: which server will need more resources at the time of reports execution ...Show All
Visual Studio Team System Plan Track in MSF for Agile
Hi, What is the usage of a Plan track in MSF for Agile As far as I know, in Plan track, it should answer "can we do it withing the right timeframe and budget Is the business case justified ". But from the template, I can see that all the estimation activities and schedule activities were all reside in Build track Can any one comment on this Thanks -Bob Hello bb5178, The plan track has two activities of the work stream "Guide Project", namely the "review objectives" and "Assess Progress". These activities are also in the cycle "As Needed". Micr ...Show All
SQL Server Package Failure (The session was canceled)
Anyone seen this error or know what this could be I got this when executing a package. It works on my dev machine, however failed with this error on another test machine/environment. The session was canceled. (Exception from HRESULT: 0x800700F0) (Microsoft Visual Studio) ------------------------------ Program Location: at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo) at Microsoft.DataWarehouse.VsIntegration.Interop.NativeMethods.ThrowOnFailure(Int32 hr, Int32[] expectedHRFailure) at Microsoft.DataWarehouse.VsIn ...Show All
Visual C++ use the VB private interfaces
Hello, I met a problem when compiling my activeX control developed by VS2005. The error LNK2001 occurred which is caused by 3 interfaces: IVBGetControl, IVBFormat, IGetVBAObject. Details are displayed as the following: editbase.obj : error LNK2001: unresolved external symbol _IID_IVBGetControl editbase.obj : error LNK2001: unresolved external symbol _IID_IVBFormat editbase.obj : error LNK2001: unresolved external symbol _IID_IGetVBAObject D:\My Documents\Visual Studio 2005\Projects\gtdate\Debug\gtdatetest.ocx : fatal error LNK1120: 3 unresolved externals sb. pls do me a favor. Thank you very much. OZ Sounds like the same problem tha ...Show All
Visual Studio Opening localhost Web application causes "A connection with the server could not be established" error
I am trying to open a new Asp.Net application using Visual Studio.Net 2003 on my stand alone home machine. I am opening it in HTTP://localhost/webnewapp. Each attempt to open in error message saying "A connection with the server could not be established". I am using Windows XP SP 2, IE 6.0 ASP.net version 1.1.4322. Have run aspnet_regiis.exe with the -i switch, the -enable switch, the -ir switch and the -r switch. Have checked the application mappings in the configuration of IIS and they all point to the v1.1.4322 directory. IIS is running. VS 6.0 Interdev project can be established and opened just fine. I have seen many requests for help on ...Show All
Visual Basic Jpg to Tif convert
Does anyone know how to convert a 32bpp image to a 1bpp image so I can save it as a compressed TIF I know how to save a compressed TIF, but I do not know how to convert a 32bpp image to a 1bpp image. PLEASE HELP. Thanks; Ben Thanks for the reply. .Net do not allow you to create a graphics object for a 1bpp image. How do you draw a 32bpp image on a 1bpp image without a graphics object Thanks; Ben ...Show All
Visual Basic VS2003 WebServices from VS2005
Is it possible to add a Web reference to one WebService written with VS2003, from one VS2005 project ...Show All
Visual Studio Tools for Office VSTO Excel deployment problem
Hi, I have created one VSTO application at my local. I have also installed it on one of my server but I am confused with the way the client will access this excel project from server. I have selected Network-Local option for the deployment. But when I am accessing the files from the server to the client, one excelworkbook with its related assemblies get downloaded to the client. Now client has closed the application and restarted it again by cliking the excelworkbook downloaded from the server. Now client find no connection between its local excel & server excel. How can I make it possible so ...Show All
Visual Studio Express Editions Modding the Pong starter kit - questions
I finally have some time to put to practice some elements of object oriented programming I learned from that Deitel & Deitel C++ book I partly read a few months ago. I'm trying out the C# starter kit that contains a working Pong game. http://msdn.microsoft.com/coding4fun/gamedevelopment/tenniscs/default.aspx I don't really have any ambitions of becoming this great game programming of the ages, but I've always learned programming concepts through games (that's how I learned C above the basic level). I want to do this: Modify the game so that whenever the ball collides with a border, or with a paddle, the ball "di ...Show All
Smart Device Development Win CE.NET development committee
Hi all This is the space for all Win CE.NET users who want to share their doubts, experiances and thoughts>>> Let us all make a differance for each other. lets make Microsoft Rule. ...Show All
.NET Development Getting IP address from tcpclient
Hi, I'm using tcplistner and tcpclient to do network communications between my client and server applications. I accept the client as: TcpClient client = listener.AcceptTcpClient(); I want to get the ip address from where the client is comming. What class/methods would I use to do that. I could not see any method that would return ip address of the client that I just accepted. Regards, -Abubakar. Hello All, I find the solution.. For my case that is, My code based on the sample chatprogram in 101 Vbsamples. I need the ip for the client. All i had to do was change the tcpclient to a socket And ...Show All
SQL Server Left outer join
Hi All, I have 2 servers and each server has a table. On table is in production and the one on the second server is updated daily. What I am trying to do is create a left outer join where server s table primary key is null. That way I will have the rows from production taht need to go into the reporting table. I created a package with 2 oledb datasources (one for each table). The output, from each goes into it;s own sort Sort Transformation Editor. From the sort(s) the data goes to a mergejoin. I was under the impression that I could filter with a where 2.table.primary key is null. What is the correct way to do this TIA, ...Show All
Windows Forms Tab control
does anyone know a good tab control. The one delivered with whidbey does not allow much customization on the tab buttons. ...Show All
