rsnewbie's Q&A profile
SharePoint Products and Technologies Loading to Excel Services
Hello I have a question about loading to Excel Services. Is there any way that I can load data from a Project Portfolio Server 2007 or Project Server 2007 to an Excel Service and display that data in SharePoint Server 2007 Thanks and best regards, Mystique Possibly, I'm not sure, you might have to ask around on a BDC forum (I'm not much of a BDC expert). If that's the case than you could use a UDF to get the BDC data into Excel Services and indirectly getting your Project Server data. - Luis ...Show All
Visual C# project namespace issues
I have a project that was working fine. I made some significant changes to the project, and then started getting an error saying some objects don't belong to the namespace, even though they are in the same project and have the namespace at the top of the class. It appears some pointer got messed up and now only newly added objects appear in the autolist members for the namespace. In fact, some objects required that I preceed things (such as Settings) with the namespace, others don't like it. They are supposed to all be in the same namespace. Any idea how I can fix this Hi, You can do the following steps: Right click the project and set the default namespace Perform a Replace by setting the fol ...Show All
Visual Studio Express Editions extract from textbox
i need to get text that is input into a text box to be then split up into each word and put into an array. is this possible Yes, it's possible: string numbers = "One Two Three Four" ; string [] words = numbers.Split( new char [] { ' ' }, StringSplitOptions .RemoveEmptyEntries); In the char[] array you can specify as many word separators as you want (commas, semicolons, ...) Andrej ...Show All
SQL Server Wierd error while connecting to SQL 2000 in ASP.NET under VS2005
Hi, When I try to run the asp.net application (C#) it is throwing the following exception. "An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)" The problem is I don't have SQL Server 2005 installed in my system. And I am trying to connect a remote SQL 2000 server. Adding to my confusion, the same code is working fine in another system. Help please 5. If SQL Server is a named instance, is the SQL browser enabled [YES | N ...Show All
Software Development for Windows Vista Error in WebApp working with WindowsWorkFlow
when i tried to call a method using callExternalMethod activity from workflow to my app. it enters to that method and after returning from that method i kept a code activity and given a message in that as "TicketCompleted" ,after that i kept set stateactivity pointing to statecompletion. now my problem is even though my debugger is not entered to code activity my work flow instance is removed from sqlpersistance database and also it is not entering to workflow completed event or workflow completed terminated event. In command output window it is showing : the first chance of exception of type 'system.Invalidoperationexception' has occured in system.workflow.runtime.dll any solutions are apprec ...Show All
SQL Server Show / Hide Parameters on a Report
Is there any way to get the parameters to remain visible after clicking on a report link Currently, when I click my report link and pass parameters, the new report loads with all the parameters hidden even though they normally appear fine when you go to the report straight. Now, there is a way to make them visible by clicking the "Show / Hide Parameters" button on the far right of the screen. However, I would really like to hear of a way to automatically keep my parameters visible after clicking on a report link. This is especially useful since most general users won't know to click the "Show / Hide Parameters" button and won't be able to specify new parameters after clicking the report link. Any ideas Thanks!!! ...Show All
SQL Server Access/Server
How do you change the connection string of a DataSet We have been using MSAccess for our database, but have recently upgraded to SQLServer Express. I was able to successfully upsize the Access database and now all information resides on the server. In my VisualBasic program, the dataset itself has around 200 queries total spread out on multiple table adapters. The problem now is that none of these queries work because the dataset is bound to the Access table. I have changed connection string through code and am able to display the information, but am unable to interact with it until i get the dataset connection changed. I would rather just change the connection of the dataset somehow rather than build a new dataset, reconnect all form ...Show All
Visual Studio Team System Workspace not accessible
Hi, One of our developers has an external plug-in installed to integrate TestTrack Pro to Visual Studio 2005. He then subsequent installed Team Explorer. He can connect to the project on Team Foundation Server but he is not given a Workspace menu. In fact, the entire Source Control menu bar is greyed out and the Source Control menu item under File is missing all together. Could this be related to the plug-in he installed If not, what would have caused this to happen and how can I fix it Thank you in advance, Maggie Wow. Thank you... never even thought of it. May I ask what the difference is between selecting Team Foundation Server and Team Foundation Server MSSCCI Provider from the plug-in ...Show All
.NET Development 10055 error code
Hi... I get this error codd 10055 on my BeginSend code!! the code message is not very useful!! what does buffer mean! what buffer ! the sendbuffersize ! or the receive buffer size ! or the paging memory... and if any what to do to increase it or release any unused resources !! if queue what Queue! im not using Queues!! btw im sending frames from a client to the server which in turn sends it to all other clients connected to it.. frame rate is 20f/ps and frame size is no larger than 3500 byte.. please advise. thank you, http://www.proxyplus.cz/faq/articles/EN/art10002.htm ...Show All
Smart Device Development "GetThumbnailImage" In Pocket PC Developement ?!!
hello .. i want to use the method getthumbnailimage , but the problems is , it is not available in pocket pc developement , so what is the solution for this problem i really need an answer for that .. and for information , i am using VB .. with my best regard ,, Indeed. More specifically it's in OpenNETCF.Drawing.Imaging See my blog for details ...Show All
Windows Forms How to implement copy/paste/cut/undo/redo commands in C#?
Could someone please tell me how to implement the copy/paste/cut commands for the Edit menu items in C# 2005 I can implement those commandsfor each textbox individually, but my application has about 100 textboxes. It will be very tedious to do the same thing for each of them. I guess there must be some way to implement those commands for the whole application. Thanks! O,I'm sorry the above codes I post is not the best way, I've found a even better way to go: Use Form. ActiveControl to get the current focus control, use comboBox1.SelectedText = comboBox1 .SelectedText.Replace(copied, "" ); to replace the text selected in the combobox with an empty st ...Show All
Visual Studio Team System ClickOnce Version Number as Team Build number
I want to create a Team Build that does a ClickOnce publish for my testers that creates a build number that includes the ClickOnce version number. We are showing the ApplicationDeployment.CurrentDeployment.CurrentVersion to the testers as part of the test application. When they enter bugs into TFS, we want them to be able to easily pick a build (on the Details tab of the Bug work item) that correlates to that ClickOnce version. If have several of the pieces to do this figured out: 1) Change SolutionToBuild to SolutionToPublish in the build proj file. 2) Override the BuildNumberOverrideTarget to create my custom build number. I could use some pointers on these questions: 1) If I want to append to the standard Team Build bu ...Show All
Software Development for Windows Vista How does window media player pass the file to a push source filter?
Hi,I'm new to DirectShow. Now I need to write a push source filter to open and parse a customized file. I'm wondering how did window media player pass the file to my filter I'm not totally understand the flow chart from window media player to source filter.Any input will be really appreciated.-Cecilia If you are writing a file parser, you might find this useful: http://www.gdcl.co.uk/dshow_dev.htm or http://www.gdcl.co.uk/articles/ (scroll to the bottom for the parsers pdf link) ...Show All
Game Technologies: DirectX, XNA, XACT, etc. 3DS MAX Create HLSL Effect
Hi all, 3DS MAX whether can create HLSL effect files(.fx) Best Regards, have you considered looking at the product documentation for your version of 3DSMax Presumably the manual and/or support forums for the software will tell you what you can do with it (and how). I can't personally afford 3DSMax so I don't use it, but I have heard that later versions do (or will) integrate with D3D's Effects framework via DXSAS. hth Jack ...Show All
Visual Studio 2008 (Pre-release) dedicated config file for WCF client dll ?
Hi all, I have a WCF service (self hosted) running. I want to create a dll which will be the WCF service's client. Other app may reference the dll and make requests to the WCF service through the client dll. The problem is that svcutil.exe generates the codes for the proxy and it automatically goes to app.config for configurations. public partial class MyServiceProxy : System.ServiceModel. ClientBase < IMyService >, IMyService { public MyServiceProxy () { } public MyServiceProxy ( string endpointConfigurationName) : base (endpointConfigurationName) { } } I could not see how the constructor is implmented. I only know that it accesses app.config in side the base cons ...Show All
