Software Development Network Logo
  • Visual Basic
  • Visual C#
  • .NET Development
  • VS Team System
  • Audio and Video
  • SQL Server
  • Visual C++
  • Visual FoxPro
  • Microsoft ISV
  • Windows Vista
  • IE Development
  • SharePoint Products
  • Windows Forms
  • Smart Devicet
  • Game Technologies

Software Development Network >> Yassi's Q&A profile

Yassi

Member List

mfmh
PIEBALD
CBHCMC
bishoycom
nickwilliams
Michael Dawson
Ro0ke
Vaish
DaveDB
ajliaks
Rossgov
d2army
Bobo1234
soni_ace
EckythumpPaul
MrZkitten
RDMarkus
mnaples12
Fusion54
TSS - Daniel
Only Title

Yassi's Q&A profile

  • Visual Studio 2008 (Pre-release) MediaElement performance

    Hi All I have a Viewbox and I am displaying a MediaElement with a playlist of movies in it one by one. But while playing that my CPU is getting to 100% utilization.What is the performance issue pertaining to it, and what are the ways to solve it Can you provide a sample. I can't reproduce that on my machine. <Grid xmlns=" http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x=" http://schemas.microsoft.com/winfx/2006/xaml " > <Viewbox> <MediaElement Source=" http://download.microsoft.com/download/2/f/f/2ff6194c-0bda-4a63-999f-12d8a6119d2b/RB_OfficeUI.wmv " /> </Viewbox> </Grid> Running in XamlPad. The above uses ...Show All

  • Visual Studio Toolbar: Customize drop down items to be icons

    Hi Everybody I'm working on building a toolbar in visual studio. The toolbar should include a drop down combo box. I didnt decide yet if I want to use an add in or extension sdk. What I would like to know is if I can customize the combo box inside the toolbar to have images (icons) as its drop downs items (instead of text - usual case). Is it possible in an add in or VSIP Thanks, Ron You got an answer in the Yahoo forum: http://tech.groups.yahoo.com/group/vsnetaddin/message/3761 ...Show All

  • SQL Server Tsql script to connect to another database

    Hi. I am in database db1. in the middle of a stored procedure i want to connect to database @db2 (it is a variable) and i want to execute some commands in it. How is it possible to do that in t-sql Thanks sp_addlinkserver is the process of connecting to the other databases in sqlserver. Happy Coding. ...Show All

  • Windows Forms status strip trouble: cant find status panel

    Hi all. When i add a status strip on my form, im only able to add a label, a drop down button, a progress bar or a split button. In some examples that i've found on internet, i saw that there is a "statuspanel" too. the examples is this: http://www.c-sharpcorner.com/Code/2004/Sept/StatusStrip.asp I simply follow that example, but was unable to locate that status panel. Any help I think StatusPanel was only around in the beta of visual studio 2005, and pulled before the final release. If you really want to add a panel to a status strip you can use the ToolStripControlHost which allows you to host arbitrary controls inside the status stip. E.g. Panel myPanel = new Panel() ToolStripControlHost host ...Show All

  • Visual Studio 2008 (Pre-release) How To: Attach event handler to element in DataTemplate?

    This question/problem is a little bit esoteric, but hopefully someone has seen it before... I need to attach an event handler to the Loaded event of Image elements within a DataTemplate. The Loaded event handling method is in a utility class, so I can't use XAML to attach the handler. In a Window's Loaded event handling method I call this method in the utility class : FrameworkElementFactory factory = listBox.ItemTemplate.VisualTree; while ( factory != null ) { if ( factory.Type == typeof ( Image ) ) { factory.AddHandler( Image .LoadedEvent, new RoutedEventHandler ( OnImageLoaded ) ); break ; } factory = factory.FirstChild; } There are two problems, one is not too bad (just odd) and t ...Show All

  • Visual Basic Pinnacl Instant DVD/CD

    I am posting this message here as I am hoping somebody in the VB community has had a similar problem. I have just re-installed VB6 (onto a new PC) and tried to open any Project. I immediately get a diolog box telling me to load a CD with Pinnacle on it. After clicking CANCEL an OK a copule of times, the error message goes away. But, what is going on Should this be available on my Visual Studio CD or my XP system CD Am I stuck with this message forever or is there some way I can stop it happening Has anybody else ever had this problem Any help or advice gratefully accepted. Thanks, Mike. T hese forums are for VB.NET and there are better places to find answers for older versions ...Show All

  • SQL Server Full-Text Crawl Error in logs

    Hello I get tons of errors of this type. Are the error-code (x14b) documented I've checked a couple of rows but don't find what could be wrong. I'm running sql 2005 with sp1, noise-word files are empty, index has many columns which are in different languages. Thanks for any support Extract from log 2006-12-20 22:52:51.53 spid20s Error '0xc000014b' occurred during full-text index population for table or indexed view '[shab001].[dbo].[TSH_SHABDATA]' (table or indexed view ID '917578307', database ID '5'), full-text key value 0x00000000001E7E42. Attempt will be made to reindex it. 2006-12-20 22:52:51.53 spid20s The component 'MSFTE.DLL' reported error while indexing. Component path 'C:\Programme\Microsoft SQL Server\MS ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Input degrees and coordinate problems

    Hi, I'm a newbie with XNA. I'm about to develop a simple game. I have a spaceship model and a sphere model. I tried to detect if the ships reaches the sphere but even when the ship is "inside" the sphere, the coordinates of the models are very different so the collision will never be detected. How can it be that in the Draw method after setting the World matrix, the models get total different coordinates as if they were using different coordinate systems I thought that translating is moving objects away from the origo (0,0,0). These objects are moved to other locations in the world of course but when they are clearly visible in the same place, how can they have different coordiantes The other problem: I control the ship with the keyboard. ...Show All

  • SQL Server Migrating From Development to Production Environment in MSAS 2005

    Hi, I have built a project in Ananlysis Services 2005 and would like to migrate the contents of the Project ( Dimensions, Measures, Cubes Etc) to a New server having analysis Services 2005 , what is the best approach. Does microsoft provide any best practices document. I searched the forum and the topics on migration seem to be from Analysis Services 2000 to Analysis Services 2005, can some one guide me on migration between Analysis Services 2005 and 2005. Thansks A backup and restore (like in AS2000) is certainly possible. This is the only method if you need to get the data cube moved in a processed state (with data). Except you could use the new synchronization feature, but that wo ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Torque X Open Beta is out!

    install the software and you will get other starter kits . But I can not find any 3d game starter kit. Clicky TorqueX will be free, but you won't get the TGB editor. ...Show All

  • Visual C# using System.Collections

    Hi, Posted another thread the other but no reply so I thought I would put the question a bit differently, At the start of c# file you tell it that you are using certain classess, ie using System.Collections If I wish to use a third party class like the google api using Google.GData.Client; Where abouts should I put the classess in order to reference them, Many Thanks Chris Thanks Friendly dog, That is exactly what I am looking for, Many Thanks Chris ...Show All

  • Visual Studio Team System Work item description formatting

    Is it possible to have work item descriptions formatted with fonts and colors When I copy/paste a formatted text, it does keep its formatting. But when I save the item, the formatting goes and all I can see is just a plain text. Another point is that it is not practical to enter the description in another program and then copy/paste it to the Team Explorer. Ideally I'd like to have formatting capabilities inside Visual Studio. ...Show All

  • .NET Development Problem consuming Web Service returning complex type (gSoap Service)

    Hi, In the following WSDL file, I'm using complex type as a return value from several methods. Every thing is fine - when consuming the service both from .NET and Java clients.   After adding another method to the Service (Created with gSoap in C), that uses the same complex type as a return value, the .NET client throw exception on calling the Service the first time (even when called method is not the new one).   The exception message is as follow - Unhandled Exception: System.InvalidOperationException: Method eAC.GetPolicyModel can not be reflected. ---> System.InvalidOperationException: The XML element 'CompoundResult3' from namespace 'urn:eACService' references a method and a type . Change the ...Show All

  • SQL Server SSIS package

    Hi, I created a SSIS package and saved in SQL server. But now I can't find where is the package stored Have anyone know this Thanks in advance and I suggest the following topic as well. http://msdn2.microsoft.com/en-us/library/ms137916.aspx ...Show All

  • Software Development for Windows Vista How do Credential Providers get used during Reduced Functionality Mode?

    Hi, The behavior of reduced functionality mode in Windows Vista http://support.microsoft.com/kb/925582 I'm wondering how Credential Providers are invoked when only a Reduced Functionality Mode logon is available to the user. Are custom providers invoked, or will only Microsoft default providers work If custom providers are invoked, are they in any way restricted in terms of what they can do (e.g. access to biometric devices or smart cards, etc.) Thanks, -IAmHe ...Show All

©2008 Software Development Network