Oliver 123's Q&A profile
SQL Server Web Sync: strange behaviour with the snapshot size
Hi There's *strange* behaviour with snapshot size during subscription initialization. So... The initial snapshot has size about 9Mb at the publisher. After subscription creation, I notice that the subscriber downloads about 21 MB. It seems to me, that the snapshot is unpacked on the IIS, next, part of the files are packed again and just after it the changed snaphot is sent to the subscriber. Why How it can be solved It brings some extent nuisance... Thanks Paul Not only does subscriber apply the snapshot, it also has to check if changes were made between the time the snapshot was created and the time it was applied, and if so, apply/upload/download them as well. Maybe this is ...Show All
SQL Server OLAP Intelligence Assistance--actions question
Is there a way (I'm pretty sure there is) to link the tabs in OLAP Intelligence cubes so when a dimension is updated in one tab, it will update throughout My idea is to use an Analysis Button to execute an Action which will update each tab. Anyone know code that will do this (write this in MDX language) or have ideas for better/more efficient processes Thanks in advance ...Show All
Visual Studio Team System Configuring Alerts
Hi, How to configure Email alerts for Test results (Unit test failure /Pass/ Incomplete code coverage) and Code analysis failure for a Team project in Team Foundation Server Thanks in advance..... Are you referring to unit test failure executed locally if this is the option, there is nothing you can do as far as I know, if it's about when unit test fails in team build check out this blog post http://blogs.msdn.com/aaronhallberg/archive/2006/09/21/764951.aspx ...Show All
Visual C# Array.FindIndex () trouble.
string[] arr1 = new string[1]; string[] arr2 = new string[1]; string term1; // coSymbols is an ArrayList filled previously coSymbols.CopyTo ( arr1 ); coSymbols.CopyTo ( arr2 ); Array.Sort ( arr1 ); int indexed; for ( int ii = 0; ii <= coSymbols.Count - 1; ii++ ) { term1 = arr2[ii]; indexed = Array.FindIndex (arr1, term1 ); <= error message pertains to this statement ...... } Error 1 The type arguments for method 'System.Array.FindIndex<T>(T[], System.Predicate<T>)' cannot be inferred from the usage. Try specifying the type arguments explicitly. D:\VCsharp_Projects\tapTCPports_1\Form1.cs 1253 27 tapTCPports_1 I tried this form: indexed = Array.FindIndex ((Array) arr1, (string) term1 ); - same err ...Show All
Visual Studio 2008 (Pre-release) Is there a way to specify the namespace in the DLinq Designer?
I am referring to the May 2006 CTP. Am I missing it Or is it not there If not, it seems like a necessary feature. Without it, some may be forced into editing the generated code. I see a setting for naming the DataContext. This seems like a natural place to be able to edit the namespace. Thanks. You guys got me on my birthday...I am not sure that one counts. ;-) I took the day off and slept all day. Been staying up way too late, far too many nights. And wouldn't you know that would be the day you guys would sneak out the release on me...and early to boot! The good news is that the March Orcas CTP and I have the same birthday. I don't suppose I could convince you guys to coordinate the RTM release for the same day in 2008, could I ...Show All
Software Development for Windows Vista AutoCAD 2007 and 2005 compatibility with Windows Vista
My bussness revloves around the use of AutoCAD. I recently installed Windows Vista Ultimit on my computer. After i tried to install AutoCAD 2005 on it to discover it would not work. Is there any patches in order to make it compatible. If not Is AutoCAD 2007 Compatible before i go and buy it. thank you Microsoft is unable to provide support for 3rd party products. You will need to contact the manufacturer. You might start by going to http://discussion.autodesk.com/thread.jspa threadID=532684 ...Show All
Game Technologies: DirectX, XNA, XACT, etc. ||| Collision |||
how can I detect collision of complex 3d objects for example, on this "platform" http://img85.imageshack.us/img85/7749/newbitmapimageiq4.png help please! or buy a good book :) http://www.amazon.com/Real-Time-Collision-Detection-Interactive-Technology/dp/1558607323 ...Show All
Visual Basic [OTP]Can not run asp.net on Visual Studio 2005
I created aspx pages in a web site using Visual Studio 2005 on Windows XP Home Ed. I think I got it to work before. One time when ask if I want to block internet, and I answer yes, then it stop working. I got 2 error messages. First dialog box message: ASP.NBET Development Server failed to start listering on port 1455. Error message: An invalid argument was supplied second dialog box message: Unable to connect to Visual Studio's localhost Web Server How can I fix this problem, please help. Thanks ahmedilyas is correct, you must have the professional version of XP. In order to recieve quicker and better answers to your ASP questions please use the following forum: http:// ...Show All
Windows Forms menuStrip1.Renderer.DrawSeparator problem(error)
Hey, I am using menuStrip1.Renderer.DrawSeparator to use my own image for the seperator for the menu strip in my program. I tryed doing this: menuStrip1.Renderer.DrawSeparator = SurfScape1.Properties. Resources .seperator; But i got an error saying: Cannot assign to 'DrawSeparator' because it is a 'method group' How do I fix this Thanks :) Ok, it works, thanks, I guess I will do a similare thing with the border... And one more question and I will be good, Is ther a way to clear JUST the old border on a toolstrip becuase I have a 160x2 image for the border of the toolstrip, and at the end , about the last 4 pixels start to go transparent and you can see the old border... but I like the wa ...Show All
Game Technologies: DirectX, XNA, XACT, etc. tiled background texture
Hello there, I'm wondering if it's possible to draw the 2D background of my game with a texture that repeats. If this isn't clear think of the background of Arknoid where the background is simply a rectangular texture that's repeated over and over to cover the background. Thanks, Barranger You could just draw your background texture over and over again until you covered all the area that you needed to cover. I don't think there is anything built into XNA to do this for you. ...Show All
Windows Forms datgridview and combo
hi i have and datagridview to which im connecting a table thru code. one of the columns of the datagridview is combobox and i want to display one field of another table to the combobox on form load. hw can i do it DA1.SelectCommand = New OdbcCommand( "Select code from Company" , con) DA1.Fill(ds1, "Company" ) ds1.Tables("Company").Rows(0).Item(0) is what i want as data to that combocolum plz help You might try the following 1) Create a class say Customer. You want to capture all the credit cards the customer class has which you get from someother database table. Let this property in the customer class be Creditcards of type String []; 2) Create a binding List Object. populat ...Show All
Game Technologies: DirectX, XNA, XACT, etc. fireballs follow character?
ok, im not sure what im doing wrong... but when I stop press space bar(character is facing right) to fire and then decide to move my my character left the fire ball moves backwards with the character and vice a versa I can move my character left, right, left right repedatly and the fireballs stays with the character until I stop moving and they finish the x distance and disappear here are two methods im using protected void AddFireball() { if (_fireballsElapsed == 0) { bool _addFireball = true ; foreach ( KeyValuePair < string , Sprite. Sprite > aFireball in _fireballs) { if (aFireball.Value.Visible == false ) { aFireball.Value.StartPosition = new Vector2 (_tif.Position.X + 50 ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Rotation help
I think I'm being dense today, but I can't figure this out for the life of me. I have a model that I want to rotate across the X and Y axis. My issue is that when I rotate across the Y axis, I always want the rotation to occur as if the axis was vertical in terms of world space. If I multiply by my X rotation first, obviously the Y axis moves with it, so rotating about the Y axis will rotate it about its transformed axis. If I multiply by my Y rotation first, the X axis moves with it, so my X rotation is now turned along with it. I basically want to rotate downward and then left/right independently from what the actual transformed axes become...or, rotate left/right and then downward independently. When I rotate about the X, it shoul ...Show All
Visual Studio Express Editions Share text between forms
Hi Can I get my program to automatically save text/information I put in when I close the application Is it possible to take text from different forms and place this text into a form. For example: I am working on a timesheet program, each week has its own form, then i would like one form to show all the weekly totals. I have tried using dim f5 as new form5 f5.textbox1.text=textbox2.text and also inherits system.windows.forms.form public shared textbox1 as textbox (for example) I get it to transfer information a form at a time but it doesnt have all the weeks and i'm not sure how to automatically save. Thank you very much for your help. elainel311 wrote: I a ...Show All
SQL Server Managing reporting services models
Hi everybody, I have the following scenario: I have web application which is creting new SQL Server database each time when new customer is created in the application. I would like to give users the possibility of creating ad hoc reports and thus I need to create new connection and report model (and deploy them to my reoport server) each time when the new database is created (report models can not use multiple databases). Does anybody knows how can I do that Maybe there is another approach to this kind of problem Thank you in advance, Marek You can create datasources and autogenerate models from these datasources using the SSRS SOAP API. Check out this article in BOL for information on ...Show All
