Blufire48's Q&A profile
SQL Server What kind of package is it?
Hi everyone, Is there any way to know how is stored a package before do loadpackage, loadfromsql... bla,bla I mean, is there any property for Package class where you can see how it is stored Thanks in advance for your comments, ...Show All
Visual Studio Team System How can I tell how many times my web test ran within the load test?
Hi, This might be a very silly question, but how do I find out how many times the web test ran during my load test I have a load test that runs just a single web test. I need to measure some performance data for this test. So, the result data I get back is graphed with regards to the time. However, I was asked to tell how the performance changes with regards to how many times my web test was called and I can't find any way to do that. Does anyone have any ideas Thank you in advance. Hi, Thank you for your answer. I'm a little confused though. I can see the right table when I click on Table and select Test in the Table drop down. However, all the values (in all the columns) are 0. ...Show All
Windows Live Developer Forums Live ID Services
Is there a list of services that I can use with the LiveId SDK This is a very frequently asked question! Currently, the only service that works with the Client SDK is the spaces blog posting service that is featured in the sample application. To download the Client SDK, go here: http://connect.microsoft.com/site/sitehome.aspx SiteID=347 Stay tuned to these forums and dev.live.com for announcements as to the availability of additional Windows Live Services. ...Show All
SQL Server Can't connect via HTTP remotely...
Hello- I've just set up HTTP Access to SSAS and can connect locally, but when trying to connect remotely, as the same domain user, I receive the message: The connection either timed out or was lost Unable to connect to the remote server No connection could be made because the target machine actively refused it I can connect remotely if I connect using just the servername (rather than http://...) Anyone else runinto this one Hi Tristan, For troubleshooting connectivity problems, one great resource is Edward's blog at: http://www.sqljunkies.com/WebLog/edwardm/ . If you still have connectivity issues after following the guidelines described in this blog, please l ...Show All
SQL Server KPI Trend depending on last 4 months
Hi! I've created a KPI. My problem is on the creation of the MDX trend expression. I'd like trend to depend on last 4 months. I wrote this query which works fine in SQL Server Management Studio : WITH MEMBER [APPEL].[Hierarchy].[My4Months] AS Aggregate( lastperiods(4,[APPEL].[Hierarchy].[ANNEE APPEL].&[2006].&[02]) ) SELECT [APPEL].[Hierarchy].[My4Months] ON COLUMNS, KPIValue("Pourcentage de respect") ON ROWS FROM [Amon] I'd like to obtain the same result in SSAS. So i created a calaculation nammed My4Months with the expression : Aggregate(lastperiods(4,[APPEL].[Hierarchy].CurrentMember)) ...and I entered as trend expression : CASE WHEN (KPIValue("Pourcentage de respect"),[APPEL].[H ...Show All
Software Development for Windows Vista faultHandlerActivity.Fault is always null
Hi I have a FaultHandlerActivity in my own SequenceActivity that handles the System.Exception and calls a CodeActivity when any exception happens. This works but when I want to look at the faultHandlerActivity.Fault it is always null. I am using Visual Studio 2005 Extensions for Windows Workflow Foundation RC4(EN). Thanks Gert Hi Serge, Your last example works fine, but i think this should also work(but it doesn't) private void ExecuteCode( object sender, EventArgs e) { Console .WriteLine( this .faultHandlerActivity_Fault.Message); } "this .faultHandlerActivity_Fault" is the Property set for the faulthandler activity. ilker. ...Show All
Software Development for Windows Vista Activity Queues in Parallel
I have a custom activity that sets up and uses activity queues I want to place two or more instances of this custom activity on a work flow in parallel to each other I have my host using logic to decide what queue to send to but the work flow waits untill i send something to all the queues on the parallel activity I want the work flow to continue executing after only one of the activitie's queue was written to in a manner similar to using handleexternalevent activity on a listen activity my system is deciding at run time what "logical port" to send the data to on the workflow and the others should be ignored. Sort of like biztalk's input ports that are bound to receivers outside of the orchestration Any ideas ...Show All
.NET Development C# need to decode mime (HTTP POSTed form data)
Hi. I need to analise some files of loged HTTP outgoing transfer(POST method) and extract sended file content from them. Can anybody help with mime decoding I need to analise posted form data and extract all files. I know - http servers do this, are any library accessible in .NET to do my task The best variant - any DOM library. e.g. PostedForm.Fields[].Name PostedForm.Fields[].Type PostedForm.Fields[].Value So you have the MIME data locally stored on your machine Is it in Base64 Btw if you want to capture incomming MIME data from IIS I would suggest you check out this ISAPI Extension example: I was pretty sure that you couldn't create a hook for reading post data ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Fullscreen mode doesn't seem to work for me...
Hi, I was wondering if anyone had any insight into this. I have my app, and it runs fine in windowed mode, but when I switch it to fullscreen mode, the display seems to clear the screen to grey every frame. I initialize my gfx component like so: gfx = new GraphicsDeviceManager ( this ) ; gfx.PreferredBackBufferWidth = preferredWindowWidth; gfx.PreferredBackBufferHeight = preferredWindowHeight; gfx.PreferredBackBufferFormat = SurfaceFormat .Bgr32; //I tried this thinking maybe it wasn't in a well supported mode that the graphics card knows. This doesn't work. gfx.ToggleFullScreen(); gfx.SynchronizeWithVerticalRetrace = true ; Even if I reduce my draw code to somethin ...Show All
Windows Live Developer Forums Getting more than 250 results
On Monday it was observed that MSN Search would give access to 1000 search results like Google and Yahoo for the first time: http://forums.searchenginewatch.com/showthread.php p=90787 I've tried accessing more than 250 results with the MSN API, but so far the most I've been able to get is 290 results. Is MSN going to up the number of returned results for the API like they have for the public web interface Thanks, Frank Hi Frank I don't mean to be cheeky or anything, but why would you want 1000 results Or even, why would you need more than 250 Although, I see the point of it being nicer to have fewer limitations. Just curious. Best, Mark. ...Show All
Visual C# input data to website
Ok right now I have to configure routers manually by inserting the exact same data into a router's configuration panel (website on router) then swap out the configured router with one that needs the exact same setup and redo this process over and over. I would like to write an application that fills in all the needed boxes,selects values from drop down menu's and fills in any other information and presses the save & restart button for me is this possible I initially though about trying to find the file on the router that its writing to thinking making its one config file maybe if thats the case I could just write to the file but im not entirely sure. it's a tricky one really since you need to know wh ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Networking Capabilities with XNA....?
Hi Guys, We are a team of students just starting with XNA. We are developing a pretty simple 4 player game and not really sure what XNA's networking capabilities are and how difficult the implementation is. We may just focus on simple LAN networking as opposed to WAN, really the simplest method will end up being our plan. I have seen some info on Torque X, the new Garage Games engine which implements key features of Torques 3d and 2d engines to XNA. Does anyone have feedback or insight on using Torque X for simple networking on Windows.... Or, would anyone have any other advice as to the best networking approach to take with XNA..... sorry if this is too broad a post. we are noobs to XNA and just wanted to get some community as ...Show All
SQL Server Semiadditive
Hi, I'm attempting to set up a measure with semiadditive property of LastNotEmpty. This works fine along the time dimension - except it is also using LastNotEmpty along the other (non time) dimensions. Is this working the way it is intended - or do I need to set up dimensions / measures a different way Hi Mosha, Thanks for the note - yes you are correct - I had not set up the time dimension correctly, I've fixed that & now it is aggregating correctly. regards ...Show All
.NET Development How can I copy a whole table from MS Access database to another?
Hello, I have 2 MS Acess database, in each one I have a table named Catlog, what I want is to open the two tables and copy the Catlog table from the a database to the other, at runtime for sure! Is there an easy solution or I should use SQL to delete all the rows from the first table and then read the rows from the second table and write it again to the first one!!! Please help. Thanks in advance. Hello all, I have this code and it works for updating specific fields; however, when the source table's column uses a combo box and displaying only the second column of the combo box,(the first one is id and is set to width 0" and hide), I only can get the first column, the id, w ...Show All
.NET Development how to open word document in vb.net?
I am using office XP and VS2005 Beta 2 to open a Word document as below but fails with COMException: dim wa as new word.application dim wd as word.document wd = wa.documents.open("C:\temp\tmp.doc") ...... If something is failing it is often helpful when trying to illicit help that you state exactly what error messages you are getting, when you are getting them, and what type of behavior you are seeing. It gets help alot quicker in most cases. Thanks. ...Show All
